You are here |
blog.cy.md | ||
| | | |
soundstep.com
|
|
| | | | soma-template seamless dom manipulation 22 Nov 2012 | 1 min read soma-template is a web template engine. The library aims to help developers... | |
| | | |
www.foonathan.net
|
|
| | | | The size of std::array is known at compile-time given the type. Yet it only provides a regular .size() member function: template struct array { constexpr std::size_t size() const { return N; } }; This is annoying if you're writing generic code that expects some sort of compile-time sized range. | |
| | | |
danielpecos.com
|
|
| | | | Function composition is one the key features (among others) of functional programming. Programming languages that offer higher order functions as a feature can potentially use function composition. But, still, programmers need to be aware of some key concepts to successfully apply this pattern in our code. Function composition, as defined on Wikipedia, isan act or mechanism to combine simple functions to build more complicated ones. In other words, we can define new functions, equivalent to the result of... | |
| | | |
rohan.ga
|
|
| | DISCLAIMER: Let me preface this by saying my favorite language is Haskell and that I write toy languages for fun. I am a pl nerd so my opinion is valid. Also the title is like 20% bait. My secret was always that I like coding in java, in some sort of masochistic way. Everything is dead simple. Everything is so verbose you can never forget what anything is. It is like sitting down and playing a relaxing game of stardew valley. |