Skip to content

Instantly share code, notes, and snippets.

View mikkelbd's full-sized avatar

Mikkel Dan-Rognlie mikkelbd

View GitHub Profile
@davidfowl
davidfowl / MinimalAPIs.md
Last active May 18, 2024 18:28
Minimal APIs at a glance
@willurd
willurd / web-servers.md
Last active May 25, 2024 13:16
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@felipecsl
felipecsl / restart coreaudio daemon
Last active May 17, 2024 22:17
Restart Mac OS X coreaudio daemon. Useful if you cannot change the audio output device to Airplay.
sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'`
# or...
sudo killall coreaudiod
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 25, 2024 18:47
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@torgeir
torgeir / scrape.js
Created December 2, 2011 08:12
Scraping with jsdom and jquery
/*
$ curl http://www.timeanddate.com/norsk/kalender.html
(...)
<div id=po1 class=po></div>
<h1>Kalender for &#229;r 2011</h1>
<table class="ct" border="0" cellpadding="4" cellspacing="0" align="center">
(...)
$ node scrape.js
This is 2011