Skip to content

Instantly share code, notes, and snippets.

@dahlia
dahlia / gist:1527847
Created December 28, 2011 12:54
멘토 제안 자유 프로젝트 후보

멘토 제안 자유 프로젝트 후보

안녕하세요. 홍민희 멘토입니다. 이번에 제가 자유 프로젝트를 멘티 여러분들께 제안해볼까 합니다만, 생각중인 것이 몇개 있는데 그 중 어떤 것이 주로 호응이 좋은지 모르겠어서 이렇게 설문을 할까 합니다. 아래 제가 제안한 프로젝트 가운데 가장 흥미로운 프로젝트가 무엇인지(만약 제가 제안한다면 함께 도전해볼 마음이 생기는지) 알려주셨으면 합니다.

(제가 제안하는 세 프로젝트 모두 자유 프로젝트이기 때문에 성공에 대한 부담은 없습니다. 따라서 제 개인적인 흥미 위주로 선정된 것들입니다.)

클라우드에서의 대용량 서비스 디플로이 자동화

@pcreux
pcreux / gist:1681580
Created January 26, 2012 07:48
Reword *first* commit
# You can't use rebase -i here since it takes the parent commit as argument.
# You can do the following though:
git checkout FIRST_COMMIT_SHA && git commit --amend && git rebase HEAD master
@nikcub
nikcub / README.md
Created October 4, 2012 13:06
Facebook PHP Source Code from August 2007
@puzzlet
puzzlet / id_anomaly.py
Created October 22, 2012 05:41
never use id() with unbound function
$ python2.7 id_anomaly.py
old_func is not new_func
('old_func:', 41458576, <bound method classobj.member_func of <class __main__.A at 0x278bf58>>)
('new_func:', 41314096, <bound method classobj.member_func of <class __main__.A at 0x278bf58>>)
$ python3.2 id_anomaly.py
old_func is not new_func
old_func: 140100968595896 <bound method type.member_func of <class '__main__.A'>>
new_func: 140100968596184 <bound method type.member_func of <class '__main__.A'>>
@klutzy
klutzy / hello.rs
Last active August 29, 2015 14:05
// let's build rust program with msvc linker!
#![feature(intrinsics, lang_items)]
#![no_std]
#![no_main]
// (this is not required for msvc, but for "standard" build.)
#[no_mangle]
pub extern "C" fn rust_stack_exhausted() {}