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

Commit 8f628b4

Browse files
committed
Feature some articles
1 parent ea18c2f commit 8f628b4

File tree

1 file changed

+28
-7
lines changed

1 file changed

+28
-7
lines changed

content/issues/132.markdown

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ Please take a few minutes to fill it out.
1818

1919
## Featured
2020

21+
- [GHC 8.6.2 released](https://ghc.haskell.org/trac/ghc/blog/ghc-8.6.2-released) by Ben Gamari
22+
23+
> The GHC team is very happy to announce the availability of GHC 8.6.2, a bugfix release to GHC 8.6.1. The 8.6 release fixes several regressions present in 8.6.1.
24+
2125
- [Hakyll part 1: Setup & initial customization](https://robertwpearce.com/hakyll-pt-1-setup-and-initial-customization.html) by Robert Pearce
2226

2327
> First post in a series on making & customizing a static site with Hakyll.
@@ -30,6 +34,30 @@ Please take a few minutes to fill it out.
3034

3135
> Recently, while re-reading through the Typeclassopedia I thought it would be a good exercise to map the structure of software design-patterns to the concepts found in the Haskell type class library and in functional programming in general.
3236
37+
- [Haskell at FINN.no](https://tech.finn.no/2018/10/18/haskell-at-finn-no/)
38+
39+
> Haskell is a purely functional programming language, with a powerful type system. The ability to express intent using types brings correctness, and the composition of a large program as small, independent building blocks makes it easy to reason about the code.
40+
41+
- [Haskell by example: Utopian tree](https://dev.to/supermanitu/haskell-by-example---utopian-tree-1da2)
42+
43+
> In this series we solve coding challenges from Hackerrank in Haskell in a proper, functional way. A Utopian Tree has two growth spurts every year, one in spring and one in summer.
44+
45+
- [My experience upgrading GHC, build tools, and dev tools](https://np.reddit.com/r/haskell/comments/9tpfo2/my_experience_upgrading_ghc_build_tools_and_dev/)
46+
47+
> I went through the process of setting up my environment again and wanted to document my process and the pain points I ran into.
48+
49+
- [Signal processing in Haskell](https://serokell.io/blog/2018/11/05/signal-processing)
50+
51+
> Today I would like to tell you about my work in the laboratory of the Physics Department of Moscow State University, where I study for a Master's degree.
52+
53+
- [The trouble with typed errors](https://www.parsonsmatt.org/2018/11/03/trouble_with_typed_errors.html)
54+
55+
> What we really want is: Order independence, no boilerplate, easy composition, and easy decomposition.
56+
57+
- [Waargonaut the JSONer](https://qfpl.io/posts/waargonaut-the-jsoner/)
58+
59+
> Waargonaut is a Haskell library for encoding/decoding/manipulating JSON. The design and development of which has been driven by a dissatisfaction with the current status quo of JSON libraries in Haskell.
60+
3361
## Jobs
3462

3563
- [Engineer at Mercury in San Francisco](https://np.reddit.com/r/NixOS/comments/9teh5j/mercury_is_hiring_an_engineer_san_francisco/)
@@ -63,25 +91,18 @@ Please take a few minutes to fill it out.
6391
- [Darcs Hub future](https://mail.haskell.org/pipermail/libraries/2018-November/029201.html)
6492
- [Eliminating run time errors in OCaml and Haskell](https://thealmarty.com/2018/11/06/eliminating-run-time-errors-in-ocaml-and-haskell/)
6593
- [Elm part 3: Adding effects](https://mmhaskell.com/blog/2018/11/5/elm-iii-building-a-bridge-adding-effects)
66-
- [GHC 8.6.2 released](https://ghc.haskell.org/trac/ghc/blog/ghc-8.6.2-released)
6794
- [Hacktoberfest 2018 wrap-up](https://kowainik.github.io/posts/2018-11-01-hacktoberfest-wrap-up)
68-
- [Haskell at Finn.no](https://tech.finn.no/2018/10/18/haskell-at-finn-no/)
69-
- [Haskell by example: Utopian tree](https://dev.to/supermanitu/haskell-by-example---utopian-tree-1da2)
7095
- [Haskell implementations archive](https://github.com/haskell-implementations)
7196
- [Haskell vs. Go vs. OCaml vs. ...](https://pl-rants.net/posts/haskell-vs-go-vs-ocaml-vs/)
7297
- [Hasktorch v0.0.1](https://medium.com/@stites/hasktorch-v0-0-1-28d9ab270f3f)
7398
- [How can I become comfortable with laziness in Haskell?](https://np.reddit.com/r/haskell/comments/9tm84m/how_can_i_become_comfortable_with_laziness_in/)
7499
- [Journal of Functional Programming: Call for PhD abstracts](https://www.cs.nott.ac.uk/~pszgmh/jfp-phd-abstracts.html)
75100
- [Moving towards dialogue](https://vaibhavsagar.com/blog/2018/11/03/moving-towards-dialogue/)
76-
- [My experience upgrading GHC, build tools, and dev tools](https://np.reddit.com/r/haskell/comments/9tpfo2/my_experience_upgrading_ghc_build_tools_and_dev/)
77101
- [Pandoc donation from Handshake](https://groups.google.com/d/msg/pandoc-discuss/9U8uzv5S_lw/2vHYlonzCAAJ)
78102
- [Pandoc for Italy, exploratory post](https://np.reddit.com/r/haskell/comments/9uni95/pandoc_for_italy_exploratory_post/)
79103
- [Proposal: Stack code of conduct](https://www.snoyman.com/blog/2018/11/proposal-stack-coc)
80104
- [Proving monoids with Idris](https://bor0.wordpress.com/2018/11/06/proving-monoids-with-idris/)
81-
- [Signal processing in Haskell](https://serokell.io/blog/2018/11/05/signal-processing)
82105
- [The `EventHandlers` pattern](https://medium.com/@jonathangfischoff/the-eventhandlers-pattern-9d67c3472b59)
83-
- [The trouble with typed errors](https://www.parsonsmatt.org/2018/11/03/trouble_with_typed_errors.html)
84-
- [Waargonaut the JSONer](https://qfpl.io/posts/waargonaut-the-jsoner/)
85106

86107
## Package of the week
87108

0 commit comments

Comments
 (0)