Golang
gopher for go programming
sedplus – Easier SED tool for Mac, Linux and Windows
SED is a powerful stream editor if you can get the syntax right. It was originally created in 1973 by Lee McMahon of Bell Labs as one of the first tools to support Regular Expression (RegEx) and appears in many bash scripts today. sedplus isn’t trying to replace everything that sed does, but as an alternative for [...]
Simple Free Open Source MP3 CLI Tag Editor
There are lots of mp3 tag editors out there, but I wanted a simpler cross platform solution. This cli runs on Mac, Windows and Linux and offers a minimalist quick way to make bulk changes. https://github.com/szazeski/mp3edit To just view current tags of file(s), you can pass To make a changes, you have a variety of flags that you can [...]
Dealing with False Positives of Golang Apps on Windows
Golang is a great language to build cross platform apps but if you look at the Windows executable, you may notice it has a higher chance of triggering antivirus tools with a false positive compared to Linux or Mac. Hello World Baseline So let’s take the most basic of apps. Hello World just opens a new process on the machine, makes [...]
bz2 File Compression
bz2 file compression isn’t the fastest compression but its performance MB/s and Compression ratio graphs are nearly flat compared to most other compressions. That being said, there is one graph that isn’t often shown and its the memory usage of bz2. To make those others operation in a near flat range, memory is the tradeoff. [...]
Mockgen Adding Periods to Comments
If you suddenly are getting periods adding to every mockgen comment lines, its probably because you are building it natively on your machine (mac or windows) instead of the linux docker job that normally does it. openanalytics 3008 views