Skip to content

Instantly share code, notes, and snippets.

View nicodinh's full-sized avatar
🦥
Last time I said it works? I was kidding. Try me.

Nicolas Azari nicodinh

🦥
Last time I said it works? I was kidding. Try me.
View GitHub Profile
@nicodinh
nicodinh / README.md
Created August 8, 2022 23:45
Jaqen H'ghar : when AI failed

image

@aleclarson
aleclarson / rollup-typescript.md
Last active September 14, 2025 14:31
The best Rollup config for TypeScript libraries

It's 2024. You should use tsup instead of this.


Features

🔥 Blazing fast builds
😇 CommonJS bundle
🌲 .mjs bundle
.d.ts bundle + type-checking

@bradtraversy
bradtraversy / stack.js
Created May 29, 2020 14:35
Stack data structure
class Stack {
constructor() {
this.items = []
this.count = 0
}
// Add element to top of stack
push(element) {
this.items[this.count] = element
console.log(`${element} added to ${this.count}`)
@nicodinh
nicodinh / README.md
Created May 7, 2020 21:20
Prison Break S03E08 Bios Screen

prison-break-s03e08-bios-screen

@ricealexander
ricealexander / emoji-list.md
Last active January 14, 2026 19:21 — forked from rxaviers/gist:7360908
Comprehensive list of GitHub-supported emojis
@fnky
fnky / stripe-keys-and-ids.tsv
Last active February 13, 2026 06:49
Stripe keys and IDs
Prefix Description Notes
ac_ Platform Client ID Identifier for an auth code/client id.
acct_ Account ID Identifier for an Account object.
aliacc_ Alipay Account ID Identifier for an Alipay account.
ba_ Bank Account ID Identifier for a Bank Account object.
btok_ Bank Token ID Identifier for a Bank Token object.
card_ Card ID Identifier for a Card object.
cbtxn_ Customer Balance Transaction ID Identifier for a Customer Balance Transaction object.
ch_ Charge ID Identifier for a Charge object.
cn_ Credit Note ID Identifier for a Credit Note object.
@nicodinh
nicodinh / README.md
Last active August 8, 2022 23:48
Startup S02E04 Javascript writer (java edition)

image

@bmaupin
bmaupin / free-database-hosting.md
Last active March 20, 2026 10:11
Free database hosting
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
USAGE:
morphagene_audacity.py -w <inputwavfile> -l <inputlabels> -o <outputfile>'
Used to convert Audacity labels in .txt form on .WAV files into
single 32-bit float .WAV with CUE markers within the file, directly
compatible with the Make Noise Morphagene.
@npearce
npearce / install-docker.md
Last active January 28, 2026 11:06
Amazon Linux 2 - install docker & docker-compose using 'sudo amazon-linux-extras' command

UPDATE (March 2020, thanks @ic): I don't know the exact AMI version but yum install docker now works on the latest Amazon Linux 2. The instructions below may still be relevant depending on the vintage AMI you are using.

Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/

Docker CE Install

sudo amazon-linux-extras install docker
sudo service docker start