JVM class file format

I received Java Virtual Machine Specification approximately a week ago. I had been waiting for it three weeks that is why I started to read it immediately. Reading the other chapter of the specification, I realized that I start to understand how and why JVM works in such a way.... [Read More]
Tags: JVM Java

Stack kata. TL;DR

I look at the tests in two ways. On one hand, they are experiments. If I write a test for my program that use some third-party libraries or frameworks, I expect to see some results. They can be valid or not. These kind of tests are experiments. I write the... [Read More]
Tags: Rust TDD

A mixture of Rust and Test Driven Development

Disclaimer In my blog, I intend to outline how to practice Test Driver Development (TDD) in Rust. Future posts will contain step by step guidance of process how to write tests first and make teeny-tiny steps to implement missed functionality with simple exercises. [Read More]
Tags: Rust TDD learning