- Create Win 11 install media - Boot from USB - Continue until the screen where it asks you what region you're in. Stop there, do not hit next - Shift + F10 will open a shell. Click on it. - Enter this: oobe\bypassnro and then hit Enter - This will reboot the machine. You can now continue the setup process. The difference is that, in the network options, it will let you select "I dont have a…
I decided to switch back to Linux as my main/daily OS on my desktop system. Since I had been using Solus a few years ago on my desktop system and have been using it on a spare laptop for many years, I went with that (Solus Budgie, to be precise). Things that didn't work right away: The Solus 4.8 installation/boot procedure Nvidia graphics drivers Elgato Wave 3 microphone Regarding the Solus 4.8…
I wanted to learn about ETFs and long-term investing, here are resources I found useful: Explain It To A Golden Retriever – A Review Of Global ETFs Mustachianpost - My investment portfolio The whole Mustachianpost blog is full of good information. Finanzbär Videos: Steigen Aktien (ETFs) wirklich unendlich? ETF Sparplan (Anleitung): ALLES was du wissen musst Der meistunterschätzte Hebel, um…
Had some issues with my Logitech G305 mouse recently: Every now and then, a click would register as a double-click. Seems to be a common issue with this mouse. Found this neat tool to test clicks.
How to switch to a remote branch on git: git branch -a # to list all branches git fetch git checkout -t remote/branch git branch -a # to list all branches source: https://stackoverflow.com/questions/47630950/how-can-i-switch-to-another-branch-in-git Useful rsync options: https://www.tecmint.com/rsync-local-remote-file-synchronization-commands/ Find large directories:…
Notes for myself, in case I need it again: https://sbcguides.com/install-deluge-on-raspberry-pi/ https://www.howtogeek.com/142044/how-to-turn-a-raspberry-pi-into-an-always-on-bittorrent-box/ https://forum.deluge-torrent.org/viewtopic.php?t=55339 https://forum.deluge-torrent.org/viewtopic.php?f=9&t=42887 https://github.com/ratanakvlun/deluge-ltconfig/releases
I got an invite for Amazon's new "Luna" cloud-gaming-service a few days ago. To accept the invite, I had to use a VPN-node in the US, otherwise it would tell me that Luna is not supported in my region (Europe). It seems like the region-check only occurs when signing up, not when starting game-session. So no VPN needed after signing up. When I tried to start a game in Chrome on Linux, Luna would…
Over the last few weeks, I've tried some of the different "cloud gaming" services that are available now. There are many different hosting/service models on the market today. Personally, I'm not interested in a service where I have to buy games specifically for THAT service. I am interested in a platform where I can bring the games I already own (on Steam, mostly, but possibly also Epic, GOG,…
GeForce Now is now available on Chromebooks and people quickly found a way to make it work through the Chrome browser, which means it now also works on Linux! Details here . And here's a hint that's supposed to help with mouse latency Update: The Chrome extension is no longer needed, just go to play.geforcenow.com and it just works.
Romhacks and Randomizers are what makes the world go round these days, so here we go: Zelda - A Link to the Past Randomizer Varia Randomizer ( alternative URL ) Super Metroid Randomizer Super Metroid and A Link to the Past Crossover Randomizer Super Metroid practice hacks (will ad a self-hosted permalink later) Practice hacks @ Super Metroid Wiki Also: Found a ROM-Patch-Tool that works on Linux:…
Here's my youtube-dl configuration (details about where to place the config-file below are here ). Of course you can also use any of these options in the command-line, without creating a dedicated config-file. ############################################################### # This writes the video-IDs of the videos that have been downloaded # into a file called archive.txt. Subsequent runs of…
My Most Valuable Crypto Market Insights For 2018 and Beyond - Pierre Rognion How to Start a Crypto Portfolio - Robert Leshner Online shopping in Africa doesn’t work because of this web form - David Okwii
I ran out of space on my root-partition today and was stumped for a second. This command was useful to find out where the space was being used: cd / sudo du -sh * . Then I found out Ubuntu doesn't delete old kernel images (which can take up several GBs over time) automatically, one has to do this manually. Here's how: First, run these commands to do some maintenance / cleanup: sudo apt-get…