renzev

joined 1 year ago
[–] [email protected] 1 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

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.

[–] [email protected] 1 points 2 weeks ago* (last edited 2 weeks ago) (5 children)

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~~ short string of characters, 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.

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

damn those 17 downvotes are so salty it's making my monitor bezels corrode

[–] [email protected] 0 points 2 weeks ago (1 children)

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"?

[–] [email protected] 2 points 2 weeks ago (7 children)

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.

[–] [email protected] 1 points 2 weeks ago

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.

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

Gosh I really don't like this art style but it's better than whatever I can draw so whatever.

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

Huh, this person doesn't like starbucks

They must be autistic

Peak .world behavior right there

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

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.

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

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.

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

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!?

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

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!

 
 

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.

 

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

 

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

 
 
 
 
 
 

 

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 forces seq to output numbers with a period as the decimal separator, even on systems where coma is the default decimal separator (russian, dutch, etc.).
  • The title text references "posix", which is a document that standardizes, among other things, what features a shell must have. Posix does not require a shell to implement pipefail, so if you want your script to run on as many different platforms as possible, then you cannot use that feature.

 
view more: next ›