

For the last time, Python is not weakly typed. It is dynamically typed. The statement 5 + "hello"
results in a type error. Bash is weakly typed, and that same addition results in 5hello
For the last time, Python is not weakly typed. It is dynamically typed. The statement 5 + "hello"
results in a type error. Bash is weakly typed, and that same addition results in 5hello
why does konsi have to be such a gigachad
like is there a single thing she hasn’t already done and excelled at
I’m not sure about Click’nLoad or Debrid, but aria2 does all the other things you just listed.
oh there are plenty such. kget, aria2, uget, and motrix off the top of my head. but people use jdownloader for the same reason they use windows – it’s what they know.
puting in my personal identification number number at the automatic teller machine machine
(i’m gonna do something evil)
Sounds like you’d really like Nix.
The human, of course, flies anyway, because it does not care what dragons think is impossible.
wait, does this mean that dragons think about dragon/human romances the same way we think about bee movie???
i… i need a minute,
in dr frankenstein’s defense it’s kinda hard to get peer reviewed while you’re doing the experiment. that usually happens after you’ve done all the sciency stuff, crunched all the numbers, written up a paper, and sent it off to be reviewed.
(from Tom Fischbach, creator of Twokinds)
WHEN YOU CAN’T AFFORD STREAMING ON AN NFL PLAYER SALARY, PRICES ARE TOO DAMN HIGH
you would be shocked at how many women unironically believe that men are perpetually horny and that that is the source of most if not all of society’s ills
you too?
in what way
You know what? I’m gonna Sonarr and Jellyfin even harder
does the rest of gen z not know how to torrent? i thought everyone did
The 8-Bit Guy has a nice video covering the functionality of a number of such devices. They’re fascinating bits of kit – they’re like calculators you can type BASIC programs into. One of them can even be hooked up to a pen plotter to make graphs on paper – it can even graph in 3D!
they had that picture locked and loaded
god bless furries
Because to a certain extent Python is duck typed. Python has no concept of interfaces, unless you count the
abc
module combined with manualisinstance()
checks, which I’ve never seen anyone do in production. In order to be passed to some function that expects a “file-like object”, it just has to have methods namedread()
,seek()
, and possiblyisatty()
. The Python philosophy, at least as I see it, is “as long as it has methods namedwalk()
andquack()
, it’s close enough to a duck for me to treat it as one”.Duck typing is distinct from weak type systems, though.