on Ok, at some point we made a big mistake. · c/programmerhumor · 4 pts · 2yThis is a Typescript type-level computation (which is Turing-complete AFAIK). However this kind of trickery is usually done for fun and to explore how much could be achieved just on the compile step.
on Something like kate advanced find/replace (regex, multiple files) which allows saving searches to use again later? · c/linux · 1 pts · 2ySomething similar to VSCode's ability to open searches in an editor? Looks like you can save and reopen them too.
on I wish writing SQL queries was more popular than ORMs · c/programming · 4 pts · 2yLINQ looks great with the query syntax: var productsByCategory = from p in dbContext.Products where p.Price < 50 group by p.Category.Id select p;
This is a Typescript type-level computation (which is Turing-complete AFAIK). However this kind of trickery is usually done for fun and to explore how much could be achieved just on the compile step.
Something similar to VSCode's ability to open searches in an editor? Looks like you can save and reopen them too.
LINQ looks great with the query syntax: