Skip to content

Instantly share code, notes, and snippets.

View incheon-kim's full-sized avatar

Michael Kim incheon-kim

  • Incheon, South Korea
View GitHub Profile
Alpha House Knucks & Venna
tears in the club (feat FKA twigs & The W
jealousy (feat. rema) FKA twigs & Rema
darjeeling (feat jorja FKA twigs & Jorja
Out of Time The Weeknd
ASSHxLE (Feat. EK) B-Free & EK
Kick, Push Lupe Fiasco
The Future (Feat. KWON B-Free & KWON KI
DRACULA 2020 B-Free
327 (feat. Tyler, The C Westside Gunn & J
🌞 Morning 5 commits ▋░░░░░░░░░░░░░░░░░░░░ 3.0%
🌆 Daytime 65 commits ████████▎░░░░░░░░░░░░ 39.6%
🌃 Evening 55 commits ███████░░░░░░░░░░░░░░ 33.5%
🌙 Night 39 commits ████▉░░░░░░░░░░░░░░░░ 23.8%
@incheon-kim
incheon-kim / reboot-to-bootcamp.scpt
Last active July 27, 2020 05:37
맥OS에서 부트캠프로 재부팅하는 applescript
set isTest to false
set thePW to "Your PW here - WARNING! - saving password as plain text it not recommended"
# if you want type password yourself or use touchID(set askPW to false) / or (set askPW to true)
set askPW to false
# if you don't want ask dialog(set alwaysYes to true) / if you want dialog (set alwaysYes to false)
set alwaysYes to false
@incheon-kim
incheon-kim / https-get-promisify.js
Last active March 27, 2020 08:49
How to do GET request synchronously in node.js (http/https)
const https = require("https")
const httpsGetSync = (url) => {
return new Promise((resolve, reject) => {
let req = https.get(url, (res)=>{
var retData = "";
res.on("data", (chunk)=>{
// do your work here.
retData += chunk;