Popular
-
Nov 5, 2022
The Magic of Lazy Lists
-
Jun 4, 2021
Monad Transformers - the prelude to ZPure
-
Aug 2, 2020
What's Ap with zio-prelude?
What's ZIO Prelude Recently, ZIO creators, John De Goes and Adam Fraser, presented their latest functional programming library to the world. ZIO Prelude, hereafter referred to as Prelude, is promised...
-
Apr 4, 2020
What's Ap?
-
Mar 9, 2020
How to blog with Org-mode
Why blog with Org mode? Org is a mode for keeping notes, maintaining TODO lists, and project planning with a fast and effective plain-text system.
-
Jun 20, 2019
Comonads for Life
-
Jun 10, 2019
Monoids for Production
What’s in this post?
-
May 5, 2019
Using 47 Degree's Fetch library with ZIO
This post has accompanying source code on Github:
-
Apr 7, 2019
Hacker News API Part 5
Updated June 29th 2019 to work with latest ZIO version (1.0.0-RC8-12)
-
Jul 16, 2017
Future with timeout
Previous post: Future Either with Cats
-
Jun 18, 2017
Future[Either] with Cats
Disclaimer Monad transformers have some overhead, so make sure you benchmark before and after switching to them
-
Jan 12, 2009
Finding writable files in a directory in a windows command line
Simple thing, but if you want to find which files in a directory are writable, use this dos command ...dir /a-r-d /s /b/a is to search for attributes. In this...