Skip to content

Instantly share code, notes, and snippets.

@Ori226
Ori226 / gist:f50fa956e1ef3dff04433e00d60d77b2
Created February 27, 2026 10:53
beauty_and_the_beast
#include "pitches.h" // Ensure you have this or the #defines from before
// --- PASTE YOUR RECORDED DATA HERE ---
int noteCount = 15;
int melody[] = {
NOTE_C4, NOTE_D4, NOTE_E4, NOTE_F4, NOTE_G4, NOTE_G4, NOTE_F4, NOTE_E4, NOTE_D4, NOTE_C4, NOTE_E4, NOTE_F4, NOTE_D4, NOTE_E4, NOTE_C4
};
int noteDelays[] = {
@Ori226
Ori226 / notebook.ipynb
Last active February 13, 2026 19:08
next_token_prediction_beyond_top_1_draft.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Ori226
Ori226 / next_token_selfcontained.ipynb
Last active February 12, 2026 15:35
9ff9f92622744658d9aa1de3348fd3ce
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Ori226
Ori226 / inspect_points.ipynb
Created March 17, 2021 07:39
interactive inspection of images Jupyter Lab with ipympl
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Ori226
Ori226 / Git Configs
Created June 9, 2017 11:32 — forked from tacsio/Git Configs
My git config
git config --global user.name "Tarcisio Coutinho"
git config --global user.email "tcs5cin@gmail.com"
git config --global color.ui true
git config --global alias.s status
git config --global alias.c checkout
git config --global alias.b branch
git config --global alias.lol log --oneline --graph --decorate