I created a Browser extension that Enables Youtube Comments when they are disabled!

About a week ago, I wrote a blog post about how I concluded that disabling comments on Youtube videos could be oppression of free speech. My philosophy is that if you have the freedom and opportunity to express your opinions to the public, you should be open to receiving criticism and feedback. Preventing people from …

Remove large file from a git commit

I’ve done it again, super excited to work on my new pet project, I ran dd command to test my new VPS I/O Speed and created a 1-gigabyte file in my repository folder, and somehow I accidentally committed that. Unless you’re using a self-hosted git server with a large max upload, you’ll probably get an …

Parsing ndjson stream API’s with PHP

Readable Streams are API responses that are broken into small chunks and sent to the client. As the client should be able to parse the chunks of received data as they arrive the conventional JSON responses are not ideal to be used for streams. So In most cases, streamable API endpoints should send the data …