Category Archives: Software

Windows Security Tips

Probably the most important tool is Windows Defender. Press Win+R followed by wf.msc and check all the inbound rules. Delete ones you don’t recognize – it can be difficult. Useful powershell commands: this is equivalent of ss -tpln on Linux. … Continue reading

Posted in Computers, programming, Software, Uncategorized | Leave a comment

10 Svelte Tips for a Backend Engineer

Svelte is currently my framework of choice for frontend web development. Further Reading

Posted in Computers, programming, Software | Leave a comment

letsencrypt/certbot tips

Letsencrypt uses certbot for certificate management. If your certificate is not auto renewing follow the runbook below: we see that certbot is scheduled to auto-renew I see there are failures when certbot attempted to renew the certificate in the past: … Continue reading

Posted in Computers, programming, Software | Tagged , , , , | Leave a comment

NuVoice.AI – Immortalize Your Voice

NuVoice.AI is offering a voice cloning service. You can clone your voice for free but in return grant us permission to sell your voice elsewhere and to use it in our products and services without any restrictions. This lets us … Continue reading

Posted in programming, Software | Leave a comment

Static vs. Dynamic linking in C++

3 Power Tools You Must Know on Linux to debug DLL (.so) not loading

Posted in Computers, programming, Software | Tagged | Leave a comment

Installing ImageMagick on WSL

First I just downloaded the pre-built binary as described here but trying to run it gives this: So the next step is to install FUSE [1] but still no luck: next run this [2]: after this it works:

Posted in Computers, programming, Software | Tagged , , | Leave a comment

Introducing Honeybadger.bot: Java Class Registry

What is the biggest pain point you encounter with Java development? For me, its debugging those ClassNotFound exceptions and not knowing what dependency I need to add to my pom.xml in order to use a class [1,2]. Fortunately there is … Continue reading

Posted in Computers, programming, Software | Tagged | Leave a comment

Hive, Spark and Presto

from https://www.uber.com/blog/presto While batch and ETL jobs run on Hive and Spark, near real-time interactive queries run on Presto. this is a sentiment I have seen at other places as well – use presto for adhoc, near real-time analytics. My question is: what … Continue reading

Posted in Computers, programming, Software | Tagged | Leave a comment

Lucene: Getting Started

Making some notes on how to get started with Lucene. The first step is to clone the repo. The best way to getting started is by running the demo program org.apache.lucene.demo.IndexFiles which indexes files and org.apache.lucene.demo.SearchFiles which searches files. In … Continue reading

Posted in Computers, programming, Software | Tagged | Leave a comment

ASCII art generation on Mac using FIGlet

FIGlet is a program that creates large characters out of ordinaryscreen characters These days you can use online websites like this to generate the art for you but if you want to install the program on your computer and run … Continue reading

Posted in Computers, programming, Software | Tagged | Leave a comment