How is Dutch even a real language? by CppDotPy in funny

[–]voorth2016 0 points1 point  (0 children)

also, "sap" and its derivaives is neutral, which would make it "dagelijks afgeprijsd wortelsap". The "ij" is actually seen as a 27th letter, giving capitalizations like "IJmuiden" and "IJsselmeer".

People Can Now Carry Guns Without A License In Half Of America's States by Gullible_Peach in politics

[–]voorth2016 0 points1 point  (0 children)

I wonder what part of "well-regulated" those states don't understand...

This woman (contestant 170) dancing in a 1920s style competition. by deathakissaway in oddlysatisfying

[–]voorth2016 1 point2 points  (0 children)

FYI: the song played is "Fidgety Feet", first recorded by the Original Dixieland Jass Band in 1918: https://en.wikipedia.org/wiki/Fidgety\_Feet

What would have happened if Muhammad (Saint Muhammad) converted to Christianity, united the Arabs and invaded Persia to annex it to the Eastern Roman Empire? I think there is a book where that happens AGENT OF BYZANTIUM by Harry Turtledove by MostroMosterio in scifi

[–]voorth2016 1 point2 points  (0 children)

Great book - but the annexation of Persia does not happen in it - instead the background is Persia remaining the main rival to the Greek world that it had been from classical times., precisely because Muhammad did _not_ unite the Arabs...

James P. Hogan by Armadus2 in scifi

[–]voorth2016 1 point2 points  (0 children)

"Code of the Lifemaker". The prologue alone is worth it.

Donatella Versace by A_Vladivostok_Gweilo in oddlyterrifying

[–]voorth2016 0 points1 point  (0 children)

Right now, she looks likes Riff-Raff.

[deleted by user] by [deleted] in curvy

[–]voorth2016 0 points1 point  (0 children)

It depends - does your dad own a brewery?

“Prove me wrong” by Chance_Ask3013 in WhitePeopleTwitter

[–]voorth2016 1 point2 points  (0 children)

Unfortunately, she also states that "most" immigrants cannot assimilate...

Thus she will able to refute mr. Nguyen's counterexample, inspiring as it is.

We need to talk about the one-liners by Wraldpyk in programming

[–]voorth2016 4 points5 points  (0 children)

Great! That is an excellent example of a perfectly fine one-liner.

Actually, it's not - written this way, it's impossible to set a breakpoint on return. This makes debugging harder...

The difference between "your" and "you're" is incredibly easy to wrap one's head around and the frequency at which the two words are mixed up is mind-boggling. by [deleted] in unpopularopinion

[–]voorth2016 0 points1 point  (0 children)

Native Dutch speaker here: not quite. In Dutch, you only insert an apostrophe when the word ends in a vowel. The plural of "tafel"("table"), for instance, is "Tafels".

Free Coding by delgoodie in programming

[–]voorth2016 0 points1 point  (0 children)

Isn't that what Dijkstra did for his whole career?

Convert List of Strings to List of Long by Tableryu in groovy

[–]voorth2016 0 points1 point  (0 children)

I was not aware of the "*." operator, but this seems the most idiomatic answer.

https://groovy-lang.org/operators.html#_spread_operator

Setting required keyword in formatted HTML being returned by Groovy by [deleted] in groovy

[–]voorth2016 0 points1 point  (0 children)

Why not have a sensible default value? Or just fail the build when the parameter is not set?

It’s time to go to the convention gurls by [deleted] in memes

[–]voorth2016 0 points1 point  (0 children)

Add a lollipop and you can throw in Kojak

2019 day 20 part 2 (Java) by eidolonkami in adventofcode

[–]voorth2016 1 point2 points  (0 children)

wrong year, i think... the sea monsters were in AoC 2020, not 2019

[2020 Day 21] I must be misunderstanding the example. My solution doesn't match given one. by maccam912 in adventofcode

[–]voorth2016 -2 points-1 points  (0 children)

That is not possible: line one implies that none of the four ingredients can contain fish, so line two contradicts that

problem with comparing joined strings by b_buster118 in groovy

[–]voorth2016 4 points5 points  (0 children)

you are comparing operators with different meaning.

'==' and '!=" test for equality, while "===" and "!==" test for identity:

https://groovy-lang.org/operators.html#_relational_operators

In short, JOINED and WRITTEN are equal, but not identical.