Skip to content

Instantly share code, notes, and snippets.

@franklinmoy3
franklinmoy3 / steam_deck_vscode_no_flatpak.md
Last active August 22, 2026 12:31
VSCode on SteamOS without Flatpak

Installing VSCode on SteamOS without Flatpak

Notes

  • SteamOS locks down basically all directories outside of the /home directory
    • Hence, installs via pacman or the AUR are disabled by default, and will be deleted after each SteamOS upgrade
  • The installation steps below will install VSCode without Flatpak
  • Some things might not work well, such as browser hooks when logging into external services and extensions

Installation Steps

@willurd
willurd / web-servers.md
Last active August 22, 2026 05:03
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000