RSSAmplifier

Blog

Jx0.org

J's blog

jx0.orgRSS feed ↗25 posts

Latest posts

Win 11 local account bypass

- 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…

Solus 4.8 / Linux setup, Nvidia drivers and Elgato Wave 3

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…

ESP Ra.De. Psi (PS4, Switch) Menu Translations

I checked out some Shmups on Steam and the Switch recently and came across ESP Ra.De. Psi . The game is Japanese only, here's a useful translation .

ETF and investment reading-material

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…

Human Prompt Engineering

Human Prompt Engineering: How to talk to people like ChatGPT

Steam Game Ratings

Just putting these here for future reference: https://tornware.net/best-of-steam/ https://steamdb.info/stats/gameratings/ https://steam250.com/

Double-click checker

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.

Some useful Linux commands

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:…

How to set up a Deluge Server

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

How to make Amazon Luna work on Linux (Chrome)

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…

Comparison/Review of PC cloud gaming services

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 now working through Chrome (on Linux, too!)

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.

Super Metroid / A Link to the Past Customization/Randomization

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:…

Virtuaverse

Final Fantasy 7 Remake promo video from Japan

[ source ]

rsync over ssh // fastest options

rsync -aHxv --numeric-ids --delete --progress -e "ssh -T -c arcfour -o Compression=no -x" source_dir user@dest:dest_dir This command is almost exactly what somaddict suggested on commandlinefu.com . (Source)

Game Engines

Also: Trello / HacknPlan for management

My youtube-dl configuration / useful options

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…

Men's popular hairstyles

Found some illustrations for popular men's hairstyles here and here .

Conversion chart pints/cups/quarts/etc.

[ source ]

Awww That is so swee...

Awww That is so swee....

Some recent articles (January 2018)

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

How to mass-delete forwarders in cPanel

Here you go .

How to force Gmail to check your POP3 account as often as possible

I need Gmail to check some POP3 mailboxes as often as possible for a while, the info from this article worked great.

Ubuntu: Root filesystem full? Try deleting old kernel images

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…