Skip to content

Instantly share code, notes, and snippets.

View ernestohegi's full-sized avatar
🚀
Logic will get you from A to B. Imagination will take you everywhere. - AE

Ernesto ernestohegi

🚀
Logic will get you from A to B. Imagination will take you everywhere. - AE
View GitHub Profile
@ernestohegi
ernestohegi / settings.json
Created May 5, 2026 09:03
Disable Claude whimsical messages on your CLI
{
"spinnerVerbs": {
"mode": "replace",
"verbs": [
"Working"
]
}
}
// Testing Object.freeze().
const list = { numbers: [1, 2, 3] };
console.log('adding 4 to the unfreezed list of numbers');
list.numbers.push(4);
console.log('unfreezed', list);