I also enjoy “one”. There’s just a random “w” in there when you pronounce it.
Ephera
- 6 Posts
- 230 Comments
We have a concept of word inflection, which can be used to replace a lot of words that English would use to denote something being a question, ownership markers, causes and effects etc.
I don’t speak Finnish, but I believe a good example for such an inflection is how in English you can glue an -s to words to make them plural. In some other languages, you say “many word” instead, because they don’t have such an inflection.
Ephera@lemmy.mlto Open Source@lemmy.ml•Codidact - Open-Source Stackoverflow alternative.English10·10 days agoYeah, Lemmy is actually a decent software for this use-case…
(Translation: A nappy is a diaper)
Thanks, I was wondering why the side mattered for and why, at 3 AM, you need to swap a napkin.
Ephera@lemmy.mlto Open Source@lemmy.ml•GNU Taler v1.0 released and is operating in SwitzerlandEnglish3·2 months agoThere are edible talers: https://de.wikipedia.org/wiki/Schoggitaler 🙃
Ephera@lemmy.mlto Asklemmy@lemmy.ml•Getting super bored of most online/phone content, what do you do when you have a few minutes?English3·2 months agoYeah, I’ve also found that just being bombarded with information all the time tenses me up. You might think of scrolling Lemmy or similar as “idling”, but obviously your brain is still processing information when you do that.
Ephera@lemmy.mlto Open Source@lemmy.ml•Mozilla Say Google Search Deal Vital to Firefox's SurvivalEnglish3·3 months agoYeah, that is one of their attempts to get more independent from the Google money. They would need to be doing more of that, not less.
Ephera@lemmy.mlto Open Source@lemmy.ml•Mozilla Say Google Search Deal Vital to Firefox's Survival11·3 months agoThe problem isn’t the existence of forks, it’s rather how many developers are behind them. Mozilla has around 750 employees, so I’d guess maybe around 500 full-time devs work on Firefox. Tor Browser and such have significantly fewer contributors, who only do this stuff in their free time.
It’s better in some ways for now. All commercial social media platforms start out by being less bad than the competition. That’s how they attract users. When they have enough of a user base for network effects to take hold, that’s when they enshittify.
I’ve found that when you cook with lots of fresh veggies, you can mostly just dump them in and it tastes good. Again, you do want a bit of salt, but as everyone else said, you can hand out a salt shaker.
Ephera@lemmy.mlto Open Source@lemmy.ml•Is there any community on GIMP on any lemmy instance ?English161·3 months ago
Ephera@lemmy.mlto Parenting@lemmy.world•I was not prepared to be pogged at by a toy eggEnglish4·3 months agoIt’s a Twitch culture thing: https://en.wikipedia.org/wiki/PogChamp
Ephera@lemmy.mlto Technology@lemmy.ml•‘An Overwhelmingly Negative And Demoralizing Force’: What It’s Like Working For A Company That’s Forcing AI On Its Developers - AftermathEnglish7·3 months agoYeah, leaving moral reservations aside, it’s especially annoying to me, because it’s being pushed with complete disregard whether it actually helps me.
I’ve been working in a programming language for the past two years, in which I’m well-trained. Better than the statistical average that LLMs blurt out, at the very least. So, I’ll often end up correcting whatever it generates, rather than just typing out the same directly. In particular, I also find it much easier to think while typing, rather than while reviewing code, so I need pauses to think anyways. And I also just find it disrupts my concentration when the autocompletion-style LLMs keep flickering their suggestions at me.
Similarly, flavor images. So much of management is fucking excited about generative AI, because they can type shit like “wombat hanging off of a line of code” and then it slops out an image, which they can slap into their presentation and pretend it has meaning.
I don’t like those images. The AI-generated ones look terrible to me, but I did not either like them before they were AI-generated. It’s just pointless imagery, why are you showing me this?
Obviously, management can disagree with my stance, many people do, but if they want me to present shit, they need to respect that my presentation style just does not include flavor images, no matter what flavor image generator we pay for.
It is, yeah, but you can also use it to host a static webpage: https://codeberg.page/
Personally, I use it together with mdBook, so I write my texts in Markdown and then get a webpage with search and such. There’s lots of “static site generators” out there which do something similar.It’s a little tech-y for what you’re hoping to do, but you could make use of the code tooling for collaboration. People could open issues, if they just want to make a suggestion, or they could create a pull request with a concrete change.
Ephera@lemmy.mlto Asklemmy@lemmy.ml•since almost everybody I encounter here agrees that Javascript sucks, What should I learn to make good "web apps" with good performance ?English3·4 months agoYeah, I doubt WebAssembly when executed in a browser will become multi-threaded anytime soon, since JavaScript is single-threaded just as well. If you need multiple threads, you need to use web workers. Haven’t done anything with those yet, but I’d assume them to be usable from WebAssembly as well, since the whole JavaScript API seems to be accessible.
Well, and in Rust, I’m pretty sure the runtime that’s typically used for async stuff (
tokio
) will produce a compile error, if you try to enable the “multi-thread” feature flag on the WebAssembly target.
But yeah, might be more of a problem with other languages.
Ephera@lemmy.mlto Asklemmy@lemmy.ml•Why aren't computer monitors more commonly square, specifically in the workplace?English2·4 months agoLibreOffice has a way to switch to a sidebar UI. I always preferred that, because of what you describe…
Ephera@lemmy.mlto Asklemmy@lemmy.ml•since almost everybody I encounter here agrees that Javascript sucks, What should I learn to make good "web apps" with good performance ?English11·4 months agoWell, part of the problem is that web apps themselves are kind of alien on the web. The web is generally document-based. Web apps take the document format and try to turn it into something it’s not.
There’s a way to not do the JavaScript, but it doesn’t fix things being document-based and it can be argued that it makes other things worse in some respects.I’m talking about WebAssembly. Basically, you can write your web app in HTML+CSS+Rust and then the Rust part is compiled to WebAssembly, which then takes the role that JavaScript would normally take. It does not have to be Rust, lots of languages can be compiled to WebAssembly, but Rust has the most mature ecosystem for that, as far as I’m aware.
In principle, it is also possible to use WebAssembly to render directly to a pixel buffer, but that’s really rather heavyweight and not terribly responsive, so not generally done, unless you implement a game¹ or similar.
Alright, so back to the document mangling approach. There’s various frameworks available for Rust. I’ve used Leptos so far. There’s also Dioxus and Yew and probably others.Advantages:
- Don’t have to write JS.
- Can write Rust. Rust has some concepts that mesh really well with frontend dev, like the
Result
andOption
types for error handling, which you can pass directly to your rendering stack and it can show either the data or the error (or nothing). - Can use the same language in backend and frontend and therefore also get compile-time checks that the two work together.
Disadvantages:
- The ecosystem is young. You will find barely a fraction of the component libraries as you can find for JS.
- Rust also has concepts which don’t mesh well with frontend dev, like the whole memory management concept. Those frameworks bypass that or make use of it in clever ways, but things can be a bit peculiar or overly complex at times.
- WebAssembly is sent to the browser in one big blob, because it’s a compiled program. This means you get somewhat of a loading time when first loading the web app. There’s ways to mitigate that with “hydration” strategies, but yeah, still a thing.
- While JS is often minimized/uglified and therefore not readable anyways, WebAssembly makes that even more of a reality, because it is essentially assembly code that’s sent to the browser. It does still call the same APIs under the hood as JS does, so content blocking shouldn’t be affected, but yeah, can’t try to understand the code itself. This can also make debugging during development somewhat more painful.
- Well, and it’s also yet another web standard that browsers have to support. It doesn’t make browsers simpler in the sense that suckless would like.
I’ve listed a lot of disadvantages, so just to point out that, yes, to me, the advantages are absolutely worth it. But I can totally understand, if others see that differently.
¹) See, for example, Bevy and this UI example in particular.
Ephera@lemmy.mlto Asklemmy@lemmy.ml•What is the longest word in your language, and what does it mean in English?English2·4 months agoDamn, seems you’re right. For folks reading along: That’s not how that word usually works in German, but I guess, it is how it works in German legalese…
It’s a Linux concept. Basically, imagine you could have a Windows 11 PC with the Windows XP GUI or with the macOS GUI. In Linux, these kinds of different GUIs are just desktop environments, which you can install as you see fit.
Conversely, you can also have an OS without a desktop environment, which is basically what’s used on Linux server PCs.