Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@timbec
timbec / run.sh
Created January 25, 2022 21:50 — forked from mtford90/run.sh
Running Ethereum wallet in light mode on Mac OSX
# Install ethereum
brew tap ethereum/ethereum
brew install ethereum
# Run a light ethereum node
geth --syncmode="light"
# Open wallet in light mode (will need to install wallet from github first)
open -n /Applications/Ethereum\ Wallet.app --args -node-light
@timbec
timbec / refreshUrl.py
Created August 1, 2020 15:18 — forked from sposterkil/refreshUrl.py
A little python script to refresh a given URL every 10 seconds
#! /usr/bin/env python3
import webbrowser
from time import sleep
url = input('Input the URL to reload, including "http://: ')
while True:
print("refreshing...")
webbrowser.open(url, new=0)
@timbec
timbec / rm_mysql.md
Created August 1, 2020 14:59 — forked from vitorbritto/rm_mysql.md
Remove MySQL completely from Mac OSX

Remove MySQL completely

  1. Open the Terminal

  2. Use mysqldump to backup your databases

  3. Check for MySQL processes with: ps -ax | grep mysql

  4. Stop and kill any MySQL processes

  5. Analyze MySQL on HomeBrew:

brew remove mysql

@timbec
timbec / 1.md
Created April 19, 2019 17:16 — forked from swyxio/1.md
Learn In Public - 7 opinions for your tech career

1. Learn in public

If there's a golden rule, it's this one, so I put it first. All the other rules are more or less elaborations of this rule #1.

You already know that you will never be done learning. But most people "learn in private", and lurk. They consume content without creating any themselves. Again, that's fine, but we're here to talk about being in the top quintile. What you do here is to have a habit of creating learning exhaust. Write blogs and tutorials and cheatsheets. Speak at meetups and conferences. Ask and answer things on Stackoverflow or Reddit. (Avoid the walled gardens like Slack and Discourse, they're not public). Make Youtube videos or Twitch streams. Start a newsletter. Draw cartoons (people loooove cartoons!). Whatever your thing is, make the thing you wish you had found when you were learning. Don't judge your results by "claps" or retweets or stars or upvotes - just talk to yourself from 3 months ago. I keep an almost-daily dev blog written for no one else but me.

Guess what? It

var tags = [
{
id: 3,
name: "Stories",
created_at: "2018-04-06 14:24:25",
updated_at: "2018-04-06 14:24:25",
pivot: {
work_id: 14,
tag_id: 3
}