|
You are here |
code.dblock.org | ||
| | | | |
cstheory-events.org
|
|
| | | | | June 24-28, 2024 Vancouver, BC http://acm-stoc.org/stoc2024/index.html STOC/TheoryFest 2024 is in Vancouver, British Columbia this year, during the week of June 24-28. The registration website is now open at http://acm-stoc.org/stoc2024/registration.html In addition to the STOC 2024 paper talks, the program features keynote talks by Michal Feldman, Jakub Pachocki, and Tim Roughgarden, and workshops on Algorithmic Problems... | |
| | | | |
techtldr.com
|
|
| | | | | With popularity of Github and many other competing offerings, it's easy to overlook how simple it is to set up (unlimited) private repos on any network connected computer. For example, I run this blog on a cheap instance of Linode, where $5 a month get's you 20Gb SSD storage. But you don't have to pay [...] | |
| | | | |
cullmann.io
|
|
| | | | | The Language Server Protocol (LSP) allows the integration of stuff like code completion, jump to definition, symbol search and more into an application without manual re-implementation for each language one wants to support. LSP doesn't fully allow an integration like KDevelop or Qt Creator do with the libclang based tooling aimed for C/C++ but on the other side offers the possibility to interface with plenty of languages without a large effort on the client side. | |
| | | | |
sookocheff.com
|
|
| | | In a purely functional language - like lambda calculus - programs are expressed as nested function calls. Repetition in such an environment requires that nesting of function calls continues until some condition is met. During the repetition, each function passes its result to the next function in the nested chain and this repetition is completed when a test for some condition passes. The repetitive behaviour I've just described is recursion: | ||