ASN

Notes by Akhil Saji

Categories

Fast way to merge MP3 files together

This is a quick tutorial on merging mp3 files together. Like many seemingly trivial computing tasks that one would imagine are easy to perform in the year 2021 this is remarkably not easy to do. This is the fastest route I discovered and I hope it's helpful.

Requirements
1. Brew
2. MacOS

Steps
Open terminal or iTerm and run brew install -v mp3wrap id3lib ffmpeg to install all the required packages

Run mp3wrap temp.mp3 combinedme1.mp3 combineme2.mp3 ... (... can include as many mp3 files as you need to combine)

Next run ffmpeg to copy the mp3s together into a …

Read more →

The importance of VPN

The importance of having access to a VPN recently dawned on me as I noticed several of the WiFi networks I rely on (primarily at work) block access to several critical tools including e-mail, Google Drive and even certain academic websites that are likely deemed traffic hungry. One way to easily bypass this conundrum is to create your own VPN on a virtual private server of your choosing. I purchased a cheap KVM VPS at BuyVM.net starting at $2.00/month. Next, load up your favorite Linux OS (I usually opt for Debian or Ubuntu) and use the PiVPN …

Read more →

How to create a bootable Windows 10 usb stick on Mac OSX

I was recently putting together a low cost Windows 10 Machine for my dad (post on that to follow) and realized how non-trivial of a task it is to create a bootable windows 10 usb drive using a mac. (If you have a windows machine availiable, simply use the windows 10 installation media creation tool located here) After trying several methods I have put together a quick how-to guide on creating windows 10 installation media (usb) using the latest version of Mac OSX at the moment 10.15. This guide was adapted from this blog.

Format USB Drive

Open your …

Read more →

How to create a clean Windows 10 installation

Microsoft bundles fresh installations of Windows 10 with a variety of junk software including free trials and small games that most people have no intention of using. Uninstalling this mess of software even on a /fresh/ installation can be challenging. Luckily, there are some tools that can help. Below are the steps to easily uninstall this software in the fewest steps possible.

Download the Windows 10 decrapifier script and save it to your desktop as decrapify.ps1

Open powershell in administrator mode and run Set-ExecutionPolicy RemoteSigned

Now run the powershell script & "C:\Users\user\Desktop\decrapify.ps1”

Once the script …

Read more →