s12

joined 2 years ago
[–] [email protected] 16 points 1 month ago

I mean, it seems Godot did make money from this, so I guess the Twitter helped.

[–] [email protected] 9 points 1 month ago

I wouldn’t say it has to be money. Just that it has to be a formal exchange. I’d say the open source donation model is more “informal”.

I guess technically businesses like Microsoft were customers; I think there was something about them paying Godot to support C#.

[–] [email protected] 30 points 1 month ago* (last edited 1 month ago) (2 children)

… since when did the project have customers lol?

[–] [email protected] 3 points 1 month ago

I think it’s the term “woke” that people considered political.

[–] [email protected] 16 points 1 month ago* (last edited 1 month ago)

I’ll share mine too.

The community manager had a meltdown and blocking everyone was a power trip and was wrong.

Apparently they did receive a large number of tweets that genuinely warranted a ban, but some innocent people got caught in the crossfire. If this is true then Godot did the right thing by responding as neutrally as they can and giving people a way to get unbanned. If it’s not, then yeah very wrong.

Additionally, the Twitter manager apparently said some unprofessional stuff on her personal. I think there was something about her requesting a shower pic from a very large controversial streamer. I feel like that sort of action would bring attention from trolls.

Also I think there was something about a discord mod saying some dehumanising things about the “anti woke” people. Even if these people were causing trouble and deserved a ban, you shouldn’t dehumanise them. That will just make them more aggressive and convince them that “woke” people are indeed some kind of adversary.

Godot’s tweet was wrong, because it used the word “woke” which immediately drives any conversation into the gutter. Doesn’t matter if you’re on the right or left, as soon as you say the word “woke” you have ruined the conversation.

I think that word is loosely defined. To the drama people “woke/wokism” seems to relate to the idea of people aggressively wanting all media to contain pro lgbt messaging. I think the official meaning relates to awareness of modern issues. “Woke” seems to be a political term, but I suppose some people feel like calling “woke” political is harmful to lgbt rights?

I think inviting people to present their “wokot” is fine, but it probably shouldn’t be done from an official account.

It is good that Godot explicitly supports LGBT+ people. They should be welcome. The community CoC should make this explicit, and it does. A tweet to reaffirm this is fine, a cringe joke born from the dredges of Twitter is less fine.

Hard agree! Strongly agree!

Godot’s “revenge forks” are amusing and will not go anywhere. Someone might collect some donations before grifting into the night though. None of this has any effect on Godot’s technical suitability for creating a game.

Agreed. Give it a year or two. Possibly sooner. It’ll be somewhat interesting if they do go somewhere and contribute something, although I doubt that will happen.

Regardless of what happened and how it will turn out. If Godot increased their budget, even if it was in an unprofessional way, I guess this is an entirely positive thing for people who aren’t on those proprietary social platforms.

[–] [email protected] 3 points 1 month ago

Oh. Ok. Thank you.

[–] [email protected] 12 points 1 month ago (9 children)

Fortunately the reactionary backlash seems to be having the opposite effect

That’s good I suppose.

I don’t care what happens on Twitter. Just so long as the codebase isn’t negatively affected.

I have been seeing some drama YouTubers, who are clearly blowing this out of proportion, talk a lot about this. One thing they’ve been saying that concerns me however, is that apparently there have been people getting banned from help forums and even the GitHub for criticism.

My understanding is that “woke” is a loosely defined political term, so I think requesting Godot be kept free from politics in response to this stuff isn’t something that should require a ban.

Perhaps there were people going too far and getting rightfully banned and some innocent people got caught in the crossfire?

There shouldn’t be any way the MIT license can discriminate between “woke” and “anti-woke”. Godot can be used by everyone. This is just making the drama people lose their credibility. Regardless of what the devs views on this situation are, I could never expect them to come to a decision on this issue so quickly. Let alone act on it. Their main priority should be the code, not the community. Unofficial communities can pop up on their own and self govern.

[–] [email protected] 3 points 1 month ago* (last edited 1 month ago)

I think the Twitter manager is lgbt or something and wanted to promote lgbt representation. They used the term “woke” in an official tweet where they intended to achieve this.

My understanding is that “woke” is a poorly defined political term.

People apparently asked for the engine to not get political and a lot of people got banned simply for criticising the tweet. I don’t see anything particularly wrong with the tweet, nor with a lot of the criticism that apparently happened. Banning people for criticism seems very unprofessional though.

Perhaps the Twitter manager took it as people calling the existence of lgbt political? Perhaps there was a large number of troublemakers who had to get banned and some innocent people criticising the tweet got caught in the crossfire? Perhaps the Twitter manager really was acting maliciously? I don’t know what happened.
Edit: It seems it was the second one.

Apparently sponsors got banned and stopped their support, and developers got banned from the GitHub.
I don’t care about twitter drama as I don’t use twitter, I just hope that this doesn’t affect the codebase.

I’ve seen a lot of drama channels on YouTube talk about this, but I haven’t seen anything from the YouTubers who I trust to talk about FOSS yet. From what I gather, there doesn’t seem to have been any major problems yet. It just seems to be things getting blown out of proportion. People make money from clicks and engagement. Fear and rage generates clicks.

[–] [email protected] 6 points 1 month ago

Condolences…

I hope you were able to recover.

[–] [email protected] 1 points 1 month ago
 

I’m just curious about which is the most efficient way of doing this kind of node enumiration:

for i in something():
    o=[var1,var2,var3,varN][i]
    o.new()
    o.do_something_based_on_number_of_loops()
    add_child(o)

or

for i in something():
    match i:
        0:
            o=var1
            o.new()
            o.do_something_based_on_number_of_loops()
            add_child(o)
        1:
            o=var2
            o.new()
            o.do_something_based_on_number_of_loops()
            add_child(o)
        2:
            o=var3
            o.new()
            o.do_something_based_on_number_of_loops()
            add_child(o)
        N-1:
            o=varN
            o.new()
            o.do_something_based_on_number_of_loops()
            add_child(o)

or

var items = [var1,var2,var3,varN]
for i in something():
    o=items[i]
    o.new()
    o.do_something_based_on_number_of_loops()
    add_child(o)

Or is there a more efficient way of doing it?

Edit: Sorry if that wasn't clear. Is it better to constantly get something from an "unstored list", store the list in a variable, or not use a list and use a match statement instead? Do they have any advantages/disadvantages that make them better in certain situations?

 

Ah. It's still called cake day over here.
Wasn’t sure if it had to be called something different on Lemmy.

 

I want to install Debian over an existing Debian install with an existing home partition in an encrypted lvm (to upgrade to testing), and I have been practising in a vm.

After trying to follow the advice on https://www.blakehartshorn.com/installing-debian-on-existing-encrypted-lvm/, I successfully reached the end of the installation, but when I try to boot into my system, I get the error(s) shown in the attached screenshot.

Any idea what I did wrong/need to do?

Edit: "sgx: There are zero EPC sections" is something that displayes when booting successfully into a machine that works too.

 

In PowerPoint, you can just select everything, then right-click -> save as image, and it saves whatever you have selected rather than the whole slide. There doesn't seem to be a way to do that in Impress, but I realised you could copy-paste into Gimp and that would copy the objects as an image, so I've been making memes that way.

 

I'd known I had Asperger's practically all my life, but it wasn't until much later that I'd heard it be called "a disability" and I took a lot of offence to it. It looks like this was actually the first meme I ever made.

 
 
view more: ‹ prev next ›