Skip to main content

Advent Of Code 2023 - Day 9

· 4 min read
James Crawford
Jactl Creator

An easy day where we had to calculate the next number for each of a given set of number series. After stumbling on a stupid mistake with an iterative approach, the recursive approach worked first time and ended up as a much nicer solution.

Advent Of Code 2023 - Day 1

· 5 min read
James Crawford
Jactl Creator

Another year has come around quickly and so another chance to have some fun solving the Advent Of Code puzzles for 2023. Once again, I will be attempting to solve these puzzles using Jactl. The version I am using is the latest version (1.3.1 as of time of writing).

Proof of Concept: 20,000 Payments per Second with Checkpoint Replication

· 8 min read
James Crawford
Jactl Creator

Jactl 1.3.0 introduces the ability to checkpoint the current execution state of a script and have it restored and resumed elsewhere after a failure. In order to test this new feature, I implemented a proof-of-concept project that simulates a payment processing system that accepts payment requests, performs some operations by interacting with multiple external systems and then returns a response.