Skip to content

Instantly share code, notes, and snippets.

View ohoroyoi's full-sized avatar
๐Ÿƒโ€โ™€๏ธ
keep going

ohoroyoi

๐Ÿƒโ€โ™€๏ธ
keep going
View GitHub Profile
@ohoroyoi
ohoroyoi / callback_usage.js
Created July 13, 2019 15:41
์ด ์งง์€ ์ฝ”๋“œ๊ฐ€ ์ดํ•ด๊ฐ€ ์•ˆ๊ฐ€์„œ ๋ช‡๋ฒˆ์„ ์ฝ์—ˆ๋Š”์ง€
const getTime = (callback) => {
callback('์•ˆ๋…•');
}
getTime((message)=>{
console.log(message);
});
@ohoroyoi
ohoroyoi / what_is_call_back.js
Last active July 13, 2019 15:34
what_is_call_back.js
// callback : ์ธ์ž๋กœ ํ•จ์ˆ˜๋ฅผ ๋ฐ›๋Š” ํ˜•ํƒœ
function add(a, b){
return a + b;
}
function addFour(x, f){ // ์ธ์ž๋กœ ํ•จ์ˆ˜๋ฅผ ๋ฐ›๋Š” ํ˜•ํƒœ
return f(x, 4);
}
@ohoroyoi
ohoroyoi / samjeon_react.js
Created July 13, 2019 08:17
samjeon_react.js
// // callback
// function add(a, b){
// return a + b;
// }
// function addFour(x, f){ // ์ธ์ž๋กœ ํ•จ์ˆ˜๋ฅผ ๋ฐ›๋Š” ํ˜•ํƒœ
// return f(x, 4);
// }
import time
from threading import Thread
def myfunc(i):
print("sleeping 5 sec from thread %d" % i)
time.sleep(5)
print("finished sleeping from thread %d" % i)
for i in range(10):
t = Thread(target=myfunc, args=(i,)) # ์™œ i์•„๋‹ˆ๊ณ  i,?? https://docs.python.org/3/library/threading.html#threading.Thread ํŠœํ”Œํ˜•์ด๋ผ ํ•จ
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
#define MAX_VALUE 1001 // (1<= N <= 1000)
int jeongjum;
int gansun;
int start_jeongjum;
const animatedBounce = function({ selector = ".ohoroyoi", ...rest } = {}) {
$(selector).addClass('animated bounce');
return Promise.resolve(true);
}
const makeChosen = function({ selector = "#ohoroyoi_table", ...rest } = {}) {
$(selector).chosen({
width: "100%"
});
return Promise.resolve(true);