Skip to content

Instantly share code, notes, and snippets.

View C0DE33301's full-sized avatar
🏠
Working from home

Amparo R. C0DE33301

🏠
Working from home
View GitHub Profile
@eclecticc
eclecticc / logo.txt
Last active October 8, 2025 02:14
Framework Logo in 24 lines of ASCII
RMMR RMMR
FRMWWWWWWMF FRMWWWWWWMRF
RMWWWWWWWWWWWWWMMWWWWWWWWWWWWWMR
MWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWR
MWWWWWWWWWWWWWMMMMMMWWWWWWWWWWWWWM
MWWWWWWWWMRF FRMWWWWWWWWM
WWWWWWMF RMWWWWWM
FMWWWWWF RWWWWWMF
FMWWWWWWM FMWWWWWMRF
FMWWWWWWWWM FWWWWWWWWWMF
@qguv
qguv / vscode-wayland.md
Last active December 23, 2025 11:43
Visual Studio Code: Enable native Wayland support

Native wayland support is now working consistently for me in VSCode, giving much better text rendering. Unfortunately, it's still hidden behind some command-line flags.

By adding some files to /usr/local/*, you can ensure that VSCode always launches with these flags.

Adding launch flags to VSCode

Assuming that the VSCode launcher is /usr/bin/code-oss (as is the case in Arch):

  1. Create /usr/local/bin/code-oss with the following content:
www.google.com
alt.aspmx.1.google.com
client.1.google.com
clients.1.google.com
gmail-smtp-mas.1.google.com
misc-anycast.1.google.com
104-cache-blicnet.google.com
119-cache-blicnet.google.com
216-239-45-10.google.com
31.google.com
@crittermike
crittermike / wget.sh
Last active January 6, 2026 13:33
Download an entire website with wget, along with assets.
# One liner
wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com
# Explained
wget \
--recursive \ # Download the whole site.
--page-requisites \ # Get all assets/elements (CSS/JS/images).
--adjust-extension \ # Save files with .html on the end.
--span-hosts \ # Include necessary assets from offsite as well.
--convert-links \ # Update links to still work in the static version.