Explore >> Select a destination


You are here

blog.dornea.nu
| | alexop.dev
5.7 parsecs away

Travel
| | Discover best practices for structuring Vue projects of any size, from simple apps to complex enterprise solutions.
| | tomlinford.com
6.3 parsecs away

Travel
| | I've been working at Robinhood for a number of years since the early days and one phenomenon I've been fascinated by is the dramatic decrease in developer velocity as both the engineering organization and production systems have scaled. Here's an example inspired by real-world events building out the backend API for showing dividends in-app in 2014:
| | www.morling.dev
6.7 parsecs away

Travel
| | 27 years of age, and alive and kicking?-?The Java platform regularly comes out amongst the top contenders in rankings like the TIOBE index. In my opinion, rightly so. The language is very actively maintained and constantly improved; its underlying runtime, the Java Virtual Machine (JVM), is one of, if not the most, advanced runtime environments for managed programming languages. There is a massive eco-system of Java libraries which make it a great tool for a large number of use cases, ranging from comman...
| | nurkiewicz.com
57.0 parsecs away

Travel
| When choosing or learning a new programming language, type system should be your first question. How strict is that language when types don't really match? Will there be a conservative, slow and annoying compiler? Or maybe a fast feedback loop, often resulting in crashes at runtime? And also, is the language runtime trusting you know what you are doing, even if you don't? Or maybe it's babysitting you, making it hard to write fast, low-level code? Believe it or not, I just described static, dynamic, weak and strong typing.