- gistでmarkdown書いたらbookmarkletでプレゼンになるよ。
- ↓これをBookmarkに登録してこのページで実行してみよー!
#compdef tmuxinator mux | |
# zsh completion for tmuxinator | |
# Install: | |
# $ mkdir -p ~/.tmuxinator/completion | |
# $ cp _tmuxinator ~/.tmuxinator/completion | |
# $ vi ~/.zshrc # add the following codes | |
# fpath=($HOME/.tmuxinator/completion ${fpath}) | |
# autoload -U compinit |
diff -c sl/sl.c sl_kq/sl.c | |
*** sl/sl.c 1998-07-22 23:01:01.000000000 +0900 | |
--- sl_kq/sl.c 2011-12-02 21:34:09.540165908 +0900 | |
*************** | |
*** 33,73 **** | |
#include "sl.h" | |
int ACCIDENT = 0; | |
int LOGO = 0; | |
int FLY = 0; |
Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: CjulERsDeqhhjSme66ECg
/** | |
* $ javac -J-Dfile.encoding=utf-8 Intelligent.java | |
* $ java -Dfile.encoding=utf-8 Intelligent | |
*/ | |
import java.io.BufferedReader; | |
import java.io.InputStreamReader; | |
import java.io.IOException; | |
import java.util.Random; |
お (*・ρ・)ジュルリ 名詞 | |
お (*>ヮ<)(>ヮ<*)ネー 名詞 | |
お ヾ(๑╹◡╹)ノ"♡ 名詞 | |
お (╹⌓╹ ) 名詞 | |
お (/ω\) 名詞 | |
お (ヾノ・ω・`)ナイナイ 名詞 | |
お ☆(ゝω・)v 名詞 | |
お ヾ(>ヮ<*)ナデナデ 名詞 | |
お (*/ω\*) 名詞 | |
お (=△=`歩) 名詞 |
#!/usr/bin/env ruby | |
require 'oauth' | |
consumer = OAuth::Consumer.new( | |
'consumer_key', | |
'consumer_secret', | |
{ | |
site: 'http://api.tumblr.com', | |
request_token_url: "http://www.tumblr.com/oauth/request_token", | |
authorize_url: "http://www.tumblr.com/oauth/authorize", |
# coding: utf-8 | |
require 'mechanize' | |
id = '' | |
pass = '' | |
url_login = 'http://p.eagate.573.jp/gate/p/login.html' | |
url_player = 'http://p.eagate.573.jp/game/jubeat/copious/p/playdata/index.html' | |
url_music1 = 'http://p.eagate.573.jp/game/jubeat/copious/p/playdata/music.html?page=1' |
# coding: utf-8 | |
require 'faraday' | |
require 'faraday_middleware' | |
screen_name = ARGV[0] | |
def action(url) | |
system "open #{url}" | |
end |
// ------------------------------------------------------------------------ // | |
#pragma mark - 定義ファイル側 | |
@interface SomeClass : NSObject | |
{ | |
// ここにメンバ変数を定義できるが、しなくてもよい | |
// (@synthesize 時に実体となる変数を定義できるため) | |
NSObject *_apple; // メンバ変数 _apple を定義しておく (後の例示の為) | |
} |