Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
Why Rails Engines ? First, let me define my problem. I want to write a rails engine for my customer, this engine is to provide several rails type features such as helpers, components etc… But, it also needs to package Read more…
Back in part 1 we identified a few imperfections in my code that I wanted to address. We have done the unwraps, done the error handling. This post addresses splitting up the api.rs into multiple files. Back in part 3 Read more…
In part 1 – we identified a few problems with my initial code. In part 2 – we addressed one of them – the removal of the unwraps. In this episode, we will sort out those pesky errors. Returning just Read more…
To see where we left off, see my previous post Point 2 in my review said that I didn’t like using all of those unwraps – I don’t want my application panicing everywhere. So, I am going to first focus Read more…
Introduction To see why I am even writing this, please see my previous blog post Today I have written my first working snippet of code which is by no means :- Finished Of any level of quality Covered by tests Read more…
Introduction I am a rubyist and have been since 2006 – I still totally love it. But, it has its weaknesses mainly around concurrency, the GIL etc… But, we are all hoping that ‘guilds’ will sort that and its coming Read more…
Today, I had the pleasure of trying to configure active storage with azure beyond its normal very restricted capability. This took a lot of debugging so I felt the need to write about it so that I remember how to Read more…
Whilst working with golang, my first project was to create a CQRS framework with event sourcing using kafka. Then, my first project to use this needed to be running 24/7 collecting statistical data from a stream of data using web Read more…
Part 3 – Making The First Test Pass In this part, we are going to make the test pass which will prove that the store can persist events. Remember that our test is a high level integration test with no Read more…