obosob

joined 2 years ago
MODERATOR OF
[–] [email protected] 39 points 2 years ago

It's a nonsensical statement to us programmers too.

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

A lot of people seem to not understand what a fallacy is. They think that if something is fallacious then it is necessarily false, which ironically is a fallacy in and of itself (the fallacy fallacy). All that a fallacy is is an argument that does not logically follow from the starting axioms and the conclusion. Slippery slopes are predictions, sometimes accurate ones, but it does not necessarily follow that some of a thing leads to more of that thing, thus it is a fallacy.

[–] [email protected] 3 points 2 years ago (2 children)

Most of the time it's not exactly useful and some of the positions are awkward (e.g. 8, 9, 10), counting to 31 on one hand is maybe useful.

More useful IMO is counting in base 6 and treating each hand as a single digit. i.e counting to 35 on 2 hands without awkward fingerings. Better than 10, less awkward than binary.

[–] [email protected] 37 points 2 years ago

Even with AI models that can identify that there are birds in the picture. Having it decide with accuracy that the picture is of a bird is still a hard problem.

[–] [email protected] 18 points 2 years ago

Ricardo was testing in production

[–] [email protected] 2 points 2 years ago

I didn't notice that 7,8,9 had no effect on the count. My bad.

[–] [email protected] 2 points 2 years ago

Chars are just numbers, but yeah, an enum would work fine too, sure. The only advantage with using a char for it is that there's no conversion needed for outputting them into strings so it's a little easier. Less code, very readable, etc. Though yeah, thinking about it JQKA wouldn't be numerically in the right order which could cause issues if the program did more than just implement HiLo

[–] [email protected] 9 points 2 years ago* (last edited 2 years ago) (4 children)

Yeah, just use a char for card and test

if(card < '7') count++;
else count--;

Or something, don't mix types.

[–] [email protected] 17 points 2 years ago

Any specific infringement material (by which I mean media) would only be on the user's home server. Links to content aren't what is actionable for a DMCA notice as far as I'm aware. And the DMCA does not require platforms to actively monitor or remove potentially infringing content, only to follow the takedown procedure when sent an appropriate notification. If they follow that then they are protected from liability. That's US law but IIRC the implementations in most of the rest of the world are similar if not the same. And here's the rub: even without those communities, LW will still need to have a DMCA agent and take action against content when notified because people can and will upload infringing media here on other communities.

They're not exposing themselves to additional risk by having the piracy communities unblocked. People can and will discuss piracy, in abstract terms at the very least, all over the place. And discussion of copyright infringement is not copyright infringement anyway. Any liability and risk they do hold they will still have to worry about now regardless.

[–] [email protected] 3 points 2 years ago

Pretty sure they're stone or maybe ceramic.

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

You just use three backticks to start and end a code block, it's just markdown.

e.g.

version: '3.4' 
  
services:
   vaultwarden: 
     image: vaultwarden/server:latest 
     restart: always 
     # environment: 
     #   SIGNUPS_ALLOWED: 'false' 
     #   ADMIN_TOKEN: 'your authentication token' 
     ports: 
       - '127.0.0.1:8200:80' 
     volumes: 
       - vaultwarden-data:/data/ 
...
[–] [email protected] 7 points 2 years ago (4 children)

I've not use it but this seems to support what you want. It's a bit jank looking but seems to have the desired features.

 
view more: next ›