Skip to content

Instantly share code, notes, and snippets.

View seiji's full-sized avatar
🏠
Working from home

Seiji Toyama seiji

🏠
Working from home
View GitHub Profile
@seiji
seiji / gist:3935968
Created October 23, 2012 00:50
display view hierarchy
NSLog(@"%@", [view performSelector:@selector(recursiveDescription)]);
@seiji
seiji / gist:3930680
Created October 22, 2012 09:49
ios6 error
*** Terminating app due to uncaught exception 'UIViewControllerHierarchyInconsistency', reason: 'A view can only be associated with at most one view controller at a time!
Clear this association before associating this view with
@seiji
seiji / gist:3930237
Last active April 18, 2017 20:24
Append NSAttributedString
NSAttributedString *subjectString =
[[NSAttributedString alloc] initWithString:@"git"
attributes:@{
NSForegroundColorAttributeName : [UIColor blueColor],
NSFontAttributeName : [UIFont boldSystemFontOfSize:20]
}];
NSAttributedString *verbString = [[NSAttributedString alloc] initWithString:@" push -u "];
NSAttributedString *objectString =
[[NSAttributedString alloc] initWithString:@"origin master"
@seiji
seiji / gist:3929920
Created October 22, 2012 05:59
Insert Private Feed of Github
$ mongo
> use github
> db.createCollection('feed', { capped: true, size: 100000 })
# require jsawk (with spidermonkey)
curl https://github.com/$username.private.json?token=$token | jsawk "this.entry" | mongoimport --jsonArray --upsert -d github -c feed
@seiji
seiji / gist:3929710
Created October 22, 2012 04:57
Build spidermonkey
wget ftp://ftp.mozilla.org/pub/mozilla.org/js/js-1.7.0.tar.gz
tar -zxf js-1.7.0.tar.gz
cd js/src
export CFLAGS="-DJS_C_STRINGS_ARE_UTF8"
make -f Makefile.ref
sudo JS_DIST=/usr/local/js make -f Makefile.ref export
@seiji
seiji / gist:3915641
Created October 19, 2012 00:50
Reload Current Tab of MobileSafari
tell application "System Events"
tell process "iPhone Simulator"
click button "Reload" of window 1
end tell
end tell
@seiji
seiji / gist:3915599
Created October 19, 2012 00:36
Control iOS Simulator
#!/Library/Frameworks/LuaCocoa.framework/Versions/Current/Tools/luacocoa
--[[
Controll iOS Simulator
--]]
LuaCocoa.import("ScriptingBridge")
local system_events = SBApplication:applicationWithBundleIdentifier_("com.apple.systemevents")
local ios_sim_process = nil
@seiji
seiji / gist:3915593
Created October 19, 2012 00:33
Install Ricty
brew install fontforge
mkdir $HOME/tmp
cd $HOME/tmp
curl -L -o $HOME/tmp/Inconsolata.otf http://levien.com/type/myfonts/Inconsolata.otf
curl -L -o $HOME/tmp/3.2.0.zip https://github.com/yascentur/Ricty/zipball/3.2.0
curl -L -o $HOME/tmp/migu-1m-20120411-2.zip "http://sourceforge.jp/frs/redir.php?m=jaist&f=%2Fmix-mplus-ipa%2F56156%2Fmigu-1m-20120411-2.zip"
unzip $HOME/tmp/3.2.0.zip
unzip $HOME/tmp/migu-1m-20120411-2.zip
#!/usr/bin/osascript
on run argv
tell application "Google Chrome"
tell window 1
set newTab to make new tab with properties {URL:item 1 of argv}
end tell
end tell
end run
#!/usr/bin/env ruby
require 'mongo-hadoop'
MongoHadoop.reduce do |key, values|
count = 0
values.each do |value|
count += 1
end
{:_id => key, :count => count}
end