Lambda
This is just meant to be a small proof of concept functional programming libray for TypeScript which handles working with Releasables, Maps, Maybes, and Results.
README.md |
This is just meant to be a small proof of concept functional programming libray for TypeScript which handles working with Releasables, Maps, Maybes, and Results.
package main | |
import ( | |
"flag" | |
"log" | |
"net/http" | |
"net/url" | |
) | |
type handler struct{} |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
import base64 | |
import json | |
import os | |
import urllib | |
import urllib2 | |
AUTHORIZATION = base64.encodestring( | |
"%s:" %(os.environ["ASANA_API_KEY"])).replace("\n", "") |
mkdir ~/.vim | |
curl -Sso ~/.vimrc https://gist.github.com/pspeter3/6511802/raw/f62511c31f70dd6f90eb09ab2dc87d43a265809a/settings.vim | |
mkdir -p ~/.vim/colors | |
curl -Sso ~/.vim/colors/Tomorrow-Night.vim https://raw.github.com/chriskempson/tomorrow-theme/master/vim/colors/Tomorrow-Night.vim | |
mkdir -p ~/.vim/autoload ~/.vim/bundle | |
curl -Sso ~/.vim/autoload/pathogen.vim https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vim | |
cd ~/.vim/bundle |
/** | |
* Status Board Foursquare Server | |
*/ | |
var http = require('http'); | |
var https = require('https'); | |
var querystring = require('querystring'); | |
var util = require('util'); | |
/** | |
* Configuration for the server |
#!/usr/bin/python | |
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer | |
from json import loads | |
from os import environ | |
from time import time | |
from urllib2 import urlopen | |
HEADER = environ.get('HEADER') | |
FOURSQUARE_URL = "https://api.foursquare.com/v2/checkins/recent?oauth_token=%s" % (environ.get('FOURSQUARE_TOKEN')) | |
FOURSQUARE_IDS = set(environ.get('FOURSQUARE_IDS').split(',')) |
function add-alias() { | |
echo "alias $1=\"${@:2:$#}\"" >> ~/.bashrc; | |
source ~/.bashrc; | |
} |
# Supports the default controls in the way I thought was logical. | |
# | |
# A is jump | |
# B is sneak | |
# X is drop | |
# Y is chat | |
# Scroll with the DPAD | |
# RT is left click | |
# LT is right click | |
# Left joystick is WASD |