Casting android to linux

I always wanted to cast android to my linux machine. It is especially useful in situations like watching the videos that is already on my phone in a bigger screen without really copying them over or syncing them using tools like syncthing. Oh too much to worry about. I wanted something simpler. Here is a neat tool that lets you do that the same without hassle of connecting over the network (btw you can do that too).
Read more →

Optimizing images in my website

I ran a speed test on my website recently and found my site too slow in loading images. Never thought the size or the format of the images would matter so much. Thanks to this post for giving me the idea of using our good old Imagemagik command : mogrify -resize 1024x768 -quality 85 *.jpg And then I decided to convert them to ‘webp’ and finally stripping the metadata to further decrease the file size.
Read more →

Ditch spotify and try this

Ditch spotify and try this
Ever got frustrated by that Spotify ad that pops up every now and then!. Me too and there is away out. Take your all music and listen to them ad free wherever you go with this little beast called Navidrome. It’s an opensource player that is loaded with all features that you will ever need. Never spend an other dime for stupid subscriptions. The only requirement is that you must have a server of some sort either online or the local home server.
Read more →

Listen to radio from command line

Listen to radio from command line
Here is a simple bash script that let you listen to internet radio stations all without leaving the convenience of your terminal. Prereqisites # The script works with dmenu so you need to have it installed. Uses Mpv to play the audio Steps # Download script by running wget https://github.com/Nandu-Chandran/.scripts/blob/master/radio.sh Then move it to your user bin by mv radio.sh ~/.local/bin Finally chmod +x radio.sh to give permissions. Radio urls are copied from online radio sites.
Read more →