Skip to content
This repository was archived by the owner on Oct 16, 2019. It is now read-only.

Commit 3c3cfa5

Browse files
committed
Fill out issue 102
1 parent 55b3e7d commit 3c3cfa5

File tree

1 file changed

+44
-20
lines changed

1 file changed

+44
-20
lines changed

content/issues/102.markdown

Lines changed: 44 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,45 @@ Open an issue or pull request [on GitHub](https://github.com/haskellweekly/haske
99

1010
## Featured
1111

12-
undefined
13-
14-
<!--
15-
https://www.stackbuilders.com/tutorials/haskell/cloud-haskell/
16-
https://typeclasses.com/news/2018-04-a-monoid-is
17-
https://argumatronic.com/posts/2018-04-07-monad-complaints.html
18-
https://www.schoolofhaskell.com/user/griba/lazy_lists_on_strict_purescript
19-
https://www.parsonsmatt.org/2018/04/10/transforming_transformers.html
20-
https://mmhaskell.com/blog/2018/4/9/next-up-on-mmh
21-
http://blog.ploeh.dk/2018/04/09/coalescing-composite-as-a-monoid/
22-
https://whatthefunctional.wordpress.com/2018/04/09/dynamic-programming-in-haskell/
23-
https://haskell-at-work.com/episodes/2018-04-09-your-first-web-application-with-spock.html
24-
https://medium.com/@fintan.halpenny/coffee-curries-and-monads-my-journey-through-haskell-5a199bab7a3f
25-
http://vaibhavsagar.com/blog/2018/04/08/ihaskell-cocalc/index.html
26-
https://functional.works-hub.com/learn/property-based-integration-testing-using-haskell-6c25c
27-
https://www.michaelpj.com/blog/2018/04/08/catamorphic-lc-interpreter.html
28-
https://github.com/Lemmih/lhc/blob/d398017ae52e8c830ed40bfd4a2e4cd2d5eb2903/PIPELINE.md
29-
https://blog.roman-gonzalez.ca/post/172746394387/lightning-fast-ci-for-haskell-projects
30-
-->
12+
- [Using Cloud Haskell to write a type-safe distributed chat](https://www.stackbuilders.com/tutorials/haskell/cloud-haskell/)
13+
14+
> Cloud Haskell is a set of libraries that combines the power of Haskell's type system with Erlang's style of concurrency and distributed programming.
15+
16+
- [Strictness surprises in PureScript lazy lists](https://www.schoolofhaskell.com/user/griba/lazy_lists_on_strict_purescript)
17+
18+
> It seems that strictness is playing a dirty trick here, evaluating the second cons parameter beforehand against our interest, but strict evaluation is in the nature of PureScript.
19+
20+
- [Transforming transformers](https://www.parsonsmatt.org/2018/04/10/transforming_transformers.html)
21+
22+
> There's a kind fellow named lunaris on the FPChat slack channel that shares exceptionally good advice. Unfortunately, due to the ephemeral nature of Slack, a lot of this advice is lost to history.
23+
24+
- [Dynamic programming in Haskell](https://whatthefunctional.wordpress.com/2018/04/09/dynamic-programming-in-haskell/)
25+
26+
> Attempting to program a dynamic programming algorithm in Haskell has helped me understand the fundamental principles behind dynamic programming in a way that I wasn't able to when I learned it from an imperative programming perspective.
27+
28+
- [Your first web application with Spock](https://haskell-at-work.com/episodes/2018-04-09-your-first-web-application-with-spock.html)
29+
30+
> The Spock web framework for Haskell gives you a light but complete foundation to build web servers on, be it for traditional server-side rendered applications, or APIs for single-page applications.
31+
32+
- [Coffee, curries, and monads: My journey through Haskell](https://medium.com/@fintan.halpenny/coffee-curries-and-monads-my-journey-through-haskell-5a199bab7a3f)
33+
34+
> What I am going to do is tell you a little about myself, my programming journey, and why I enjoy programming in Haskell. Hopefully it will encourage you to try it out and witness your own joy with the language.
35+
36+
- [Property based integration testing using Haskell!](https://functional.works-hub.com/learn/property-based-integration-testing-using-haskell-6c25c)
37+
38+
> This article doesn't require any special functional programming techniques and can be replicated everywhere, but using a functional programming language makes this easier.
39+
40+
- [A catamorphic lambda-calculus interpreter](https://www.michaelpj.com/blog/2018/04/08/catamorphic-lc-interpreter.html)
41+
42+
> I was playing around with `recursion-schemes`, which is pretty cool. It's very nice to be able to define interpreters like this, so my immediate thought was: can we do this for the lambda-calculus?
43+
44+
- [The monad complaint pipeline](https://argumatronic.com/posts/2018-04-07-monad-complaints.html)
45+
46+
> We are a relatively small community, but we're maybe a little chatty, maybe have a little too much free time waiting for something to compile. Hence we are engaged in near constant internecine war over build tools and the like.
47+
48+
- [Lightning fast CI for Haskell projects](https://blog.roman-gonzalez.ca/post/172746394387/lightning-fast-ci-for-haskell-projects)
49+
50+
> I've been working in a few projects at a time in Haskell for the past year, and one point that has been dragging is how much time it takes for a CI job to finish, given this, I started to experiment with other solutions to improve my build feedback loop.
3151
3252
## Jobs
3353

@@ -41,7 +61,11 @@ https://blog.roman-gonzalez.ca/post/172746394387/lightning-fast-ci-for-haskell-p
4161
4262
## In brief
4363

44-
undefined
64+
- [Coalescing composite as a monoid](http://blog.ploeh.dk/2018/04/09/coalescing-composite-as-a-monoid/)
65+
- [Function pipeline monoid](https://typeclasses.com/news/2018-04-a-monoid-is)
66+
- [How to compile Haskell to LLVM in 14 simple steps](https://github.com/Lemmih/lhc/blob/d398017ae52e8c830ed40bfd4a2e4cd2d5eb2903/PIPELINE.md)
67+
- [IHaskell on CoCalc!](http://vaibhavsagar.com/blog/2018/04/08/ihaskell-cocalc/index.html)
68+
- [Next up on MMH!](https://mmhaskell.com/blog/2018/4/9/next-up-on-mmh)
4569

4670
## Package of the week
4771

0 commit comments

Comments
 (0)