/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.enricozini.org
| | gustedt.wordpress.com
8.7 parsecs away

Travel
| | With this post I will concentrate on the here and now: how to use C's future lifesaving defer feature with existing tools and compilers.
| | sdowney.org
9.0 parsecs away

Travel
| | A Possible Technique constexpr bool g(int lhs, int rhs) { auto& op = partial_eq; return op.ne(lhs, rhs); } Compiler Explorer with Supporting Code A trait is defined as a template var...
| | cullmann.io
9.2 parsecs away

Travel
| | Since my last post about the LSP client progress in May I didn't work on that project at all I think. But the good news is, somebody else did scratch that itch on his own ;=) We have now a prototype plugin in kate.git master, see lspclient in the addons directory. It is not compiled per default, you can turn it on via: cmake -DCMAKE_INSTALL_PREFIX="your prefix" -DENABLE_LSPCLIENT=ON "kate src dir" It shares no code with my initial prototype. The author started this without knowing of my work. This might actually be not that bad, as this plugin is composed of a much smaller code base. This allows to get familiar with the code easier as with the code I copied over from Qt Creator for my initial try.
| | www.engr.mun.ca
29.0 parsecs away

Travel
| [AI summary] The text provides a detailed explanation of the precedence climbing algorithm, a method for parsing expressions with operator precedence and associativity. It outlines the algorithm's development, its relation to recursive descent parsing and Pratt parsing, and its implementation in various programming languages and compilers. The text also includes historical context, references to key papers and authors, and acknowledgments for contributions to the algorithm's development.