Latest posts
My Ultimate Home Server/Workstation
Dec. 4, 2021 Misc
My Ultimate Home Server Workstation
My notes on installing Proxmox as a home-lab server
Table of Contents
Requirements
Proxmox has it all
Installation and setting up
Install gnome-desktop
Add new user for the desktop environment
Make the user a Proxmox admin
Add USB bootable devices
As a host hardware passthrough
As a host USB device passed through to the VM
Add hot pluggable USB support
Add some SPICE to the server
Install Gnome Desktop 40
I...
How to debloat / de-google Oxygen OS 10+
Sept. 21, 2020 Misc
Since finding anything on these sort of procedures is very hard, I decided to share my experience. I am not responsible for any damage to any device caused by doing the following. The Oxygen OS version I used this on was 10.0.10, other version may require extra steps.
Oxygen OS is one of the nicest skins over Android. It also supports several device-related function in Oneplus devices which many of custom roms fail to utilize due to closed source of the code that Oneplus uses to control...
Why I switched from VScode to Emacs
Dec. 7, 2019 Misc
Why I switched from VScode to Emacs
A quick comparison between VScode and Doom Emacs
Table of Contents
Intro
Shortcomings of VS code and how Emacs can fill them
Performace
Mouse or keyboard (or both)?
One thing that cannot be replaced by any extension in VS code, VIM or any other editor: Emacs' Org mode
Licensing
Shortcomings of Emacs for first-time user
Help and community
Learning curve
Integrated development environment
Final words
Intro
If...
Download all documents with a given extension in a web page using bash
June 19, 2019 Shell
Table of Contents
1. lynx
2. grep
3. wget
I used to have a python script that scrapes a given web page and downloads all the files with a given extension from the page. Today, not being able to find my script anymore, I tried to do a similar thing using bash only and interestingly, I was able to do a similar thing using a one-liner. Here is how it works:
1 lynx
Lynx is a hero of dumping web pages:
lynx -dump https://hadi.timachi.com/
2 grep
We pipe...