Using Kotlin Sequences to abstract pagination
Let's assume you need to process millions of records from some third party data source. This data source will usually provide a pagination mechanism...
Here I write mostly about software development.
Let's assume you need to process millions of records from some third party data source. This data source will usually provide a pagination mechanism...
Within a few minutes, I received a deluge of SMS updates from my internet provider about an outage in my area.
AWS Cloud Development Kit is a tool that allows you to define your AWS infrastructure in a programming language such as Typescript instead of Yaml or Json files. It currently supports TypeScript, Python, .NET, Java.
Git cherry-pick as the name implies, allows you to cherry-pick a specific commit from one branch and add it to another branch.
TailwindCSS describes itself as "utility-first CSS framework". This means that instead of giving you ready-made components like card, nav, form-group, it gives you low-level utility classes such as font-size, padding, margin. It is almost like writing inline css.