Skip to content

Instantly share code, notes, and snippets.

View axelav's full-sized avatar
🕸️

Axel Anderson axelav

🕸️
View GitHub Profile
@axelav
axelav / m3u
Created November 29, 2011 02:05
alias to delete all m3u files in a directory
# hate m3u playlist files? set up an alias to delete them all.
alias m3u="find . -name '*.m3u' -print0 | xargs -0 rm -v"
@axelav
axelav / dabblet.css
Created January 9, 2012 14:34 — forked from chriscoyier/dabblet.css
nice buttons
.button {
border: 1px solid #DDD;
border-radius: 3px;
text-shadow: 0 1px 1px white;
box-shadow: 0 1px 1px #fff;
font: bold 11px Sans-Serif;
padding: 6px 10px;
white-space: nowrap;
vertical-align: middle;
color: #666;
@axelav
axelav / dabblet.css
Created February 9, 2012 02:35
zig zag background
/**
* zig zag background
* stolen from here: http://lea.verou.me/css3patterns/#zig-zag
*/
body {
background:
linear-gradient(315deg, #f1f1f1 25%, transparent 25%) -50px 0,
linear-gradient(225deg, #f1f1f1 25%, transparent 25%) -50px 0,
linear-gradient(135deg, #f1f1f1 25%, transparent 25%),
linear-gradient(45deg, #f1f1f1 25%, transparent 25%);
@axelav
axelav / gist:1839777
Created February 15, 2012 22:51 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@axelav
axelav / linux-directory-structure.md
Last active September 30, 2015 18:58
Quick summary of Linux directory hierarchy

Linux directory heirarchy


/bin binaries, basic Linux commands are here

/boot boot code, leave it be

/dev all devices/hardware, all treated as a stream

@axelav
axelav / dabblet.css
Created March 1, 2012 04:58
salmon & blue circle - radial gradient
/**
* salmon & blue circle
*/
button {
color:#fff;
font-family:helvetica neue;
font-size:48px;
font-style:italic;
font-weight:100;
@axelav
axelav / dabblet.css
Created March 1, 2012 05:59
salmon & blue circle - bouncing, animated
/**
* salmon & blue circle
*/
button {
color:#ff555d;
font-family:futura;
font-size:48px;
font-style:italic;
font-weight:800;
@axelav
axelav / gasmask_focus_mode
Created May 1, 2012 02:24
Gasmask focus mode
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
# focus mode
# toggled with http://www.clockwise.ee/gasmask/
0.0.0.0 twitter.com
0.0.0.0 mail.google.com
@axelav
axelav / git-rm-all.sh
Created May 3, 2012 12:23
Remove Deleted Files From Git
git rm "$(git ls-files -d)"
@axelav
axelav / gist:2716344
Created May 17, 2012 04:25
Create a list of links on a site
# Create a list of links on a site
# https://twitter.com/#!/plasticmind/status/202746488797921280
wget --force-html -r -l2 http://yoursite.com 2>&1 | grep '^--' | grep -v '\.\(txt\|ico\|css\|js\|png\|gif\|jpg\)$' > linklist.txt