Skip to content

Instantly share code, notes, and snippets.

View positiveko's full-sized avatar
😇

Positive Ko positiveko

😇
  • Seoul
View GitHub Profile
@positiveko
positiveko / event-loop.md
Created November 10, 2021 16:10 — forked from jesstelford/event-loop.md
What is the JS Event Loop and Call Stack?

Regular Event Loop

This shows the execution order given JavaScript's Call Stack, Event Loop, and any asynchronous APIs provided in the JS execution environment (in this example; Web APIs in a Browser environment)


Given the code

@positiveko
positiveko / Positive Ko's GitHub Stats
Last active March 28, 2023 00:49
Positive Ko's GitHub Stats
⭐ Total Stars: 15
➕ Total Commits: 864
🔀 Total PRs: 141
🚩 Total Issues: 80
📦 Contributed to: 3
@positiveko
positiveko / I'm a night 🦉
Last active August 4, 2022 00:41
I'm an early 🐤
🌞 Morning 35 commits █▍░░░░░░░░░░░░░░░░░░░ 6.7%
🌆 Daytime 170 commits ██████▉░░░░░░░░░░░░░░ 32.8%
🌃 Evening 232 commits █████████▍░░░░░░░░░░░ 44.7%
🌙 Night 82 commits ███▎░░░░░░░░░░░░░░░░░ 15.8%
const axiosBookmark = async () => {
const sendingUrls = [
getDongBookmark(),
getLegalDongBookmark(),
getKakaoBookmark(),
getHospitalBookmark(),
];
const response = await Promise.allSettled(sendingUrls);