blog.skopow.skiAllocation Rate in Go and JavaGarbage Collection discussions often drift into theory: algorithms, generations, colors, phases. In practise , most real GC problems come from one simple thing: Allocation rate is too high Today we’re going to discuss how high allocation rate affec...Feb 8·3 min read
blog.skopow.skiHTTP Server in Go vs Java: The Stuff That Actually Hurts in ProductionBuilding an HTTP server is easy. Building one that survives real traffic, slow dependencies, deploys, and partial failures is where Go and Java start to diverge in interesting - and sometimes painful - ways. This article is not about frameworks, anno...Jan 18·5 min read
blog.skopow.skiConcurrency in Go vs JavaConcurrency is one of those topics that feels solved, until it breaks in production. Go gives us goroutines and channels. Java gives us executors, futures and virtual threads. Different tools, different syntax… and the same mistakes. This article is ...Dec 13, 2025·4 min read
blog.skopow.skiHow to Use RERO to Improve Developer Velocity and Feedback LoopsProblem: Slow Releases Kill Momentum There’s a lot of teams that thinks about themselves as “agile”, they do have JIRA, they do the standups, but if we look closely at their release cycle it says otherwise. They can plan sprints, push to main and the...Nov 8, 2025·3 min read
blog.skopow.skiConcurrency is not ParallelismWe - as a developers - love to talk about “running things at once” - but not everyone means the same thing. Some chase speed, others chase structure, and that’s where the confusion starts. Parallelism makes it faster. Concurrency makest it work. Par...Oct 26, 2025·3 min read