Just a dorky trans woman on the internet.

My other presences on the fediverse:
@[email protected]
@[email protected]

  • 0 Posts
  • 64 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle
  • color_rect.set_instance_shader_parameter should work, as long as the color_rect is unique to each instance of the card, rather than being reused. If you assigned it in the node editor you could check the “Local To Scene” checkbox. Assuming cards are defined as separate scenes you instantiate. Otherwise you could duplicate() the resource in code.

    The same would be true for color_rect.material.set_shader_parameter for the ShaderMaterial. If you could ensure it’s unique per card, it should work. However, duplicating the material might not be as ideal, especially since the other option is also available.

    A little tip: You could try print debugging with the get functions before and after you use set to see what the value was before (and notice that it might be the same as the previous set call from another card) and that it was correctly set afterwards. (Assuming I’m correct about diagnosing the problem.)

    edit: Actually, my advice is only true if color_rect was a resource, but I think it’s a node, specifically a sub-class of CanvasItem or GeometryInstance3D, so it should already be unique for each instantiated card. So without more information I’m not sure why set_instance_shader_parameter is not working.


  • copygirl@lemmy.blahaj.zonetoComic Strips@lemmy.worldReplaced
    link
    fedilink
    English
    arrow-up
    71
    arrow-down
    12
    ·
    2 months ago

    Tangentially related: Oh boi I just love AI bros coming out of nowhere defending GenAI when nobody asked for their opinion. Wish more communities / instances would take a hard anti-AI stance and just get rid of them. It’s not like anyone will make them see where they’re wrong.


  • copygirl@lemmy.blahaj.zonetoComic Strips@lemmy.worldReplaced
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    1
    ·
    2 months ago

    You see, it’s not the internet censorship tool that prevents you from speaking your mind, it’s the people that control it!

    You can dislike the tool.

    AI was built on stolen work, and will not create a generation of future artists that simply has a new tool available. It’ll create a generation of workers that create profit for the wealthy class by generating garbage until it’s somewhat presentable. Meanwhile, AI will starve out because it will run out of data to learn from.

    Generative AI is the current fad of the tech bro world and it’s what everyone clings onto because if everything goes well (for them), they can get future generations hooked and make stupid money. Meanwhile, media literacy will further decline, and with it the ability to look up anything on the internet, making it even more easy for the masses to be controlled.



  • copygirl@lemmy.blahaj.zonetoLinux@lemmy.ml[PSA] Malware distributed on the AUR
    link
    fedilink
    English
    arrow-up
    110
    arrow-down
    2
    ·
    edit-2
    2 months ago

    most of the the Arch cult forget to mention that

    The “Arch cult’s” holy book, the ArchWiki, states the following pretty clearly:

    Warning: AUR packages are user-produced content. These PKGBUILDs are completely unofficial and have not been thoroughly vetted. Any use of the provided files is at your own risk.

    Mention of one’s use of the AUR for their needs doesn’t need to come with a disclaimer.
    People who don’t read or don’t use their brain are going to keep not doing so, regardless.




  • That’s not true, it makes me more efficient!

    ChatGPT, write a thoughtful response to this article that proves that AI makes people smarter. Make it multiple paragraphs. Find a way to include Microsoft requiring all its programmers to use Copilot (or else they get fired) in a positive way.

    Also please give me a summary of your response, because I don’t want to bother reading it all.


  • Fair point, but many photos are not edited to the point of fundamentally changing them. I wouldn’t call a touched up wedding photo a “fake”.

    edit: I guess I was distracting from the point. Yes, “AI” already implies “fake”. Guess if someone were to look for “how to spot fake photos” this would help them find this video?







  • As long as you understand that your own opinion does not dictate how language ends up being used by others. Some NB people call themselves trans, others don’t. I hope you won’t go around implying that people who identify as both trans and non-binary are wrong identifying as such. That’s arguably gatekeeping, and could make some people very uncomfortable.



  • 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.



  • 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.