I hereby claim:
- I am romac on github.
- I am romac (https://keybase.io/romac) on keybase.
- I have a public key whose fingerprint is 4162 43FC 0262 ED5F CA4A 6887 3095 CED8 87F2 A01A
To claim this, I am signing this object:
| SHELL = bash | |
| BIN_DIR = ./node_modules/.bin | |
| BROWSERIFY = $(BIN_DIR)/browserify | |
| .PHONY: all clean | |
| all: prod.js dev.js | |
| prod.js: |
| 'use strict'; | |
| var Rx = require('./rx-lite'), | |
| React = require('react'), | |
| Players = require('./Players'), | |
| CurrentGames = require('./CurrentGames'), | |
| JoinRequests = require('./JoinRequests'); | |
| var Dashboard = React.createClass({ |
I hereby claim:
To claim this, I am signing this object:
| # http://stackoverflow.com/a/9912727 | |
| # Code: | |
| # | |
| namespace = (target, name, block) -> | |
| [target, name, block] = [(if typeof exports isnt 'undefined' then exports else window), arguments...] if arguments.length < 3 | |
| top = target | |
| target = target[item] or= {} for item in name.split '.' | |
| block target, top |
| {-# LANGUAGE ExistentialQuantification #-} | |
| module DFA ( | |
| DFA, | |
| runDFA, | |
| scanDFA, | |
| isAccepting, | |
| ) where | |
| import Data.Set (Set) |
| /usr/local/share/npm/lib | |
| โโโฌ [email protected] | |
| โ โโโ [email protected] | |
| โ โโโ [email protected] | |
| โ โโโฌ [email protected] | |
| โ โ โโโ [email protected] | |
| โ โ โโโฌ [email protected] | |
| โ โ โโโ [email protected] | |
| โ โ โโโ [email protected] | |
| โ โโโ [email protected] |
| @media only screen and (min--moz-device-pixel-ratio: 1.5), | |
| (-o-min-device-pixel-ratio: 3/2), | |
| (-webkit-min-device-pixel-ratio: 1.5), | |
| (min-device-pixel-ratio: 1.5) { | |
| #my-image { | |
| background:url(high.png); | |
| } | |
| } |
| foo: main.o foo.o | |
| clang -o $@ $^ | |
| %.o: %.c | |
| clang -o $@ -c $^ | |
| %.o: %.s | |
| yasm -f macho64 -o $@ $^ | |
| clean: |
| Copyright (c) 2013 kryzalid.com | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: | |
| The above copyright notice and this permission notice shall be included in |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <sys/mman.h> | |
| int main( int argc, char * argv[] ) | |
| { | |
| unsigned char code[] = "happy birthday"; | |
| void * mem = mmap( |