-
左のエリアのアレ切り替え
Cmd + [0-7] -
右のエリアのアレ切り替え
Cmd * Option + [0-2] -
下のエリアの表示非表示トグル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import os.path, re, hashlib, urllib, json | |
appid = '' | |
uri = 'http://api.bing.net/json.aspx' | |
dir = './data' | |
page_count = 0 | |
download_count = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install this recipe with: | |
# brew install --HEAD https://raw.github.com/gist/1955470/c58bda92f07147afff64a86d0c2d8ef65adb9cd6/elixir.rb | |
require 'formula' | |
class Elixir < Formula | |
homepage 'http://elixir-lang.org/' | |
head 'https://github.com/elixir-lang/elixir.git' | |
depends_on 'erlang' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\ ¦ / | |
\ ¦ / | |
/ ̄ ̄ ヽ, | |
/ ', / _/\/\/\/|_ | |
\ ノ//, {0} /¨`ヽ {0} ,ミヽ / \ / | |
\ / く l ヽ._.ノ ', ゝ \ < IE バーカ! > | |
/ /⌒ リ `ー'′ ' ⌒\ \ / \ | |
(  ̄ ̄⌒ ⌒ ̄ _)  ̄|/\/\/\/ ̄ | |
` ̄ ̄`ヽ /´ ̄ | |
| | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\ ¦ / | |
\ ¦ / | |
/ ̄ ̄ ヽ, | |
/ ', / _/\/\/\/|_ | |
\ ノ//, {0} /¨`ヽ {0} ,ミヽ / \ / | |
\ / く l ヽ._.ノ ', ゝ \ < ttmtmy の バーカ! > | |
/ /⌒ リ `ー'′ ' ⌒\ \ / \ | |
(  ̄ ̄⌒ ⌒ ̄ _)  ̄|/\/\/\/ ̄ | |
` ̄ ̄`ヽ /´ ̄ | |
| | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
風邪ひいた | |
体調が悪くなると何も面白くないし何もしたくなくなる | |
食事もゲームも全く楽しくない | |
本とかプログラムとか頭使うことはとても出来無い | |
昨日からほとんど布団にこもってる | |
だらだらと寝たりだらだらとツイッターしたりだらだらとタンブラーしてる | |
健康って大事だなって思った |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(int argc, char* argv[]) { | |
argc = 0; | |
argv[0] = 100; | |
while (argv[0] > 0) { | |
argc += argv[0]; | |
argv[0] -= 1; | |
} | |
printf("%d\n", argc); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function()%20{var%20profile%20=%20$(%27.profile-picture%27)[0],match%20=%20profile.src.match(/profiles\/profile_(\d+)/),id%20=%20match[1];location.href%20=%20%27http://undersky.mitukiii.jp/users/%27%20+%20id;}()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
require 'rubygems' | |
require 'twitter' | |
require 'oauth' | |
require 'yaml' | |
require 'thor/group' | |
class Tweet < Thor::Group | |
include Thor::Actions |