- Intro
- Explain mutation vs re-assignment
- Discuss Gotchas
- Mutating a value in a list
- Array constructor
- Hash constructor
Our languages give us great tools in the form of primitives: things like integers, strings, and arrays. However, over-relying on these leads to problems. This practice even has it's own fancy code smell name: Primitive Obssession. In this video, Derek and Joël take a look at Primitive Obsession and the various abstraction tools languages provide to deal with it.
Over relying on hashes/arrays
Representing dollars/cents as an two-element array:
Compilers are powerful helpers but they can only do so much with primitives. Joël and Stephanie fix a bug by introducing domain-specific types. Learn about how these encode real-world context, what are the downsides, and how some functional programming concepts can make those downsides go away.
Previously discussed, don't depend too heavily on low-level constructs.
delay : Time -> a -> Cmd a | |
delay t x = | |
Task.perform (always x) <| Process.sleep t | |
cmd : msg -> Cmd msg | |
cmd msg = | |
Task.perform (always msg) (Task.succeed msg) | |
initSeed = 100 |
-- 0.19 | |
randomToTask : Generator a -> Task x a | |
randomToTask generator = | |
Time.now | |
|> Task.map (Tuple.first << Random.step generator << Random.initialSeed << Time.posixToMillis) | |
-- 0.18 |
We've been writing Ruby for years on lots of different projects and in many different environments. This has led to thoughtbot's Ruby style to be somewhat different to the rest of the community's. In particular, we tend to focus on a sub-set of Ruby's features. Derek and Joël some of those differences and the reasoning behind them.
Style guide: https://github.com/thoughtbot/guides
Mutation-related bugs are some of the most common in the Ruby world. Joël and German explore many of the gotchas related to mutation, how to avoid them, and discuss when mutation might not be necessary at all.
In mutation, the value of an object changes but its identity remains the same:
::
is the list prepend operator in Elm.
3 :: 2 :: 1 :: []
is equivalent to
I often write Ellies to demo an idea or to share a solution with someone on Slack. Some of them are helpful enough to share many times so I keep a reference to them here. Others are just cool so I want to save the link 😎