You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ text "Unlike hand-written JavaScript, Elm code does not produce runtime exceptions in practice. Instead, Elm uses type inference to detect problems during compilation and give "
115
115
, a [href "/blog/compilers-as-assistants"][text "friendly hints"]
116
-
, text ". This way problems never make it to your users. NoRedInk has 36k lines of Elm, and after more than a year in production, it still has not produced a single runtime exception."
116
+
, text ". This way problems never make it to your users. NoRedInk has 80k+ lines of Elm, and after more than a year in production, it still has not produced a single runtime exception."
[ text "Elm has its own virtual DOM implementation, designed for simplicity and speed. All values are immutable in Elm, and "
@@ -230,26 +230,37 @@ userSection : Html msg
230
230
userSection =
231
231
section [class "home-section"]
232
232
[ h1 [][text "Featured Users"]
233
-
, p [class "home-paragraph"]
234
-
[ text "Definitely check out the links for "
235
-
, a [href "http://tech.noredink.com/post/129641182738/building-a-live-validated-signup-form-in-elm"][text "NoRedInk"]
236
-
, text ", "
237
-
, a [href "http://www.gizra.com/content/thinking-choosing-elm/"][text "Gizra"]
238
-
, text ", and "
239
-
, a [href "http://futurice.com/blog/elm-in-the-real-world"][text "Futurice"]
240
-
, text " to learn more about how and why they are using Elm. If you want to join them and use Elm at work, definitely follow "
241
-
, a [href "/blog/how-to-use-elm-at-work"][text "this advice"]
242
-
, text " and do it gradually. Elm is all about reducing risk, even in adoption!"
233
+
, div [ class "featured-user"]
234
+
[ div [ class "quote"]
235
+
[ p [][ text "We’ve had zero run-time failures, the filesize is ridiculously small, and it runs faster than anything else in our code base. We’ve also had fewer bugs... "]
236
+
, p [][ text "To sum it up, our manager has mandated that all new code be written in Elm."]
237
+
]
238
+
, div [ class "attribution"]
239
+
[ div [ class "attribution-author"]
240
+
[ p [][ text "Jeff Schomay"]
241
+
, p [][ a [ href "https://www.pivotaltracker.com/blog/Elm-pivotal-tracker/"][ text "PivotalTracker Blog"]]
0 commit comments