Unless you only copy and compare you have to decode it, or implement more complicated logic for everything from searching to concatenation (which is normally just memcopy).
- 10 Posts
- 990 Comments
antonto DACH - Deutschsprachige Community für Deutschland, Österreich, Schweiz@feddit.org•Vorstoß im Bundestag: Grüne laden Union, SPD und Linke zu Fraktionsgespräch über AfD-Verbot4·3 天前Der Verfassungsschutz hat bereits das ganze Material zusammengetragen.
Aber es ist natürlich viel besser wenn jede Partei ihren einigen Antrag zur Bildung einen Gruppe zum zusammentragen des Materials beschließt. So kann das alles still im Sand verlaufen und es passiert immer noch nichts.
In 2024 we barely meet the 2021 target for emissions in the transportation sector.
Ich bin mal regelmäßig an einem vorbei gefahren und habe ihn von ca. 200 bis über 500 wachsen sehen. Als ich später vorbei geschaut habe, zeigte er etwa 50.
I’m making wraps with lentils, anyone interested?
antontoAtlanta News@yall.theatl.social•It Was Supposed to Connect Segregated Neighborhoods. Did It Gentrify Them Instead?English1·5 天前If you want to prevent gentrification, improve renter protection. Don’t complain about things getting better.
The standard xkcd on making another thing:
https://xkcd.com/927On frameworks specifically, I recommend the song:
We’re gonna build a framework,
cause we wanna use one,
but don’t wanna choose oneWe’re gonna build a framework
We didn’t like the others,
So we’ll write another
I never understood why they don’t add just a little syntactic sugar. You don’t need much to take it from a mess of brackets to something comprehensible.
It was in the original design, but not the first implementation. By the time someone got around to it, people where used to S-expressions.
I can’t comment whether learning C first improves your rust, but it certainly makes you appreciate what the rust compiler does.
Also learning rust improved my C.
If an animal gets shot with lead, survives and runs away, there is now a wounded animal or an animal carcass containing lead somewhere in the wild.
If it is wounded or freshly dead a carnivore will eat it and accumulate lead. That may be large carnivore or a smaller carnivore that later gets eaten by a bigger one. Birds tend to have stronger stomach acid that most mammals, allowing them to dissolve the lead better.
Vultures having it the worst as they will eat any carcass and have the strongest acid.
Same thing with lead shot accumulating in large birds.
Just leave them out for the vultures, they can deal with a lot of toxic shit (just not lead).
antonto Not The Onion@lemmy.world•Scientists unlock secret to thick, stable beer foams - Ars TechnicaEnglish4·10 天前only serves to make something pretty in an ad.
A photographer I know mixed a different beer in, when the one he was supposed to photograph didn’t foam properly.
He also sprayed on the condensation so he didn’t have to lug around a camping fridge
antonto Comic Strips@lemmy.world•If There Were Robots That Made the Perfect Amount of Food for Everybody14·15 天前But it need some story, some kind of conclusions, be it humor, catharsis, a lesson or something else.
It is built up like funny internet comic, but leaves the reader disappointed.
You could save 0.64 bit per char more if you actually treated you output as a binary number (using 6 bits per char) and didn’t go through the intermediary string (implicitly using base 100 at 6.64 bits per char).
This would also make your life easier by allowing bit manipulation to slice/move parts and reducing work for the processor because base 100 means integer divisions, and base 64 means bit shifts. If you want to go down the road of a “complicated” base use base 38 and get similar drawbacks as now, except only 5.25 bits per char.