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 <iostream> | |
#include <future> | |
#include <list> | |
// http://isocpp.org/blog/2013/07/what-is-stdpromise-stackoverflow | |
// g++ -std=c++0x -pthread test.cpp | |
// tested in gcc 4.6.3 | |
class OneTask { |
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
# 79328b2 - (master) update 5 (10 minutes ago) <Seonghwan Lee> | |
# d1a216d - update 4 (15 minutes ago) <Seonghwan Lee> | |
# 228c3ec - update 3 (15 minutes ago) <Seonghwan Lee> | |
| * 93c5cd1 - (HEAD, local) update 4 (11 minutes ago) <Seonghwan Lee | |
| * a4735b8 - update 3 (12 minutes ago) <Seonghwan Lee> | |
| * 124d2ad - Merge branch 'master' into local (12 minutes ago) <S | |
|/| | |
# | 31e5a9c - update 2 (15 minutes ago) <Seonghwan Lee> | |
# | ee51d80 - update 1 (16 minutes ago) <Seonghwan Lee> | |
| * 49a6d64 - update 2 (14 minutes ago) <Seonghwan Lee> |
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
nvm install v0.8.15 | |
nvm alias default v0.8.15 | |
nvm use default |
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
import time | |
import sys | |
for i in range(5): | |
time.sleep(1) | |
sys.stdout.write("%d\n" % i) | |
sys.stdout.flush() |
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
/** | |
* Disable Discovery or Quick & Toggle with dblClick | |
* | |
* by http://me2day.net/ssemi | |
*/ | |
function m2m_disable_discovery() { | |
jQuery('div.post_section').dblclick(function(){ | |
jQuery(this).toggleClass('discovery'); | |
}).removeClass('discovery'); | |
} |
NewerOlder