Andreas Zwinkau
Andreas Zwinkau
I just noticed that a feed was missing. Turns out it the RSS was invalid. Readable silently ignored the feed. For rarely updated feeds the user might never notice it....
Hype: Programming language X makes you more productive Shower: An experiment with more than 600 professional programmers shows that (apart from assembly) programming language makes no difference. Caveat: Was done...
Another dfmt dog fooding issue. ``` d class FormatVisitor { void visit() { if (unary.prefix.type == tok!"~" || unary.prefix.type == tok!"&" || unary.prefix.type == tok!"*" || unary.prefix.type == tok!"+" ||...
Applied to itself with default configuration, dfmt source code should not change. More precisely: ``` sh dfmt --inplace src/ ``` You should see no change in "git diff" which was...
Here is another tricky example, which should be unchanged: ``` d unittest { int* a; int x, y; x * y; x * *a; } ``` However, currently dfmt outputs:...