Ep #97 of #aroundITin256 #podcast: #Ruby: help every programmer to be productive and to be happy: https://nurkiewicz.com/2023/02/ruby.html

"I hope to see Ruby help every programmer in the world to be productive, and to enjoy programming, and to be happy." Honestly, not many programming languages were built with developer's happiness in mind. [...] Ruby is a joy to work with. It's fairly easy to learn, easy to read, yet, very powerful. Also, with the appearance of #RubyOnRails, it became insanely productive

#97: Ruby: help every programmer to be productive and to be happy

Yukihiro Matsumoto, the creator of Ruby programming language, famously said:

Around IT In 256 Seconds By Tomasz Nurkiewicz

Ep #96 of #aroundITin256 #podcast: Border Gateway Protocol: the duct tape that makes the Internet work: https://nurkiewicz.com/2023/02/bgp.html

"Border Gateway Protocol, #BGP for short, is probably the most important protocols you might have never heard of. Well, you did at least once, in October 2021. When #Facebook, #WhatsApp, #Instagram and #Messenger all went down because of BGP misconfiguration [...] So what's the big deal with BGP? First we must understand how the Internet works."

#96: Border Gateway Protocol: the duct tape that makes the Internet work

Border Gateway Protocol, BGP for short, is probably the most important protocols you might have never heard of. Well, you did at least once, in October 2021. When Facebook, WhatsApp, Instagram and Messenger all went down because of BGP misconfiguration. Or that one day back in 2008 when all YouTube traffic was accidentally routed to Pakistan. Because of BGP... misconfiguration. So what's the big deal with BGP? First we must understand how the Internet works.

Around IT In 256 Seconds By Tomasz Nurkiewicz

Ep #95 of #aroundITin256 #podcast: #SQLite: the most ubiquitous database on the planet. And beyond!: https://nurkiewicz.com/2023/01/sqlite.html

"Are you listening to this on #iPhone or #Android? It runs SQLite. Or maybe through a web browser? #Chrome, #Safari, #Firefox, #Opera and Android Browser all use SQLite underneath. Are you running #MacOS or #Windows? It's built-in [...] most automotive systems use SQLite internally. If you to listen to my podcast while coding in #PHP or #Python, they include SQLite"

#95: SQLite: the most ubiquitous database on the planet. And beyond!

SQLite is by far the most common SQL database ever deployed. Are you listening to this on iPhone or Android device? It runs SQLite. Or maybe through a web browser? Chrome, Safari, Firefox, Opera and Android Browser all use SQLite underneath. Are you running MacOS or Windows? It's built-in. Most Linux distributions have it as well.

Around IT In 256 Seconds By Tomasz Nurkiewicz

Ep #94 of #aroundITin256 #podcast: #Scala: language with academic background and huge industry adoption: https://nurkiewicz.com/2023/01/scala.html

"Scala is a programming language running on the #Java Virtual Machine. [...] The functional side of Scala supports higher-order (and higher-kinded) types. For those of you know what it means"

#94: Scala: language with academic background and huge industry adoption

Scala is a programming language running on the Java Virtual Machine. It's statically typed, and you can use it both as functional and object-oriented language. Even at the same time. The functional side of Scala supports higher-order (and higher-kinded) types. For those of you know what it means. On the other hand, object-relational features of Scala are equally strong. Including powerful trait composition, that you can somewhat compare to multiple inheritance. Combine than with great Java interoperability and no wonder why Scala became a go to language for many ex-Java developers.

Around IT In 256 Seconds By Tomasz Nurkiewicz

Ep #93 of #aroundITin256 #podcast: K-means clustering: machine learning algorithm to easily split observations into multiple buckets: https://nurkiewicz.com/2023/01/k-means.html

"K-means clustering is an algorithm for partitioning data into multiple, non-overlapping buckets. [...] To be honest, that's quite a simple task for humans. [...] However, this is not that straightforward once you can no longer rely on graphical representation. For instance, when your data points live 3-, 4- or 100-dimensional space"

#93: K-means clustering: machine learning algorithm to easily split observations into multiple buckets

K-means clustering is an algorithm for partitioning data into multiple, non-overlapping buckets. For example, if you have a bunch of points in two-dimensional space, this algorithm can easily find concentrated clusters of points. To be honest, that's quite a simple task for humans. Just plot all the points on a piece of paper and find areas with higher density. For example, most of the points are located on the top-left of the plane, some at the bottom and a few at the centre-right. However, this is not that straightforward once you can no longer rely on graphical representation. For instance, when your data points live 3-, 4- or 100-dimensional space. Turns out, this is not that uncommon. Let me clarify.

Around IT In 256 Seconds By Tomasz Nurkiewicz

Ep #92 of #aroundITin256 #podcast: #Clojure: a languages that will change the way you think about programming: https://nurkiewicz.com/92

Clojure is a dynamically, strongly typed programming language. It's a dialect of #Lisp running on the #Java Virtual Machine. Lisp is 6 decades old and has a really weird syntax. [...] In Clojure, you always put the operator (or any other function for that matter) in front. So simple addition becomes... `+ 1 2`

#92: Clojure: a languages that will change the way you think about programming

Clojure is a dynamically, strongly typed programming language. It's a dialect of _Lisp_ running on the Java Virtual Machine. Lisp is 6 decades old and has a really weird syntax. That weird syntax is called _Polish prefix notation_. Basically, in every other language you've used math operators like plus or minus are infix. It means they are placed between operands. For example, `1 + 2`. In Clojure, you always put the operator (or any other function for that matter) in front. So simple addition becomes... `+ 1 2`.

Around IT In 256 Seconds By Tomasz Nurkiewicz

Ep #91 of #aroundITin256 podcast: Asynchronous communication: loose coupling in distributed systems: https://nurkiewicz.com/91

"There are two main ways to communicate between components in your distributed system: synchronous and asynchronous. Synchronous communication is like making a phone call. The system on the other side must be present and you actively wait for a response to your every question. Examples of this style include #REST, #SOAP and #GraphQL"

#91: Asynchronous communication: loose coupling in distributed systems

There are two main ways to communicate between components in your distributed system: synchronous and asynchronous. Synchronous communication is like making a phone call. The system on the other side must be present and you actively wait for a response to your every question. Examples of this style include [REST](https://nurkiewicz.com/44), [SOAP](https://nurkiewicz.com/74) and [GraphQL](https://nurkiewicz.com/3).

Around IT In 256 Seconds By Tomasz Nurkiewicz

Ep #90 of #aroundITin256 #podcast: #Mastodon: next-generation, open source social network: https://nurkiewicz.com/90

"After many dramatic events around #Twitter lately, many people, including myself, began experimenting with Mastodon. Superficially it's an open-source clone of the former that anyone can deploy and host. However, once you look deeper, it's actually a completely different philosophy and architecture. Let's focus on how Mastodon federated network is built"

#90: Mastodon: next-generation, open source social network

After many dramatic events around Twitter lately, many people, including myself, began experimenting with Mastodon. Superficially it's an open-source clone of the former that anyone can deploy and host. However, once you look deeper, it's actually a completely different philosophy and architecture. Let's focus on how Mastodon federated network is built. To understand the difference, we'll start from scratch.

Around IT In 256 Seconds By Tomasz Nurkiewicz