You’re just reaffirming that AI bros don’t understand art.
Just a dorky trans woman on the internet.
My other presences on the fediverse:
• @copygirl@fedi.anarchy.moe
• @copygirl@vt.social
You’re just reaffirming that AI bros don’t understand art.
I’ve heard some scary numbers when it comes to waste, but I don’t have a source, nor do I intend to go digging for one because I’m already depressed enough. But you addressed neither of my other grievances. In the end I’d just prefer a future where work is automated, and not creativity nor thinking. I will speak up in this small space where I might be heard, when I believe corporations are betting on getting people hooked on AI because they’ve never learned to think or bothered to create for themselves, just so they can extract massive profits.
By all means, keep investing and being interested in specialized AI, AI research and AI ethics. But stay away from generative (text/image/video) AI.
Yes.
Find a fitting meme template or create a new one. You don’t need amazing photoshop skills. Or share your idea and let someone else do it.
Don’t waste electricity and water, or legitimize generative AI to get your point across.
AI is distasteful to artists, disrespectful to our environment, and dangerous for the creativity of future generations.
The comic is giving me generative AI vibes.
A lot of the C# ecosystem is open source (thank goodness), but the official debugger isn’t, hence it only being available in the proprietary version of VSCode.
Presumably this is because a block is different from the content being removed. It simply means the servers stop communicating with each other regarding new communities, posts and comments. This could allow the instance to be unblocked and the old content to continue existing – say for example when an instance has been acting badly, but it gets fixed some time later.
Blocked instances should probably not show up in search, but if you have a direct link to an old post, perhaps this should still be available? Not being able to block a community when its instance is already blocked makes sense, and probably doesn’t matter if you mostly check for new content, but I can see it being a bother when its shows up in other situations. One could call this a bug, or an oversight, but I suppose it depends on what the intended result is.
Politicians decide things, but to actually make stuff happen, the government needs to collect taxes to pay for services that are then provided to the public. I think the idea here is to take out the middleman. You won’t solve the problem country wide, but you’ll help some people, and that’s still worth it. Work together without like-minded people locally, be an inspiration, and show that it works. I’ve only been very briefly part of an activist group (specialized in food saving), so probably best to look elsewhere for good advice on how to do this well.
Yeah, it should not be part of the text just like line numbers shouldn’t be part of the code on a code hosting site, yet it can be visible, no? Later it does recommend using to distinguish command and output. Is it now okay for a beginner to be confused about what it means?
Is providing a number of commands to use that require user input really that bad? When people start tinkering with the command line, first of all they shouldn’t trust just anything on the website blindly, which at the very least requires a basic understanding of how to enter commands, and respond to the terminal asking for input. The following “bad” example…
sudo apt update
sudo apt install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install python3.9
…is instead turned into this single command with even more confusing syntax for beginners:
sudo apt update && \
sudo apt install --yes software-properties-common && \
sudo add-apt-repository --yes ppa:deadsnakes/ppa && \
sudo apt install --yes python3.9
Sure, it’s convenient, but if you just throw blocks of code at people to run, are they really learning anything?
A better approach would be to have a quick tutorial on how to use the terminal and what the and
#
symbols mean (though they could be CSS decorators that can’t be copied), what sudo
is and warning people about running untrusted commands on their system. Then you just link to that at the top saying something along the lines of “if you’re unfamiliar with running commands, and the following seems confusing, check this quick summary”, behind a question mark icon connected to each block of commands, or similar.
Then you should also override Equals(object)
, GetHashCode
, and implement IEquatable<T>
.
Thankfully a lot of the usual boilerplate code can be avoided using a record
class or struct:
public record Person(string Name, uint Age);
Real classy of you to do the toddler thing of sticking your fingers in your ear and going “la la la I can’t hear you”. (It’ll be an honor to share a spot on your block list with these other two fellas.)
Is this not what the “active” sorting does?
The lenses don’t have to both be at the same distance to be fair.
Both banned by your instance: https://lemmy.world/instances
Could you please provide some sources for that? I’d like to know more.
First of all though, there is no such thing as a “hostile fork”. Being able to fork a project, for any reason, is the entire point of open source. And to be fair, not wanting to continue working for a for-profit company for free is a very good reason.
And yeah, when you suddenly turn a FOSS project that’s been developed with the help of a bunch of contributors, into a for-profit company, without making a big fuss about it beforehand and allow the contributors and community to weigh in, then yeah, that’s a hostile takeover of sorts, at least in my opinion. Developers gotta make money, but they could’ve done that by creating a new brand instead of taking over that of a previously completely FOSS project. Forgejo is preventing that exact thing from happening by joining Codeberg (a non-profit).
There’s been a hostile takeover at Gitea and it’s now run / owned by a for-profit company. The developers forked the project under the name Forgejo and are continuing the work under a non-profit. See also: Their introduction post and a page comparing the two projects. Feel free to look up more, since I haven’t familiarized myself with the incident all that much myself. Either way though, maybe consider using Forgejo instead of Gitea.
I don’t know how many years it’s been, but I also have been driving Arch for a while. I might not recommend it to absolute beginners, because you do need some patience and experience (such as how to effectively google), but honestly besides some mostly self-inflicted issues, I felt like I had it all around easier than users of other distros (and Windows, of course).
When you say “trans woman” you affirm that they are women, and trans is just an adjective. When you say “transwoman” it can imply that they are something different altogether, and TERFs have certainly used it as such. Like, I dunno, a carpark isn’t a park? That’s the first example that came to mind, anyway.
Something else to consider in place of or in addition to a build number could also be using the git commit hash of what you’re building. Though I would only use that for non-stable releases.
For example, stable versions of Zig look like 0.12.1
and then there’s in-development releases like 0.13.0-dev.351+64ef45eb0
. It uses semantic versioning where the “pre-release” is dev.351
, which includes an incrementing build number, and the “build metadata” is 64ef45eb0
, the commit hash it was built from. The latter allows a user to quickly look up the exact commit easily and thus know exactly what they’re using.
As that post’s title suggests, it is a recreation of this one, not the other way around. Check the post dates.