Golang
gopher for go programming
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 980 views