Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)RE
Posts
70
Comments
766
Joined
2 yr. ago
  • you can just send the money to the artist if indeed your objective is to “contribute to the artist” no NFTs required

    Yeah, people could donate directly, but some people decided to buy NFTs instead, and they wouldn't have spent the money otherwise.

    ^
    |
    This is my logic which shows that my post is not bullshit. My post is only bullshit by the "logic" that you try to introduce.

    And you don't need to be writing these long-winded paragraphs. The point stands that you're the one who brought up the argument about NFTs as means of ownership and then started arguing on the opposing side. Who are you arguing against? There is no-one on the proposing side, only the starmen you put there.

  • You're putting words in my mouth. I didn't say shit about "rights" and "respect". The guy in the original comment mentioned nothing about it either. You said that. You're bringing this idea into the conversation and then arguing against yourself. Seriously, what is your endgame here?

    I genuinely have no clue what you think I "read on a website" about NFTs. To set the record straight, my understanding of NFTs is that you have a ledger where your public key is associated with a token, and every computer participating in the ledger agrees on that. that's it. All of these ideas of "ownership" and "rights" and societal analogies is bullshit you brought into the conversation.

  • yeah exactly I still haven't heard a single explanation of what makes NFTs a "scam". People just shout that word and expect you to accept it. Seriously, which part of a consensual transaction between two well-informed parties qualifies as a "scam"?

  • bruh it's really not that difficult. Fan sends money to artist. Fan receives some magical bytes in return. Could fan have right clicked and downloaded the artwork without paying? Of course. But fan wants to support artist. Because fan likes artist's art. It's how any digital "marketplace" works, NFT or not. All this "legal system" and "ownership" and "legal registrar" nonsense you're pulling up is completely irrelevant. You're reading too much into it.

  • Perfect

  • I mean yeah like you can be a pedant about it but all in all its a statement that makes sense. Apps on both android and ios are very sandboxed, even if you go out of your way to install malware there's very limited damage it can do, barring zerodays in the sandboxing itself.

  • Convenience? The fuck are you talking about?? Have you never heard of soluble coffee? I carry a jar of soluble coffee in my backpack when I go to uni. They have those instant water boiling taps on every floor in my faculty building, I can make myself a mug just like that. Is it good? No. But certainly better than starbucks.

    But whatever, I'm not going to argue with someone who's trying to convince me that the thing I do almost every day with no issues is actually impossible.

  • It has always striked me as a rich people thing

    Fastfoods marketing themselves as luxury brand is a relatively recent trend. A decade or so ago starbacks, mcd's, etc. really were "cheap, fast, tasty". Fast food used to be a convenience for when you were on road trips and couldn't make your own food.

    All these different fastfood brands built up such a large reputation around themselves that they practically became a part of our collective conscious. At some point they realised that instead of selling food, they could sell their brand. And that's when it stopped being cheap, stopped being tasty, and generally became a "rich people" thing.

  • So I used to think that people hated on starbucks because "hurr durr real men only drink black coffee" and starbucks had extremely sugary and milky drinks that had barely any actual coffee in it. "No problem" I thought, "I like sugary drinks!". So I went to a starbucks at the shopping mall close to where I live and ordered something and it was literally just a glass of ice cubes with like three sips' worth of milk and syrup squirted into it. It genuinely felt like the barista forgot one of the ingredients or something. I thought it was a fluke but when I was at that mall at a different time I got a different iced coffee and it was the same stuff: glass full of ice cubes with a squirtling of syrup and milk. What even is the point!?

  • This comment was removed incorrectly. What exactly is the "disinformation" here? This guy was literally just giving his interpretation of what happened to me, not making any assertions about fluoride and its efficacy in general. They even affirmed that it's ANECDOTAL evidence right in their reply! Stop reading conspiracies into everything!

  • I once tried brushing my teeth with baking soda instead of toothpaste for a few weeks. From what I understand, they have about the same level of abrasiveness, so they should be about as good at scrubbing the gunk out of your teeth. The key difference is that toothpaste has fluoride in it. After a while I started having pain/irritation in my mouth and gums. It went away when I went back to toothpaste. So if anyone was looking for anecdotal evidence of fluoride being good for your teeth, there you go.

  • Yeah the dev is notorious for sneaking in irrelevant political virtue signaling bullshit. I get that they want to do good to the world, but there are so many ways to do that without alienating your users. For example, partnering up with a charity. You know. Like VIM does.

  • memes @lemmy.world
    renzev @lemmy.world

    It's almost like proprietary software is built to maximize shareholder profits above user friendliness

  • Systemd and network manager are deliberately malicious I'm with you on that one but I feel like the new kernel-specific features like capabilities and namespaces are actually pretty neat. Like, they don't even break backward compatibility. If you had a program that needs a special capability on linux and you wanted to port it to bsd, you could just make it a SUID executable. It's not like capabilities offers a new API that programs use or something. Same with namespaces. I see a lot of people complaining about docker somehow being bloat or something, but, like, it's still just linux on the inside of the container. Anything that can run in docker can run just as well outside of it. Worst-case scenario is that you have to change some environment variables from host.docker.internal to localhost. You're not being forced to use it.

  • RecyclebIn

  • Keyboards with physical F keys higher than 12 absolutely do exist tho.

    This one's ancient, but I also have a slightly less old apple wireless keyboard that goes up to F19. IIRC goes up to a theoretical maximum of F64, but don't quote me on that.

  • linuxmemes @lemmy.world
    renzev @lemmy.world

    This week on "ancient unix hacks that are still somehow a core part of linux": Setuid

    Explanation for newbies: setuid is a special permission bit that makes an executable run with the permissions of its owner rather than the user executing it. This is often used to let a user run a specific program as root without having sudo access.

    If this sounds like a security nightmare, that's because it is.

    In linux, setuid is slowly being phased out by Capabilities. An example of this is the ping command which used to need setuid in order to create raw sockets, but now just needs the cap_net_raw capability. More info: https://unix.stackexchange.com/questions/382771/why-does-ping-need-setuid-permission. Nevertheless, many linux distros still ship with setuid executables, for example passwd from the shadow-utils package.

    linuxmemes @lemmy.world
    renzev @lemmy.world

    I'd just like to interject for a moment

    Explanation for newbies: The GNU/Linux copypasta is an argument made by Richard Stallman that the operating system should be referred to as "GNU/Linux" or "GNU+Linux" because linux is just the kernel and what makes it useful are the various GNU programs and libraries like coreutils and glibc.

    Alpine Linux is a linux distribution that ships without any GNU software (though it can be installed using the package manager).

    196 @lemmy.blahaj.zone
    renzev @lemmy.world

    I donated to signal rule

    Here's to getting added to a secret government chat one day 🥂

    linuxmemes @lemmy.world
    renzev @lemmy.world

    Almost as annoying as the windows evangelists

    linuxmemes @lemmy.world
    renzev @lemmy.world

    Man I miss those classy RedHat ads from the sixties

    linuxmemes @lemmy.world
    renzev @lemmy.world

    You just gotta think different

    Lemmy Shitpost @lemmy.world
    renzev @lemmy.world

    Working below minimum wage to save the planet

    Lemmy Shitpost @lemmy.world
    renzev @lemmy.world

    Hate it when that happens

    Memes @lemmy.ml
    renzev @lemmy.world

    Incomprehensible irregardless of whether you speak Dutch or not

    linuxmemes @lemmy.world
    renzev @lemmy.world

    My heart goes out to shell programmers who have to support posix sh

    Explanation for newbies:

    • Shell is the programming language that you use when you open a terminal on linux or mac os. Well, actually "shell" is a family of languages with many different implementations (bash, dash, ash, zsh, ksh, fish, ....)
    • Writing programs in shell (called "shell scripts") is a harrowing experience because the language is optimized for interactive use at a terminal, not writing extensive applications
    • The two lines in the meme change the shell's behavior to be slightly less headache-inducing for the programmer:
      • set -euo pipefail is the short form of the following three commands:
        • set -e: exit on the first command that fails, rather than plowing through ignoring all errors
        • set -u: treat references to undefined variables as errors
        • set -o pipefail: If a command piped into another command fails, treat that as an error
      • export LC_ALL=C tells other programs to not do weird things depending on locale. For example, it
    Lemmy Shitpost @lemmy.world
    renzev @lemmy.world

    Wish there was a toggle for it like there is on phones

    Selfhosted @lemmy.world
    renzev @lemmy.world

    Anyone else here self-hosting on absolutely shit hardware?

    Lemmy Shitpost @lemmy.world
    renzev @lemmy.world

    I believe him on a factual level, but not on an emotional level.

    Lemmy Shitpost @lemmy.world
    renzev @lemmy.world

    Wait, my body's own heat is enough? Always has been.

    Lemmy Shitpost @lemmy.world
    renzev @lemmy.world

    Thanks for the warning I guess??

    memes @lemmy.world
    renzev @lemmy.world

    Corporations are not your Friends: A Story in Two Parts

    Fediverse @lemmy.world
    renzev @lemmy.world

    Federated social media from before it was cool

    It's funny when armchair experts insist that the fediverse won't catch on because "federation is too hard to understand" when arguably the most widespread communication system on the internet follows the same model

    memes @lemmy.world
    renzev @lemmy.world

    Federated social media from before it was cool

    Lemmy Shitpost @lemmy.world
    renzev @lemmy.world

    I'm going insane