Explore >> Select a destination


You are here

blog.vito.nyc
| | lisp-journey.gitlab.io
11.5 parsecs away

Travel
| | In 2018, I wrote a blog post and the Cookbook page on how to build Common Lisp binaries, and how to parse command-line arguments with the unix-opts library.But since then, new libraries were created an they are pretty good! They are simpler to use, and have much more features. I had a good experience with Clingon: its usage is clear, its documentation is very good, it is very flexible (it has hooks and generic functions waiting to have an :around method) and @dnaeon is not at his first great CL project.
| | www.fluentcpp.com
10.8 parsecs away

Travel
| | Variadic templates allow any number of template parameters of any type. In this article we see how to do a variadic number of parameters of the SAME type.
| | blog.knatten.org
11.4 parsecs away

Travel
| | Now and again I see people forgetting the & in range based for loops, like this: What some people seem to forget, or don't know, is that this creates a copy of the element for each iteration. Unless you actually need a copy, there is no need to perform it. And if the objects you...
| | anthonysciamanna.com
77.4 parsecs away

Travel
| I remember being introduced to functions early in my first programming classes. This introduction came with a warning that code duplication was VERY bad, ...