Software Engineering / 5 months ago Building a key-value store with CockroachDB, .Net 7.0, and Entity Framework In this article, we are going to build a simple key-value store using Entity Framework 7, .Net 7, and CockroachDB Serverless.
Software Engineering / 2 years ago Least Frequently Used (LFU) Cache Implementation In Go In this blog post, I will explain to you how to implement an in-memory least frequently used cache(LFU) in Go. The implementation has constant time complexity O(1) for Get, Set and Removing the least frequently used item from the cache when the cache is full.
Software Engineering / 3 years ago One Trick to speed up your unit tests with Laravel Don't use the base TestCase which ships with laravel out of the box. If your tests don't require Laravel specific functionality, Using PHPUnit's base TestCase is more than 4 times faster.
Software Engineering / 3 years ago How to build, run and test go2 files locally Luckily, there's a docker image with the go2go tool already installed. The idea here is to build/run/test the go2 code inside this docker container.
Software Engineering / 4 years ago How to install Datadog on Archlinux This is a step-by-step guide for installing the data dog agent on Archlinux
Software Engineering / 5 years ago PHP Test Coverage with Travis CI and Code Climate using Clover This article is a guide on how to set-up a PHP based repository on code climate such that it reports the test coverage.