Yannik Sander
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Edit this configuration file to define what should be installed on | |
| # your system. Help is available in the configuration.nix(5) man page | |
| # and in the NixOS manual (accessible by running ‘nixos-help’). | |
| { config, pkgs, ... }: | |
| { | |
| imports = | |
| [ # Include the results of the hardware scan. | |
| ./hardware-configuration.nix |
I hereby claim:
- I am ysndr on github.
- I am ysndr (https://keybase.io/ysndr) on keybase.
- I have a public key ASCtw92hDQQ0CyXkS-F2BY-3kVjsdV-3NuK3uIC5iz0ILQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** ---IMPORTS {{{ */ | |
| var E3 = require('E3') | |
| /** ---OUT --- */ | |
| var Arrow = module.exports = {} | |
| Arrow.create = function(options){ | |
| options = options || {} | |
| var stack = [] | |
| , api = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * File: index (.js) | |
| * Description: Manages extern controllers bound together using events | |
| * Dependencies: E3 (https://gist.github.com/813449af4a6c05b2cede.git) | |
| * Author: y4ng0 @ yangodev | |
| * Licence: MIT | |
| */ | |
| var E3 = require('E3'), | |
| util = require('util'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Description: Slightly extended EventEmitter. Ported from Node.js/events.js | |
| * Author: y4ng0 @ yangodev | |
| * Licence: MIT | |
| */ | |
| /** | |
| * EventEmitter class |