(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Blazor and Htmx are unique technologies with strengths and weaknesses. In this short list, we'll discuss five reasons to use the technologies together and five reasons to avoid the combination.
ASP.NET Core, now with Blazor Server-side Rendering (SSR), is a robust backend HTML generator. You can do almost everything for UI on the server, and with Htmx, you can accomplish some commonly difficult client-side interactions with relative ease.
| #!/usr/bin/python | |
| # coding=UTF-8 | |
| """ | |
| Convert html saved from iSki tracker website to gpx format to import | |
| any application or service such QLandkarteGT, Endomondo, etc. | |
| Need to install the following packages: | |
| $ pip install pytz |
I recently came across a video (https://youtu.be/UogkQ67d0nY?t=703) that looked at a problem and compared the solutions in Scala and Haskell.
The scala solution:
def maximumDifference(nums: Array[Int]): Int =
nums.scanLeft(Int.MaxValue)(_ min _)
.tail