Skip to content

Instantly share code, notes, and snippets.

View GodderE2D's full-sized avatar

GodderE2D GodderE2D

View GitHub Profile
@GodderE2D
GodderE2D / discord_official_domains.md
Created September 7, 2021 09:48
List of Discord Official Web Domains

Discord Official Web Domains

Listed below are the web domains that Discord currently own. If you see a link sending you to a domain that claims is a "Discord owned website", check if it is one of the below domain names! If it's not, assume it's a scam and report it.

Note: This is not an exhaustive list, there may be some missing domains that Discord owns, but there are no domains listed here that aren't owned by Discord.

@GodderE2D
GodderE2D / NOTICE.md
Last active November 7, 2023 02:30
What happened to [GodderE2D]#7290 Discord account as of April 27, 2022

[GodderE2D]#7290 has been officially permanently deleted, as of May 27th, 2022 at 6:50 AM AEST

New Discord account: thee2d

Learn more here: https://godder.xyz/blog/the-story-of-how-my-discord-account-got-disabled

What happened to [GodderE2D]#7290 Discord account as of April 27, 2022?

ℹ️ Please see the revision history on this gist to know when this was last edited.

@GodderE2D
GodderE2D / index.ts
Created December 1, 2022 14:32
2022 Advent of Code - Day 1 Part 2
const input = `5229
1021
2051
4766
2272
5810
4688
2324
2108
1555
@GodderE2D
GodderE2D / index.ts
Created December 1, 2022 14:29
2022 Advent of Code - Day 1 Part 1
const input = `5229
1021
2051
4766
2272
5810
4688
2324
2108
1555
@GodderE2D
GodderE2D / logger.ts
Last active February 2, 2022 03:24
TypeScript simple logger that logs to stdout, easily customisable to your needs.
/* eslint-disable no-console */
// ⚠️ The chalk dependency is required to function: "npm i chalk" or "yarn add chalk" or "pnpm add chalk"
import { stderr, stdout } from "node:process";
import EventEmitter from "node:events";
import chalk from "chalk";
import { inspect } from "node:util";
import { setImmediate } from "node:timers";
type LogType = "debug" | "info" | "warn" | "error";