Skip to content

Instantly share code, notes, and snippets.

View overneath42's full-sized avatar

Justin Toon overneath42

View GitHub Profile

Keybase proof

I hereby claim:

  • I am overneath42 on github.
  • I am overneath42 (https://keybase.io/overneath42) on keybase.
  • I have a public key ASDwKGhUrpbwikcpx7YEcJqfsp6yVnGLrZpCcRm0BrN8wQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am overneath42 on github.
  • I am overneath42 (https://keybase.io/overneath42) on keybase.
  • I have a public key ASDwKGhUrpbwikcpx7YEcJqfsp6yVnGLrZpCcRm0BrN8wQo

To claim this, I am signing this object:

@overneath42
overneath42 / soma.txt
Last active November 1, 2016 13:55 — forked from andreis/soma.txt
Soma Radio iTunes Playlist
Name Artist Composer Album Grouping Work Movement Number Movement Count Movement Name Genre Size Time Disc Number Disc Count Track Number Track Count Year Date Modified Date Added Bit Rate Sample Rate Volume Adjustment Kind Equalizer Comments Plays Last Played Skips Last Skipped My Rating Location
Sonic Universe 11/1/16, 9:39 AM 192 44100 Internet audio stream Transcending the world of jazz with eclectic, avant-garde takes on tradition. http://ice1.somafm.com/sonicuniverse-192-mp3
Beat Blender 11/1/16, 9:39 AM 44100 A late night blend of deep-house and downtempo chill. http://ice1.somafm.com/beatblender-128-aac
Suburbs of Goa 11/1/16, 9:39 AM 128 44100 Desi-influenced Asian world beats and beyond. http://ice1.somafm.com/suburbsofgoa-128-mp3
The Trip 11/1/16, 9:39 AM 128 44100 Progressive house / trance. Tip top tunes. http://ice1.somafm.com/thetrip-128-mp3
Seven Inch Soul 11/1/16, 9:39 AM 4410
100% — FF
95% — F2
90% — E6
85% — D9
80% — CC
75% — BF
70% — B3
65% — A6
60% — 99
55% — 8C
@overneath42
overneath42 / 0_reuse_code.js
Last active August 29, 2015 14:13
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@overneath42
overneath42 / app.js
Created July 30, 2014 19:21 — forked from insin/app.js
/** @jsx React.DOM */
var App = React.createClass({
getInitialState: function() {
return {
pageSize: 2
}
}
, render: function() {
Here is a list of scopes to use in Sublime Text 2 snippets -
ActionScript: source.actionscript.2
AppleScript: source.applescript
ASP: source.asp
Batch FIle: source.dosbatch
C#: source.cs
C++: source.c++
Clojure: source.clojure
CoffeeScript: source.coffee
@overneath42
overneath42 / Fix Home & End keys in Sublime Text 2 on OS X
Created December 11, 2012 19:50
Map Home and End keys to beginning and end of line in Sublime Text 2 on OS X
{ "keys": ["end"], "command": "move_to", "args": { "to": "hardeol" } },
{ "keys": ["home"], "command": "move_to", "args": { "to": "hardbol" } }
@overneath42
overneath42 / cross-browser-inline-block
Created October 5, 2012 18:53
Cross-browser inline-block
/* http://blog.mozilla.org/webdev/2009/02/20/cross-browser-inline-block/ */
li {
width: 200px;
min-height: 250px;
border: 1px solid #000;
display: -moz-inline-stack;
display: inline-block;
vertical-align: top;
margin: 5px;