Aksel Wester
7 innlegg
Premortem - eller hvorfor kommer prosjektet vårt til å feile?
Postmortem er et nyttig verktøy for å finne ut hvorfor noe feilet. Det er sunt og bra at vi kan lære av feilene våre så de ikke gjentar seg. Men hva om noen fortalte deg på forhånd at prosjektet ditt kom til å feile, hadde du klart å finne ut av hvorfor?
Postmortem er et nyttig verktøy for å finne ut hvorfor noe feilet. Det er sunt og bra at vi kan lære av feilene våre så de ikke gjentar seg. Men hva om noen fortalte deg på forhånd at prosjektet ditt kom til å feile, hadde du klart å finne ut av hvorfor?
Log Off and Read Some Docs
Wow! It's Christmas Eve, and elm.christmas is drawing to a close. We've published 24 articles, and I want to thank you for visiting our advent calendar, regardless of whether you've read all 24 articles, or if this is the first one you've read. This last article won't be long, as I just want to highlight a neat tool that you might not have used for your Elm project.
Wow! It's Christmas Eve, and elm.christmas is drawing to a close. We've published 24 articles, and I want to thank you for visiting our advent calendar, regardless of whether you've read all 24 articles, or if this is the first one you've read. This last article won't be long, as I just want to highlight a neat tool that you might not have used for your Elm project.
Remote Data
The Builder Pattern
Elm doesn't have a concept of required and optional arguments. Every function takes all the arguments they specify, no more, no less. But sometimes we want to be able to specify only some arguments to a function, and use default values for the rest. The builder pattern is one solution to that challenge.
Elm doesn't have a concept of required and optional arguments. Every function takes all the arguments they specify, no more, no less. But sometimes we want to be able to specify only some arguments to a function, and use default values for the rest. The builder pattern is one solution to that challenge.
Peeking Inside Lists
Working with lists in Elm is nice, but getting a sense of what’s inside a list can be tricky. In this article we will look at a techinque that allows us to get access to the elements inside a list.
Working with lists in Elm is nice, but getting a sense of what’s inside a list can be tricky. In this article we will look at a techinque that allows us to get access to the elements inside a list.