Explore >> Select a destination


You are here

blog.janetacarr.com
| | blog.josephwilk.net
4.3 parsecs away

Travel
| | Isolating external dependencies helps make testing easier. We can focus on a specific unit of code and we can avoid slow tests calling real services ...
| | ostash.dev
2.5 parsecs away

Travel
| | Conceptually metadata is an ability for the symbol or the collection to have some additional information for the Clojure compiler. It is implemented as a map data structure and is often used to convey the type information to the compiler, documentation and compilation warnings.
| | endlessparentheses.com
4.3 parsecs away

Travel
| | The concept of a lazy-map might sounds odd at first. How do you know if a map contains an entry without resolving the whole map? But it's not the entries that are lazy, it's the values they hold. See this example from the Readme:
| | blog.kdgregory.com
25.0 parsecs away

Travel
| When I want to package a Java application in a single JAR with all of its dependencies, I normally turn to Maven's Shade plugin. This ...