Skip to content

Instantly share code, notes, and snippets.

View torufurukawa's full-sized avatar

Toru Furukawa torufurukawa

View GitHub Profile
@voluntas
voluntas / react.rst
Last active May 25, 2022 11:57
React コトハジメ

React コトハジメ

日時

2017-01-02

@voluntas

バージョン

2.1.0

URL

https://voluntas.githu.io/

突っ込みは Twitter @voluntas まで。

@shrugs
shrugs / google.script.run.promise.js
Last active July 17, 2019 08:10
google.script.run promise wrapper
// turns google.script.run into an object with a promise api
function scriptRunPromise()
var gs = {};
var ks = Object.keys(google.script.run);
for (var i=0; i < ks.length; i++) {
gs[ks[i]] = (function(k) {
return function() {
var args = arguments;
return Promise(function(resolve, reject) {
google.script.run
@solar
solar / install.sh
Created October 16, 2012 10:47
install redis with supervisord
#!/bin/sh
version="2.6.3"
priority="20603"
sudo mkdir -p /var/redis /var/log/redis
curl -sL http://redis.googlecode.com/files/redis-${version}.tar.gz | tar zx
cd redis-${version}/
make
sudo make PREFIX=/usr/local/redis/${version} install