Skip to content

Instantly share code, notes, and snippets.

@ashikawa
ashikawa / README.md
Created November 22, 2012 02:02
JS勉強会資料3 event について
@ashikawa
ashikawa / kokubun.user.js
Created December 18, 2012 06:18 — forked from udzura/kokubun.user.js
kokubunize
// ==UserScript==
// @name ねえねえ今どんな気持ち?
// @namespace http://udzura.jp/kokubun
// @description 国分太一fier
// @include *//www.facebook.com/*
// @version 0.0.1.20121205
// ==/UserScript==
(function () {
@ashikawa
ashikawa / cheat.md
Created December 19, 2012 10:09
MyCheat Sheet

Cheat Sheet

Zen-Conding

html:5
ul>li#id-$$.class{menu $}*5

Sublime Text

@ashikawa
ashikawa / README.md
Last active December 9, 2015 23:29
ローカル装備

ローカル装備

とりあえず生きて行くのに必要な物まとめ。

Commands

@ashikawa
ashikawa / Memcached.php
Last active December 10, 2015 18:08
Memcached コード補完用のスケルトン 書きかけ
<?php
/**
* @see http://php.net/manual/en/class.memcached.php
*/
class Memcached
{
/**
* Enables or disables payload compression.
* When enabled, item values longer than a certain threshold (currently 100 bytes)
* will be compressed during storage and decompressed during retrieval transparently.
@ashikawa
ashikawa / memcache.md
Created January 7, 2013 09:27
コンソールで memcache と戦う方法
@ashikawa
ashikawa / README.md
Last active December 12, 2015 03:09
Developer Roadmap 2013

The following changes can be enabled/disabled using the "April 2013 Breaking Changes" migration until April 3rd when they will go into effect permanently for everyone:

以下の変更は 4/6 までに "March 2013 Breaking Changes" migration の enabled/disabled を使い、恒久的に変更する事ができます。

Removing ability to POST to USER_ID/questions

USER_ID/questions への POST 機能を削除

@ashikawa
ashikawa / README.md
Last active December 14, 2015 01:59
TwitterAPI の仕様変更への対策
@ashikawa
ashikawa / main.js
Created February 25, 2013 03:04
JS console についてメモ。
/*global $, setTimeout, console*/
/**
* なんか重たい処理
*/
function fib(num) {
if (num === 0 || num === 1) {
return 1;
}
return fib(num - 1) + fib(num - 2);
@ashikawa
ashikawa / gist:5489138
Last active December 16, 2015 19:59
Facebook July 2013 Breaking Changes の翻訳。 https://developers.facebook.com/roadmap/ より。

Developer Roadmap

In the spirit of openness and transparency and to adhere to our Breaking Change Policy, we publish this roadmap to help developers plan for changes that may require code modifications.

公共性とオープン性と、Breaking Change Policy に従い、コードの変更が必要になるかもしれない開発者へ向けてこのロードマップを公開します。

Like all roadmaps, it may shift slightly, but we will share insight into what is happening as details become available.

他のロードマップ同様、多少の変更はあるかもしれませんが、今後の方向性を知る上で必要な情報を共有します。