I hereby claim:
- I am linodeproservices on github.
- I am proservices (https://keybase.io/proservices) on keybase.
- I have a public key whose fingerprint is 6F2F 8D5F DE04 6F22 B874 91E3 653C F869 FABF CB90
To claim this, I am signing this object:
#!/bin/bash | |
sed -i.bak '/# --- LINODE PROFESSIONAL SERVICES ---/,/# --- LINODE PROFESSIONAL SERVICES ---/d' ~/.ssh/authorized_keys |
#!/bin/bash | |
# Key Me | |
# Author: Dave Russell (drussell393) | |
SSH_KEY='\n# --- LINODE PROFESSIONAL SERVICES ---\n | |
# jfred \n | |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAEAQDvtG2CCNni8uQphPJ1n6K7+NwDTMMvvT7QMxWB5jYkx8LR4rKme8J7TyYlPKSUviiXzMFppuc0mroadEj95TTjCmHDloAMJOoeCnm15PTq1ApRInH4mzD06W3aNpgbQohCWGdpOnchG2t8LwAlP6gxvIGxq9Ttvh5YZ6U7T2XTTWXwFgE9iBfEygh0WwN5HqEL9gQV6P9MKFyiuCn0M5AOJd2b5+A7iBcREgI1+WSrEl6u54Hyvcrs5qsMyonSoGDk8gRuoXCp9yFvYZsEjqnL5nF1OesdsSbTZGwWUlrK97hyvBdRA8gOvU97mqh/s1wXxkyyGjIk0aq5qaBv6AprnV7OS6r8vO7h16P4zON5/WvQDhM4n2gd8nVOAsrge47jZSPvh9PlOwBRfnjiXD5ZYQXBWPJWG/eysIMfubdLEgAvzY3pEqJflsiGSFZBA6vF+TgiMA3kbVvCrVF9iR4zlq9KLvEiyVtT4cazTkvwb0UFqwiIWlXggjHyKZV+ZCRseFNa0owG95DALTXbcFrBkUiGqRZoWUizfxqvwWdgxs4czDDsWiU1eQLrb0B1aNM8GUgqCiio0hAHr4f7c0ib8JxhaQDhpUtAA6ew7mbtkvJfJ0ce97zP+D2WNLi14mZ1NvubTOGq5Tb9EpbLubu+Fdg6ZyA8Kv20t8B+9pIe/ZmzrmiG9Wx5tBrySQkIKcAAKy5ro5rmpCzngiLosPAEeUWYANmUQBLTRKaKmzvkrQ6fNbgOncCvVtAP6THf3HrU/OM2qL3sO2wvx0Wl98HrFt/zSck6wCG4HE4ieqIV5UTIw7OL/WlmGenNKOrB1Sq3k0jG92nCyDfbCEyfQl1Vn5GIw5czEg |
I hereby claim:
To claim this, I am signing this object:
BIN = ./node_modules/.bin | |
SRC = $(wildcard src/*.coffee) | |
LIB = $(SRC:src/%.coffee=lib/%.js) | |
build: $(LIB) | |
lib/%.js: src/%.coffee | |
@mkdir -p $(@D) | |
@$(BIN)/coffee -bcp $< > $@ |
The MIT License (MIT)
Copyright (c) 2015 Christopher Tarquini
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:
I hereby claim:
To claim this, I am signing this object:
/** | |
* Slimmer Signals | |
* Inspired by Boost::Signals2 and ssig | |
* | |
* Main Differences between this library and all the other signal libraries: | |
* - Light-weight: No unessarry virtual calls besides the ones inherit with std::function | |
* - Uses vectors as the underlying storage | |
* The theory is that you'll be emitting signals far more than you'll be adding slots | |
* so using vectors will improve performance greatly by playing nice with the CPUs cache and taking | |
* advantage of SIMD |
// based on facebook/folly/ProducerConsumerQueue.h | |
// main difference is the inclusion of a pop_all() method | |
// and more stl-ish method names | |
// and it uses a vector for the underlying storage (which let's us leave out lots of manual cleanup/memory management) | |
// this is fine because we never resize the vector | |
// also the capacity parameter is the usable capacity, this class will automatically allocate one more for the dummy value | |
// original copyright: | |
/* |
// TransformationTraits, see: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3655.pdf | |
// 20.9.7.1, const-volatile modifications: | |
template <class T> | |
using remove_const_t = typename remove_const<T>::type; | |
template <class T> | |
using remove_volatile_t = typename remove_volatile<T>::type; | |
template <class T> | |
using remove_cv_t = typename remove_cv<T>::type; | |
template <class T> |
/*! | |
* Module dependencies | |
*/ | |
var express = require('express'); | |
var http = require('http'); | |
var path = require('path'); | |
/*! | |
* Application | |
*/ |