Skip to content

Instantly share code, notes, and snippets.

@swiftgaruda
swiftgaruda / settings.json
Created April 6, 2023 21:55
Visual Studio Code font config for editor with MonoLisa Variable
//-- font
"editor.fontFamily": "MonoLisa Variable",
// When lineHeight is set to zero, VS Code will figure out the
// the height automatically based on the font
"editor.lineHeight": 0,
// You can use standard CSS syntax here. To enable
// ss01 for example, you could set "'ss01' on"
"editor.fontSize": 12,
"editor.fontLigatures": "'calt' on, 'liga' on, 'ss01' on, 'ss02' on, 'ss03' on, 'ss07' on, 'ss08' on, 'ss09' on, 'ss11' on, 'ss12' on",
"editor.tokenColorCustomizations": {
@swiftgaruda
swiftgaruda / scaleway-ubuntu-tweaks.txt
Created August 21, 2021 11:14
Scaleway Ubuntu 20.04 tweaks
# List all installed snaps
snap list
# Remove preinstalled snaps
snap remove lxd
snap remove core18
snap remove snapd
# Remove snap leftovers
rm -rf ~/snap /var/cache/snapd
@swiftgaruda
swiftgaruda / 0_reuse_code.js
Last active January 18, 2016 04:32
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console