Skip to content

Instantly share code, notes, and snippets.

@probonopd
probonopd / linux_fusion360.md
Last active March 30, 2025 14:05
Autodesk Fusion 360 on Linux

Autodesk Fusion 360 on Linux

In the Web Browser

Ubuntu, Fedora, openSUSE, CentOS, SUSE Linux Enterprise, Debian,... users can finally use Autodesk Fusion 360 in the Linux Browser now.

https://myhub.autodesk360.com

On Chromium 55.0.2843.0 I get NET::ERR_CERTIFICATE_TRANSPARENCY_REQUIRED.

@heroheman
heroheman / ranger-cheatsheet.md
Last active August 29, 2025 17:18
Ranger Cheatsheet

Ranger Cheatsheet

General

Shortcut Description
ranger Start Ranger
Q Quit Ranger
R Reload current directory
? Ranger Manpages / Shortcuts
@android10
android10 / archlinux-larger-font-console.md
Last active August 18, 2025 13:55
Install larger (and cooler) font on Arch Linux Console: https://wiki.archlinux.org/index.php/Linux_console#Fonts
@MiyacoGBF
MiyacoGBF / 01_NieR_FAR.md
Last active March 19, 2025 23:38
How to Install FAR, HD Texture Pack, and ReShade (GShade) for NieR:Automata on Linux
@dshoreman
dshoreman / slurp.md
Last active March 13, 2025 06:08
Swaymsg commands for listing windows and outputs

i3

Get Active Window ID

xdotool getactivewindow

Get Current Desktop ID

xdotool get_desktop_for_window "$(xdotool getactivewindow)"
@oofnikj
oofnikj / answerfile
Last active August 20, 2025 05:33
Install Docker on Termux
KEYMAPOPTS="us us"
HOSTNAMEOPTS="-n alpine"
INTERFACESOPTS="auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
hostname alpine
"
TIMEZONEOPTS="-z UTC"
@bjesus
bjesus / README.md
Last active May 22, 2025 21:25
Weather widget for waybar
@bonbombs
bonbombs / customFields.json
Last active August 19, 2025 16:35
custom streamlabs follower goal widget
{
"font_type": {
"label": "Font",
"type": "fontpicker",
"value": "Fredoka One"
},
"barBackground": {
"label": "BG Color",
"type": "colorpicker",
"value": "#43342e"
@aaronmdjones
aaronmdjones / freenode-resign-letter.txt
Created May 19, 2021 10:20
My resignation from freenode
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
My resignation from freenode staff
==================================
I joined the freenode staff in March 2019 [1].
Before I joined the staff, Freenode Ltd was sold [2] to a person named
Andrew Lee as part of a sponsorship deal. The informal terms of that
@Chattille
Chattille / auto_refresh_codelens.lua
Last active June 20, 2024 12:29
Refresh Codelens on LSP attachment in Neovim
-- trigger upon LSP attachment
vim.api.nvim_create_autocmd('User', {
pattern = 'LspAttached',
once = true,
callback = vim.lsp.codelens.refresh,
})
-- ... servers and enhanced_opts ...
for _, lsp in ipairs(servers) do