learn-you-a-haskell
“Learn You a Haskell for Great Good!” by Miran Lipovača (by pvorb)
swift-async-algorithms
Async Algorithms for Swift (by apple)
learn-you-a-haskell | swift-async-algorithms | |
---|---|---|
80 | 6 | |
304 | 3,196 | |
0.7% | 1.5% | |
0.0 | 3.4 | |
over 2 years ago | 15 days ago | |
Makefile | Swift | |
- | Apache License 2.0 |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
learn-you-a-haskell
Posts with mentions or reviews of learn-you-a-haskell.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-01-05.
-
[PT-BR] Functional vs OOP: Uma análise profunda dos paradigmas de programação
Learn You a Haskell
- Learn New Skills
- Ask HN: What resources do you recommend for learning Haskell?
-
Revisiting Haskell after 10 years
The LYAH is by far my favorite book for beginners, however, it lacks exercises for you to practice, but you can still move along typing and playing with the examples shown, and it’s free to read online. It’s outdated but most of the code may still be valid with little to no changes.
- [2023 Day 09] How today felt
-
Should I Haskell or OCaml?
Learn You a Haskell For Great Good! is also a really good resource:
https://learnyouahaskell.com/
-
How late is too late to change tech stacks?
If you've never done functional, Learn You Some Erlang For Great Good was a very fun read, and I'll always love Learn You a Haskell for Great Good for showing me everything imperative languages kinda gloss over magically, as well as why I should never take a job working in Haskell!
-
So Hows the Hackathon Going?
you start that way, but don't do http://learnyouahaskell.com really?
-
I want to learn fn programming
Learn You a Haskell for Great Good!
- help i just discovered haskell 38 hours ago and i think i love it
swift-async-algorithms
Posts with mentions or reviews of swift-async-algorithms.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-08-16.
-
Swift Concurrency: Sequential Async Task Architecture
Last weekend, I started reading up on Swift Concurrency through the use of async-await, actors, etc... I really liked what I read and thought of converting my current code to use these new Swift Concurrency tools and ditch the GCD. I used continuation to convert all methods with completion handlers from the Device class to async throw methods and turned Device into an actor in order to protect some members from race conditions. Once more, I am faced with the issue of calling the async methods of the Device actor one by one (waiting for each ones completion before starting the next one). I spent a lot of time thinking on how to do this and came across a number of useful references such as this one and this one. I tried to think of ways of implementing such a channel in my controller class, to guarantee sequential execution of different tasks that require the underlying library, but I'm facing a few issues with this approach:
-
Let's do a quick poll: Async/Await vs Combine in your codebase going forward
AsyncStreams also now has the associated AsyncAlgorithms library https://github.com/apple/swift-async-algorithms which covers a lot of the Combine features (debounce, merge zip etc.)
-
XCTest: How do you test async fuctnions?
You might find the treasure trove known as Swift Async Algorithms and look at their test suite.
-
Functional Reactive Programming
https://github.com/apple/swift-async-algorithms
Requires Xcode 14, which is still in beta and cannot push to the App Store.
Also, Apple fucked their back port badly. It’s supposedly fixed now, but if you built an app that used async/await anywhere in Xcode 13.X and a user installed running iOS 12/13/up to 14.5 they’d crash on launch.
So I personally wouldn’t trust it, and instead just push to raise your iOS minimum. I’ve had no problems requiring iOS15 in my projects over 1M installs
-
Anyone know how to create a collection view using RxSwift? I can't seem to find a tutorial on how to create a basic collection view in RxSwift, was able to find ones for Table View though. Appreciate your help!
Asynchronicity is only one aspect of Functional Reactive Programming. You’re comparing single values vs. multiple values. AsyncStream is a better analog, but I’m pretty sure you still need to bring in swift-async-algorithms to have an apples-to-apples comparison.
- SwiftUI in 2022
What are some alternatives?
When comparing learn-you-a-haskell and swift-async-algorithms you can also consider the following projects:
learn4haskell - 👩🏫 👨🏫 Learn Haskell basics in 4 pull requests
book - V2 of Real World OCaml
DeepMenu
learn-you-a-haskell-notebook - Jupyter adaptation of Learn You a Haskell for Great Good!
BreadBuddy - Recipe scheduler for iOS