Explore >> Select a destination


You are here

golangtutorials.blogspot.com
| | usethe.computer
3.5 parsecs away

Travel
| | [AI summary] A deep technical exploration of open recursion in object-oriented programming, using C++ and Python closures to demonstrate how late binding enables frameworks.
| | krakendev.io
5.6 parsecs away

Travel
| | Subclassing can suck. There are so many ways to get it wrong and it's so easy to fall into anti-patterns when you create such a tight coupling between two classes. Most of the time, the need for subclassing can actuallybe replaced by abstraction through protocol-oriented, value-oriented, and functional programming. In fact, I may even argue that doing it that way can far outweigh the "benefits" of subclassing the majority of the time.
| | www.ardanlabs.com
4.6 parsecs away

Travel
| | Ardan Labs is trusted by small startups and Fortune 500 companies to train their engineers and develop business software solutions and applications.
| | kuruczgy.com
16.6 parsecs away

Travel
| [AI summary] The article explores the intersection of functional programming and logic through the lens of dependent types. It begins with foundational concepts like type constructors and inductive types, then delves into the Curry-Howard isomorphism, which links programs to mathematical proofs. The discussion covers how types represent propositions, functions as implications, and inductive types as proof strategies. Examples include defining logical relations like less than or equal to and equality, and demonstrating how to prove properties like universal quantification and mathematical identities. The article concludes with an overview of resources for further study in proof assistants like Coq and Idris, emphasizing the practical applications of dependent...