Skip to content

Instantly share code, notes, and snippets.

@jkmaxwell
jkmaxwell / arpeggios.md
Last active March 8, 2017 19:26
Floating & Arpeggios
  • Ashra, "New Age of Earth" — @stringbot
  • Kyle Landstra - @stringbot
  • Pulse Emitter - @stringbot
  • Donnacha Costello, "Love from Dust" - @johntejada
  • Stephen Falken, "Phantom Tracks vol 1" - @2xlp
  • Manuel Gottsching (Ashra), "Inventions for Electric Guitar" - @2xlp
  • Jo Johnson, "Weaving" - @stringbot
  • David Borden, "Music for Amplified Keyboard Instruments" - @basskitten
  • Michael Hoenig, "Departure from the northern wasteland" - @basskitten
  • Jürgen Müller, "Science Of The Sea" - @_ricardodonoso
{
"requireCapitalizedConstructors": true,
"requireMultipleVarDecl": true,
"disallowEmptyBlocks": true,
"disallowSpaceAfterObjectKeys": true,
"requireCommaBeforeLineBreak": true,
"requireParenthesesAroundIIFE": true,
"disallowKeywords": [
"with"
],
@dergachev
dergachev / GIF-Screencast-OSX.md
Last active May 17, 2024 02:53
OS X Screencast to animated GIF

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

@jkmaxwell
jkmaxwell / _mediaqueries.sass
Created November 12, 2012 22:52
Common Media Queries + Debug (Compass/SASS)
$debug: true
=debug-display($debugText)
@if $debug == true
&::before
content: '#{$debugText}'
/* iPads (portrait and landscape) -----------
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px)
+debug-display('iPads (portrait and landscape)')