|
You are here |
danielpecos.com | ||
| | | | |
donsbot.com
|
|
| | | | | A common misconception from non-Haskellers is that Haskell, when compiled, pays an ongoing penalty for supporting laziness by default. The idea is that in a lazy language, every expression would suspend to a heap-allocated, garbage collected, thunk. Even if you were to use the variable immediately. That sounds scarily expensive. In the real world however,... | |
| | | | |
coornail.net
|
|
| | | | | A recent Hacker News thread got me to revisit my dotfiles repository and reflect on the tools I've been using for the past 10+ years. Technologies like the cloud and docker came, but surprisingly nothing major has changed in these years. | |
| | | | |
ashishvegaraju.com
|
|
| | | | | In my last article about Functional domain modeling, I explored the expressiveness of F# in modeling a domain. I fell in love with the simplicity and expressiveness of the language. In this article I will attempt to explore function purity in F#. In F#, functions are first class citizens because it allows to pass function as an argument to other function, return a function or assign function to a variable. Initially I found it a bit hard to wrap my head around the concept of treating functions as first class citizens. In fact one of the biggest challenge for me was surprisingly not the weird syntax of F#, but to think in terms of functions. | |
| | | | |
wweb.dev
|
|
| | | In this post, I will show how to set up debugging for Javascript in VS Code for Node.js and for React in Firefox or Chrome... | ||