Atomコードリーディングメモ
script/build
起動したらsrc/window-bootstrap.coffeeが起動時間のログを出してるので、そいつをgrepすると/src/broweser/atom-application.coffee が引っかかる。
src/broweser/atom-application.coffee は、 src/browser/main.coffee に呼ばれている
Here's a preliminary experiment to see how much memory is saved with the new copy-on-write friendly (bitmap marking) GC.
Calculated by memstats.rb https://gist.github.com/kenn/5105061 on Debian x86_64.
# ./memstats.rb 20547
MessagePackが文字列とバイナリをわけないのは問題?
Objective Cの実装使ってるとある問題にぶちあたった.なので,文字列をちゃんとバイナリ(Raw)と分けるべき,という提案
(*) 俺は熟読したわけではないので,中身が気になる人はちゃんと本スレを読みましょう
let(:vehicle) { FactoryGirl.create(:vehicle, vehicle_attributes) } | |
let(:vehicle_attributes) { {} } | |
describe "#to_s" | |
subject { vehicle.to_s } | |
let(:vehicle_attributes) { {name: "Carzilla"} } | |
it { should == "Carzilla" } | |
end |
story_create | |
add_story_label | |
story_label_add | |
remove_story_label | |
story_label_remove | |
comment_create | |
comment_delete | |
story_move_multi | |
multi_story_delete | |
story_delete_multi |
set-option -g default-terminal screen-256color | |
set-option -g prefix C-f | |
set-option -g history-limit 10000 | |
set-window-option -g mode-key vi | |
set-option -g status-left "x-F" | |
set-option -g status-right "#(cat /proc/loadavg)" | |
set-option -g status-interval 5 | |
set-window-option -g utf8 on |