Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Itemize Pull Requests
// @version 0.1
// @author ton1517
// @namespace ton1517
// @match https://github.com/*
// @grant none
// ==/UserScript==
;(function () {
@ton1517
ton1517 / file0.txt
Created October 19, 2013 06:58
サクッと使いこなすためのgit stash Tips & stashの仕組み ref: http://qiita.com/ton1517/items/9888a78f6b063e748558
$ git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: bar
#
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
@ton1517
ton1517 / ViewDeck.podspec
Created October 12, 2012 06:29
ViewDeck.podspec
Pod::Spec.new do |s|
s.name = 'ViewDeck'
s.version = '1.4.2'
s.platform = :ios
s.summary = 'An implementation of the sliding functionality found in the ' \
'Path 2.0 or Facebook iOS apps.'
s.homepage = 'https://github.com/Inferis/ViewDeck'
s.license = {
:type => 'MIT',
:text => <<-LICENSE
@ton1517
ton1517 / PlayM4A.as
Created September 12, 2011 00:28
AS3でM4Aファイルを再生するプログラム
package {
import flash.display.Sprite;
import flash.events.Event;
import flash.events.NetStatusEvent;
import flash.events.UncaughtErrorEvent;
import flash.media.Sound;
import flash.media.SoundTransform;
import flash.net.NetConnection;
import flash.net.NetStream;