Skip to content

Instantly share code, notes, and snippets.

View g1eny0ung's full-sized avatar
🎐
❤️💛💚💙💜🖤🤍💔

Yue Yang g1eny0ung

🎐
❤️💛💚💙💜🖤🤍💔
View GitHub Profile
@g1eny0ung
g1eny0ung / 📊 Weekly development breakdown
Last active July 22, 2024 00:25
📊 Weekly development breakdown
YAML 1 hr 23 mins ████▋░░░░░░░░░░░░░░░░ 22.2%
Markdown 1 hr 11 mins ███▉░░░░░░░░░░░░░░░░░ 18.9%
HTML 1 hr 7 mins ███▋░░░░░░░░░░░░░░░░░ 17.9%
Other 1 hr 6 mins ███▋░░░░░░░░░░░░░░░░░ 17.7%
Bash 47 mins ██▋░░░░░░░░░░░░░░░░░░ 12.6%
@joeytwiddle
joeytwiddle / async-await-forEach-alternatives.md
Last active July 22, 2024 09:05
Do not use forEach with async-await

Do not use forEach with async-await

TLDR: Use for...of instead of forEach() in asynchronous code.

For legacy browsers, use for...i or [].reduce()

To execute the promises in parallel, use Promise.all([].map(...))

The problem

@gaearon
gaearon / prepack-gentle-intro-1.md
Last active May 3, 2024 12:56
A Gentle Introduction to Prepack, Part 1

Note:

When this guide is more complete, the plan is to move it into Prepack documentation.
For now I put it out as a gist to gather initial feedback.

A Gentle Introduction to Prepack (Part 1)

If you're building JavaScript apps, you might already be familiar with some tools that compile JavaScript code to equivalent JavaScript code:

  • Babel lets you use newer JavaScript language features, and outputs equivalent code that targets older JavaScript engines.