Today, I learned that you can pair an else clause with a loop statement such as for or while. It looks like this: for i in iterator: # do...
Rust is a low-level programming language known for its performance and safety. We'll look at why my first attempt to use std::process resulted in...
Cronify is a simple and easy-to-use utility that helps you schedule your cron jobs using Natural Language Processing (NLP). What is a cron job? A cron...
Introduction Motivations Creating notifications on real events in the world is a very common scenario for developers. Telegram Bot provides a...
Handing daylight saving time programmatically can be tricky. It could create a mini Y2K problem twice a year when done incorrectly. If you want to get...
There is only a subtle difference between reduce and fold. Fold requires an initial value, whereas reduce doesn’t need one. Reduce example: scala> (1...