Skip to content

Instantly share code, notes, and snippets.

@athaeryn
athaeryn / buildthethingsanddothestuff.coffee
Last active August 29, 2015 13:56
Build the things and do the stuff
build = (cb) ->
alert 'building'
cb()
stuff = -> -> -> ->
alert 'running'
the = things = (cb) -> cb?()
build the things and do the stuff
@athaeryn
athaeryn / SassMeister-input.scss
Created April 16, 2014 19:52
Generated by SassMeister.com.
// ----
// Sass (v3.3.5)
// Compass (v1.0.0.alpha.18)
// ----
$base-font-size: 16px;
// Helper Functions
// map
@athaeryn
athaeryn / hex.rb
Created May 29, 2014 16:47
Ruby String -> hex color
require "digest/sha2"
class String
def to_hex_color
"\##{(::Digest::SHA2.new << self).to_s[0...6]}"
end
end
@athaeryn
athaeryn / SassMeister-input.scss
Created June 10, 2014 05:48
Generated by SassMeister.com.
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// ----
$grid-widths: (
1:
one-whole,
1/2:
@athaeryn
athaeryn / pluralize.md
Last active August 29, 2015 14:05
Pluralize me, Cap'n!

HTML (mustache):

<div class="count">
   Found {{count}} Result<span class="ess">s</span>.
</div>

JS:

@athaeryn
athaeryn / SassMeister-input.scss
Last active August 29, 2015 14:07
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
@mixin n-up($number) {
&:nth-child(#{$number}n + 1) { clear: left; }
}
.tile {
@athaeryn
athaeryn / Makefile
Last active June 2, 2016 14:32 — forked from nhunzaker/Makefile
Light Level
all:
gcc light.m -std=c99 -framework Foundation -framework IOKit -o light
clean:
rm -f light
@athaeryn
athaeryn / fizzbuzz.js
Last active June 17, 2016 16:46
fizzbuzzjustbecuzz.js
console.log(
(Array(100) + "")
.split(",")
.map(function(s, i) {
return !!(++i % 3) || (s += "Fizz"),
!!( i % 5) || (s += "Buzz"),
s || i;
})
.join("\n")
);

Keybase proof

I hereby claim:

  • I am athaeryn on github.
  • I am athaeryn (https://keybase.io/athaeryn) on keybase.
  • I have a public key whose fingerprint is 11B8 5003 D377 5BCD 1667 C508 9065 E768 2896 8C89

To claim this, I am signing this object:

const fs = require('fs')
const words = fs.readFileSync('/usr/share/dict/words')
.toString()
.toLowerCase()
.split('\n')
const alphabet = 'abcdefghijklmnopqrstuvwxyz'.split('')
let lookup =