pixelscript

joined 1 year ago
[–] [email protected] 6 points 8 months ago (1 children)

Sure. Which is why I would only make this distinction in a place where I can reasonably expect people to know better. Like, perhaps, a niche community on an experimental social media platform dedicated to programming.

[–] [email protected] 0 points 8 months ago (2 children)

This is a tremendous amount of cope. Implying there are Lemmy users just lining up to contribute PRs if only it wasn't written in Rust. Give me a break!

If someone was competent enough to author code that's fit to pull into a project like Lemmy, they're more than capable of translating those skills to Rust. No language seeing modern significant use is so esoteric that a reasonably seasoned developer couldn't make something competent in it within a week of starting to learn its syntax. Maybe a day, even, if the language you are trying to learn is highly similar to one you already know.

[–] [email protected] 41 points 8 months ago (11 children)

The bar for me is whether the language describes an executable program that has state and control flow.

You could perhaps be generous and describe the DOM as a (write-only) state and the parser as a control flow. I don't, personally.

HTML is just a data container format to me. Belongs with the likes of XML, JSON, JPG, PNG, GIF, MP3, MOV, etc.

The umbrella term I'd use for all of these is "coding". That's the skill of understanding structured languages and format specifications, and understanding how you can and can't piece things together to make something coherent. This is a critical requisite skill to programming. But programming is more.

Programming is the art of juggling of state and control flow in clever ways to trick funny rocks into computing something you don't know. It doesn't need to be general purpose, but I would argue it indeed needs to have a purpose. It has to be something more than just a pile of declarations you know from the outset. Otherwise it's just structured data.

[–] [email protected] 2 points 8 months ago (2 children)

Maybe you do know, but in case you don't, the "convenience fee" is (usually) just the price the vendor has to pay to process a credit card transaction. Because in order to accept credit cards as payment in the first place, they have to pay the credit card network for the privilege.

Providing the exact same service to you is more expensive for them based entirely on the method you use to pay. You bet they're going to pass that extra expense onto you. The alternative is raising their service charge to eat the cost and screwing over people who pay with check or cash. Which is what most retail stores tend to do.

Though, I agree, I'd rather they just do the fucking math and charge a rate that covers their operating expenses. It's shouldn't be my problem to pay their itemized expenses. Just know that if they did so, we'll be charged the same total either way.

It's a similar argument with tipping culture. "Oh, you have to tip, employees rely on it to make ends meet!" Sure, but why is that my problem? If the business can't create a business model that properly pays for the expenses it needs to function, they should go out of business. Raise prices. I'll pay the same as the tip, fine, just stop playing these frivilous smoke and mirror games with my bill.

[–] [email protected] 2 points 8 months ago (1 children)

Particularly in politics and news communities, it indicates a "here is what predicts will happen" article. They're not all shit by default, but I'm generally not interested in speculation pieces. I only want to know what actions concretely happened, not what some guy anticipates may happen.

[–] [email protected] 8 points 8 months ago (3 children)

oh cool. now I can block every trash news article that includes phrases like "blasts", "slams", "says", "should", "could", "might", and "need to".

[–] [email protected] 9 points 8 months ago

Xenoblade Chronicles

[–] [email protected] 4 points 8 months ago

I got one as a hand-me-down from my father's office when they replaced all their chairs. It's pretty well worn and the upholstery is rather frumpy these days, but the bones of the thing are still good.

I remember talking about desk chairs with a friend group and on a lark I thought I'd read off the model on it to demonstrate how unassuming this no-name chair I thought I had was. So I actually said something akin to, "Yeah, it's just some chair from some company called Herman Miller, whoever that is," and everyone was aghast. They had to explain to me what Herman Miller actually is, and I was very embarrassed for having accidentally humble bragged about it.

[–] [email protected] 17 points 8 months ago

This is almost word for word what I said in another friend group today. Protecting individuals is literally why LLCs exist. It's what "LLC" stands for.

Nintendo Hyper Beam'd them into oblivion but they got a Substitute up first. The defense strategy was smart. The strategy that put them in the position of needing to use the defense strategy was idiotic, yes, but the defense was smart.

Short of Nintendo doing nothing at all, this is probably the best outcome that could have realistically happened.

[–] [email protected] 1 points 8 months ago

I like KeePassXC because it's written in C and is thus cross platform, while KeePass is written in C# and relies on Windows UI libraries. You can run KeePass on Linux (and I did without usability issue for years) but it will look god awful.

I won't knock plugins, everyone has weird use cases, but I don't know what people need KeePass to do that it doesn't already do out of the box. I've certainly never felt the need for any.

[–] [email protected] 9 points 8 months ago (1 children)

There are really only three licenses you should ever consider when making a new project in earnest: GPL if you want it to stay free forever, MIT if you don't care. Put an L in front of GPL if your project is a library. The end.

Any CC license including CC0 looks fine on paper, and they are court-tested, but anyone with a legal department won't risk dealing with one in the context of software, because CC licenses are for creative works and scientific research, not software. The main thing they're missing is a warranty release.

The Unlicense feels like an earnest attempt to fill the void that CC0 fails to fill, but it isn't a tested license. Everyone with a lawyer won't touch it with a 10 foot pole because they don't want to be the ones to find out how enforceable it really is. Besides, the only thing it gains you over the MIT is the ability to go uncredited. Which is nice feature; if people didn't want this we wouldn't have so many attempts to make a license that has it. But I feel like of all the features of a free software license one should be concerned about, explicit lack of credit is a pretty low-rung one.

Direct public domain insertion is good and effective, but is not global. Many places in the world have no formal legal system to do this (Germany is a famous example). PD dedication without a permissive fallback license makes your code completely unusable in these places. It's exactly why the CC0 and Unlicense exist in the first place.

Every single other license is either a meme license not worth the toilet paper it's written on, a weaker version of the GPL/MIT, or the GPL/MIT with extra steps.

[–] [email protected] 28 points 8 months ago

In a rather unorthodox way, yes.

Android is one of those rare examples of a Linux kernel not being paired with GNU tools. I believe Android wrote their own versions of all the tools they wanted.

The kernel is also extremely locked down by default. They very intentionally designed the OS in such a way that every facet of the kernel is kept abstracted away from you. It's about as black-boxed as you can get, to the point where the fact that it's Linux underneath is almost meaningless.

view more: ‹ prev next ›