Zangendeutsch leckt oder Autokorrektur?
- 0 Posts
- 7 Comments
Joined 1 year ago
Cake day: July 27th, 2024
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
Username@feddit.orgto Technology@lemmy.world•After seeing Wi-Fi network named “STINKY,” Navy found hidden Starlink dish on US warshipEnglish21·10 months agoApparently “STINKY” is the default StarLink SSID (Another Musk joke), so yeah…
Username@feddit.orgto Technology@lemmy.world•How AI features in smartphones are reducing their dependence on the cloud.English72·11 months agoNo do the rest.
Username@feddit.orgto Technology@lemmy.world•Epic judge says he’ll ‘tear the barriers down’ on Google’s app store monopolyEnglish131·11 months agoApple already lost in the EU and need to allow other app stores
What do you mean? rustfmt is the de facto standard and is easily run using
cargo fmt
. Most projects use it along with clippy, the standard linter.
Recently tried biome for a web project. It’s a combined linter and formatter, and it’s so good. Compatible with prettier too.
It was not randomly decided. Even before arrays as a language concept existed, you would just store objects in continuous memory.
To access you would do $addr+0, $addr+1 etc. The index had to be zero-based or you would simply waste the first address.
Then in languages like C that just got a little bit of syntactic sugar where the ‘[]’ operator is a shorthand for that offset. An array is still just a memory address (i.e. a pointer).