This file contains 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
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 |
This file contains 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
🌞 Morning 5 commits ▋░░░░░░░░░░░░░░░░░░░░ 3.0% | |
🌆 Daytime 65 commits ████████▎░░░░░░░░░░░░ 39.6% | |
🌃 Evening 55 commits ███████░░░░░░░░░░░░░░ 33.5% | |
🌙 Night 39 commits ████▉░░░░░░░░░░░░░░░░ 23.8% |
This file contains 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
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 |
This file contains 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
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; |