Explore >> Select a destination


You are here

andreasimonecosta.dev
| | www.vegardno.net
3.4 parsecs away

Travel
| | (This post contains some reflections on the hypothetical design of an ideal programming language...) Don't use or support the use of preproc...
| | shpota.com
3.5 parsecs away

Travel
| | I like Kotlin for its expressiveness. Its interoperability with Java allows the developer to easily use the existing Java ecosystem while enjoying a modern l...
| | www.foonathan.net
3.3 parsecs away

Travel
| | Just like regular function parameters, template parameters can also have default parameters. For class templates, this behaves mostly just like default function arguments: if you pass fewer template arguments than required, default template arguments are used to fill the remaining places. However, for function templates, it gets more complicated as template parameters for functions can be deduced by the normal function arguments. This leads to some interesting side-effects. In particular, default argumen...
| | sitr.us
57.9 parsecs away

Travel
| I am very excited about Flow, a new JavaScript type checker from Facebook. I have put some thought into what a type checker for JavaScript should do - and in my opinion Facebook gets it right. The designers of Flow took great effort to make it work well with JavaScript idioms, and with off-the-shelf JavaScript code. The key features that make that possible are type inference and path-sensitive analysis. I think that Flow has the potential to enable sweeping improvements to the code quality of countless web apps and Node apps. ...