Code Review Videos > Articles by: Chris

How To: Create a docker-compose File In A JetBrains Rider Project

This is one of those problems that is … well, 🤦‍♂️ face palming-ly easy 🤦‍♀️ when you see how it’s done. But I confess to spending ages trying to figure this out. And Google wasn’t much help, either. OK, so the problem is this: You want to create a new docker-compose.yaml file in your C# … Read more

Relative Dates & Times in PostgreSQL

Recently I have been doing some web scraping in Kotlin, and have now got a regularly updated set of records appearing in my database. An interesting challenge arose when the scraped data was not quite as nice to work with as the web view I was scraping from. With a little front end whizz-bangery, the … Read more

Kotlin Web Scraping Example

Whenever I pick up a new programming language, sooner or later I get comfortable enough with it to want to tackle my favourite / most common personal programming need: web scraping. Recently I have been playing with Kotlin quite a lot, and am now at the point where I have written a few simple web … Read more

Exploring Kotlin Timer timerTask

As part of my post on Kotlin Task Scheduling I had a piece of code that used Kotlin’s timerTask function that I wanted to dive deeper into, but that wasn’t the best place to do so. So, this post is going to cover that off. Here’s the code for reference: And to quickly recap at … Read more