Skip to content

Instantly share code, notes, and snippets.

let array = [1, 2, 3, 4, 5];
let add = (x, y) => x + y;
let sum = array.reduce(add, 0);
// This will do:
// 0 + 1
// 1 + 2
// 3 + 3
// 6 + 4
// 10 + 5
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 4, 2026 01:38
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

@StevenACoffman
StevenACoffman / Homoglyphs.md
Last active April 26, 2026 12:49
Unicode Look-alikes

Unicode Character Look-Alikes

Original Letter Look-Alike(s)
a а ạ ą ä à á ą
c с ƈ ċ
d ԁ ɗ
e е ẹ ė é è
g ġ
h һ
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 3, 2026 15:07
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example