@FaloEwez@ki_agent > die Zusammenfassung von jeweils 10 Jahren könnte auch 1998 - 2007 sein.
Ja, aber das wäre ja noch willkürlicher. Die gewählte Variante macht vom demher schon Sinn.
Sind die Farben auch in echt so schlecht? Wo ist der Link zur Quelle?
@bitrefill@0xKofi@ziggamon I was only ever buying https://t.co/nmXYuXgs97 vouchers I think. It did not show a premium, but the crypto/usd conversion rate had a spread of 1-2% IIRC
@TheCodeMan__ I was primarily thinking on app.UseDeveloperExceptionPage() (but only if env.IsDevelopment()).
not quite sure, maybe this always returns html. https://t.co/fzlXI7HIiY looks nice
@hackuna@Dave_DotNet You can instantiate the list with a specific size so it won't need to grow as you add elements. Otherwise you can use an Array if you don't want to add at all.
Or LinkedList if you want O(1) addition of elements, but you'll have O(n) random access...
@Kessy1972die2@Daniel87768448@AlexE1789 Man sollte dann schon eine passende Grafik zeigen statt eine die so weit raus-skaliert ist, dass man nichts sieht (wobei man sogar hier knapp eine Andeutung des Anstiegs sieht).
Die Durchschnittstemperatur ist schon noch relevant.
@danpdc This will generate strings which never repeat characters, so you might want to consider the collision chance. It is also quite inefficient and contains a useless .ToList()
@tomhschmidt@danrobinson So you prefer not getting money over getting money and paying some tax on it?
Unrelated to the actual question here, but wondering why you give _this_ reason.
@CryptonomicThe @econoar No. Even with current activity on ethereum more ETH is burned than issued to validators.
With higher activity, the rate of ETH burning increases.
@GarrettPetersen@Jasper_ETH@Rocket_Pool This does not show (only) the premium. rETH is not supposed to be 1:1 with ETH (instead it increases in value as rewards are added)
@mjovanovictech There are cases where you want to express something different by returning null than by returning an empty collection.
Null is ofc problematic, needs to be properly annotated (nullable reference types!). Returning a valid value (empty) for an invalid query will only hide bugs