Skip to content

Instantly share code, notes, and snippets.

View torufurukawa's full-sized avatar

Toru Furukawa torufurukawa

View GitHub Profile
package main
import (
"fmt"
)
func main() {
in1 := make(chan int)
in2 := make(chan string)
done := make(chan bool)
"""requests wrapper
>>> import curledrequests as requests
you can use this as requests module, but...
>>> requests.debug = True
>>> requests.get('http://example.com/')
curl http://example.com/
Hello
@torufurukawa
torufurukawa / keymap.cson
Created November 18, 2016 00:12
Atom keymap settings
# Your keymap
#
# Atom keymaps work similarly to style sheets. Just as style sheets use
# selectors to apply styles to elements, Atom keymaps use selectors to associate
# keystrokes with events in specific contexts. Unlike style sheets however,
# each selector can only be declared once.
#
# You can create a new keybinding in this file by typing "key" and then hitting
# tab.
#
[color]
ui = auto
[alias]
glog = log --graph --date=short --decorate=short --pretty=format:'%h %Cblue%d%Creset %cd %cn %s'
st = status
# default virtualenv
export VIRTUAL_ENV_DISABLE_PROMPT=1; source ~/.virtualenvs/default/bin/activate
unset VIRTUAL_ENV_DISABLE_PROMPT
@torufurukawa
torufurukawa / Makefile
Last active January 1, 2016 23:09
俺のブートストラップ
.PHONY : all venv py-packages
VENV_DIR = venv
BIN_DIR = $(VENV_DIR)/bin
BASE_PYTHON = python3.4
PIP = $(BIN_DIR)/pip
ACTIVATE = $(BIN_DIR)/activate
PYTHON = $(BIN_DIR)/python
PIP_REQUIREMENTS = pip-requirements.txt
"""Provides patch for backloglib to work on Google App Engine
Usage:
>>> import backloglib
>>> import gaebackloglib
>>> gaebackloglib.patch(backloglib)
"""
import sys
import xmlrpclib
@torufurukawa
torufurukawa / gist:6161212
Last active December 20, 2015 16:28
angularjs service creation
angular.module('feiz', [], function($provide) {
$provide.factory('get', ['$http', function(http) {
return function(scope) {
http({url:'http://oldriver.org/index.html', method:'GET'}).
error(function(){
scope.hoge = "azuma";
});
};
}]);
});
{
"author": {
"name": "wozozo",
"position": "co-founder"
},
"message": "hello"
}
div#header-inner div.titlewrapper {
margin-left: 2px;
padding-bottom: 0px;
}
div.header-outer .descriptionwrapper {
width: 500px;
}
div#header-inner div.descriptionwrapper {