I suspect there’s more people who speak Python fluently than Esperanto. So that comparison sits very wrong with me. The rest was funny :)
Esperanto always struck me as more perl-like with each part of speech having its own suffix like perl has $ for scalars, @ for arrays, and % for hashes. Though perl is probably more like a bunch of pidgins…
Yeah, I was about to say.
Perl 5 is like Esperanto: borrowed neat features from many languages, somehow kinda vaguely making a bit of sense. Enjoyed some popularity back in the day but is kind of niche nowadays.
PHP is like Volapük: same deal, but without the linguistic competence and failing miserably at being consistent.
Raku (Perl 6) is like Esperanto reformation efforts: Noble and interesting scholarly pursuits, with dozens of fans around the multiverse.
Esperanto’s equivalent would probably be Haskell.
Python is probably more like Spanish. Very easy basics, but then people from different regions of where it’s has spread out barely understand each other
It’s probably a similar learning speed
Is this post sane-washing Russia? What’s left about Russia under Putin? Overall funny, though
It’s a post by the lemmy dev, so yeah that’s a given
the root of all modern languages
the whole universe used to speak it
uhhhhhhhhhhhhhhhhhhhh
P.S: the closest thing to that is Egyptian, but not the language, the Alphabet (the Symbols, not a literal alphabet). Tons of alphabets are descended from Egyptian, including, but not limited to: Greek (and by Proxy Latin, Cyrillic, Georgian, Armenian, Armenian and Armenian (I just noticed this, I’m leaving it in because it’s funny)), Arabic (and by proxy- I won’t list all that), Hebrew, and Aramaic (and by proxy all Indian languages but one, as well as Tibetan, Phags-pa mongol (and by proxy exactly 5 letters of Hangul), Thai, Lao, Sundanese, and Javanese). There’s a lot of dead languages that used scripts derived from Egyptian too but I didn’t mention them because I’d be here all day listing stuff like Sogdian or Norse Runes.
BASIC: Am I a joke to you?
Ahem… Assembly is tired of being forgotten
Assembly is like phonetic script.
section .data msg1 db "Those copper ingots were of terrible quality.",0 msg2 db "My servant was also treated very badly!",0
Phoenician wants a word.
Also descended from Egyptian. Forgot to add them though. They’re the link between Egyptian and Greek. and Egyptian and Aramaic
The whole (Mediterranean) universe.
I’m pretty sure these alphabets cover almost the entire globe
East Asia and it’s Chinese-derived alphabets being the big exception. The New World would be too, if it weren’t for barbarians in upturned helmets burning all the codices. I suppose Canada’s North is pretty dependent on indigenous syllabics, which were invented whole-cloth in the modern era.
I was referring to the Latin as per OP, though. And even then “used to” is doing a lot of the work, thanks to the Islamic empire conquering the Middle East and North Africa and converting it to Arabic. And maybe Greek prevailing in the East, but I’m guessing it would be hard to put an end date on Latin in the Byzantine empire.
Why is everyone down on Rust? Seriously. I don’t know it but I’ve considered learning it and it appeals to me and people literally scoff when I mention it. Saw it referred to as a meme language on Lemmy, which is built in Rust. What am I missing?
Butthurt C devs don’t want it replacing their language.
as guy who likes c: think rust is a good and cool idea
I think rust has good ideas and may even become the default systems language in the mid-term. I find it irritating that there is a very vocal subset of rust proponents that tend to insist that every project in every language needs to be rewritten in rust immediately. I suspect that is also why other people are down on rust.
That makes sense! Thanks for your insight
I think ppl just got pissed with the fanboys unironically asking to RIIR everything. The language itself is comfy AF, tho
Imo it’s bc it’s the new kid on the block. Yes it’s 10 years old but barely becoming common use in production and government mandates are only speeding that up. In actuality it’s a great language and has been hyped for a few years by people who actually use it. Python went through the same thing in the 2010s where devs really tried clowning on it, now it’s used everywhere.
Good to know, I’ve only been a dev since 2019 so I appreciate the long view
For me “The Critical Flaw” of rust is its compiler. And requirent of 12 GB of disk space to compile just the frontend of compiler. Even GCC will all frontends(C, C++, Ada, Fortran, Modula-2, JIT) requires less space.
But joke is probably about “rewrite in rust” culture.
Wow that’s enormous. I’ll have to learn more about that. Thanks for the info!
that’s because Rust is more modern and in modern days we don’t rly have hard disk limitation, also it’s probably because the compiler tells you the solution to most problems
and in modern days we don’t rly have hard disk limitation
well if you are a corporation, that’s true. Otherwise, not much
I mean c’mon, every pc that can compile rust in a reasonable time has at least 20gb of storage
yeah but I don’t want to use up 20 GB just for a single project. It’s not like my hard drive is 80% free. more like 10% free, even though it’s large, because I’m using it and I’m already selective on what I’m doing on it
Maybe someone ought to rewrite rust in C.
I don’t think many ppl are down on rust… it’s won developer’s most favorite to use for like 5+ years now in a row on stackoverflow.
i think it’s mainly people being cranky and set in their ways. they got used to working around all the footguns/bad design decisions of the C/C++ specifications and really don’t want to feel like it was all for nothing. they’re comfortable with C/C++, and rust is new and uncomfortable. i think for some people, being a C/C++ developer is also a big part of their identity, and it might be uncomfortable to let that go.
i also think there’s a historical precedent for this kind of thing: when a new way of doing things emerges, many of the people who grew up doing it the old way get upset about it and refuse to accept that the new way might be an improvement.
Some rust proponents having this attitude is probably part of the problem.
Is Rust as close to the metal as C? Seems like there would still be a need for C. I could see Rust replacing Java as something that’s so ceremonial and verbose, but from my limited perspective as a sometimes java dev, having only the most glancing experience with C, it seems like C would be hard to replace because of what it is. Buy I honestly don’t know much about Rust either, I just think JS is so finicky and unpredictable whereas web assembly seems extremely fast and stable.
Rust can create native binaries but I wouldn’t call it close to the metal like C. It’s certainly possible to bootstrap from assembly to Rust but, unlike C, every operation doesn’t have a direct analog to an assembly operation. For example Rust needs to be able to dynamically allocate memory for all of its syntax to be intact.
For example Rust needs to be able to dynamically allocate memory for all of its syntax to be intact.
Hmm, you got an example of what you mean?
Rust can be used without allocations, as is for example commonly done with embedded.
That does mean, you can’t use dynamically sized types, likeString
,Vec
andPathBuf
, but I wouldn’t consider those part of the syntax, they’re rather in the std lib…So you’re right that this is a bit arbitrary because the line between the standard lib and the language is blurry, but someone writing Rust is going to expect Vec to work, it doesn’t even require an extra “use” to get it.
Perhaps a better core example would be operator overloading (or really any place using traits). When looking at “a + b” in Rust you have to be aware that, depending on the types involved, that could mean anything.
Anyway, I love Rust, it just doesn’t have the 1:1 relationship with the assembly output that C basically still has.
Thank you for the explanation.
I mean, the simple proof is that Rust has been growing by leaps and bounds in the embedded world, which is the closest to bare metal you get. It’s also being used in the Linux kernel and Windows, and there are several projects building new kernels in pure Rust. So yeah, it’s safe to say that it’s as close to the metal as C.
Also, the comparison to Java is understandable if you’ve only been exposed to Rust by the memes, but it doesn’t hold up in practice. Rust has a lot more syntax than C (although that’s not saying much), but it’s one of the most expressive languages on the market today.
It’s slightly less close to the metal as C. Array bounds checks are always going to cost you something, for example. However, if you look at the speed of numeric computation in C, Rust, and Go, they’re all in the same order of magnitude performance compared to things like Python or JavaScript (not including things like PyPi, which is C with extra steps).
Wow thanks so much for breaking that down for me! The discussions I’ve been having here and the information devs are sharing is really kicking me off the fence about learning Rust
Eh, I’d still go for it. I find the Rust compiler tends to amplify my impostor syndrome–it tells you all the ways you are objectively being stupid. I know that’s not really selling it, but it’s doing that stuff for a reason. I’m especially hopeful that it becomes the standard way to do things with microcontrollers; that’s about the only place I write C/C++ at all.
Noted!
It’s like a good C++ that is actually able to replace it. There are lots of places where a good C++ is useful. Like everything that needs low latency and low resource usage.
But it’s not an easy language, so (I’m guessing) people who see everyone loving it but are unable to learn it start to suffer some sort of cognitive dissonance. If it’s too difficult for me to learn, that must be its fault, not mine.
Cause it’s a C++ replacement when said audience never asked for one. It’s great but it’s still waaaayy too early, people need to slowly get comfortable with it.
I finally found the real reason why I like java: I‘m german
I don’t get why I don’t like Rust then
You will, comrade.
Do you like Russian, tho? Some Russians I’ve encountered did find it overcomplicated at times… Но в целом понимаю: мне норм заходит энглиш, а жабаскрипт вообще мимо
вообще мимо
Please help, я это не понимаю.
Basically translates to “despite me liking English, js is not my cup of tea”. “Вообще мимо” can also be more literally translated as “a complete miss”, but I’m not entirely sure if it’s used that way
Ah! That makes sense. I wasn’t expecting мимо to act like a noun in this way. Большое спасибо.
Yeah, I think it’s a beautiful and expressive language. I also do like Java, though.
I also love Java, especially all the goodies added in 17. I’m not German though… 🤔
Maybe you‘d have fun learning german then ;)
You are now. Herzlichen Glückwunsch.
Have you ever tried kotlin?
Swabian here. I like C#. Guess that fits.
That’s the reason I’m deeply offended. I’m german too. 😉
I’m also German, and our beautiful language being compared to java feels like an insult to me.
Strength in diversity, I guess
PHP is Russian. Used to be huge, caused lots of problems, now slowly dwindling away. Its supporters keep saying how it’s still better than the competition.
True, but only because it actually is. Except weirdos who saw php code 20 years ago say it sucks.
In Soviet Russia memory manages you!
I can confidently tell you that no one who actually knows Latin would ever say French is “Latin with fancy rules.”
…which ironically makes for a perfect parallel with “C/C++”
C++ is pig latin
I just have some high school Latin from long ago, but if you parse “fancy” as “ornamental at the expense of utility”, then I think it’s a fair description.
That’s a good point. I parsed “fancy” as “more intricate” and was immediately affronted ;) I like your take on it.
Btw, your username just gave me a good belly laugh
It’s a cool meme but I have many many disagreements.
Rust is esperanto because its only actually used by a small group of nerds,
python is russian because everything made in it is unreliable.
Python is Spanish; a ton of people learned a bit in school and never picked it back up again. Places that speak it natively all have their own conventions because, even though the native languages were replaced by colonizers, a lot of the native languages patterns remained in place. Most places that speak it are super welcoming and stoked that you’re trying to learn.
Haskell is Esperanto. The difference being that Rust is actually catching on.
Rust is used more Ethan you think
It fits, English and JavaScript are both three languages in a trench coat.
Well latin isn’t the root of all modern languages
Yes, but “Proto Indo-European” doesn’t exactly roll off the tongue. /s
Exactly. Nobody knows how the tongue was involved in h2.
Dravidian?
As a python developer, I’ll accept the shower joke in stride. But who are these Esperanto speakers you’re shitting on?
It’s just Shatner, isn’t it? Except even he doesn’t really speak it even though he was in a movie that was entirely Esperanto.
Perl is… forgotten entirely, despite its efforts in getting us from there to here.
Yup, checks out.
PHP also, but good riddance:-D.
Shell scripting is the ink that makes up these words - without them, you would never have seen this image.
I think Perl is closer to Esperanto - the vast majority of people will never want to learn it and the people that know it won’t stfu about how everyone should use it! And they could all use a shower!
(I kid… Mostly)
As a Perl user who won’t shut up about it… Yeah. Yeah, that’s pretty fair.
No, that’s perfect
Plus it has markers for variable types just like Esperanto has suffixes for parts of speech. Wall was a linguist, after all.
You… you shut up! Excuse me, I have to go take a shower:-) (/s, edit: to be clear on both sentences here)
Anyway you’re right (no /s) - at one point it filled in a gap between the likes of C++ and Assembly on the one hand and shell scripting (bash, awk, grep, sed, each with its own syntax and very little of that shared in common with one another) and I guess Fortran on the other. I still prefer it enormously to everything else - it’s quirky but fun:-) - though I get why a less experienced person should choose Python and stick with it, even as we all wish that there was another alternative that would work better than either.
And since I can’t resist: Perl is 8-20x faster than Python, and major websites like DuckDuckGo and booking.com use it. Sigh…I guess it’s time for that shower now:-).
I guess assembler is sumerien then, only still written and understood? And cobol or fortran? Linear a and b?
FORTRAN: Proto-Indo-European COBOL: Proto-Sino-Tibetic
Assembly: neuron signals
Assembly is ancient Egyptian heiroglyphs.