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
This comic makes the presupposition that the workers have a guillotine to use on her. In the comic, she was unaware that they did, and in the real world, they very much do not. If you instead gave the lines she says in the comic to the real-world Jeff Bezos, they would be perfectly rational.
She is, however, acting in her own rational self-interest by keeping all the value of the new machine for herself and not passing it on to her workers. If she were acting in the group’s rational self-interest, she would allow them to work half as long. Since she is acting in her own rational self-interest, she threatens to fire her workers if they do not work the same hours as before and pass the value on to her. From her perspective, it makes perfect sense: all she has to do is install the new machine and make no other changes, and she and begins earning twice as much income from the factory she owns, without having to lift a finger. Any purely rational person (as opposed, mind you, to an empathetic one) would take the option to do that.
I will never get tired of linking to this: The Only Moral Abortion Is My Abortion
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.
We call that third group Lemmings.
Tell me they didn’t. Tell me this isn’t an actual slide. This is just too funny.
The libre difference, where immediately upon starting up, your desktop manager throws an Oops!, and it shows the current power consumption in the status bar despite having no idea what the current power consumption is.
You couldn’t use any of the services to find your phone?
GrapheneOS doesn’t come with any preinstalled (doing so would kind of go against the whole privacy ethos), and I hadn’t yet gone through the hassle of setting up an Owntracks server so I could have a third-party one. I tried calling it, but by the time I realized it was missing, it was out of battery.
About a month ago I lost my phone somewhere in my house. I still have not found it.
What really stings is that the thing I was doing with it when I lost it was creating a backup onto a flash drive, which is lost along with it.
putting aside the innumerable issues with the stance “it is fundamentally immoral to have children”, sweet mother of mercy the solution is not life-ruining addictive substances
Did social media make sure that didn’t happen, or did the fact that virtually every generation ultimately repeats the mistakes of the one before it ensure that didn’t happen?
Huh. Neat feature. That’s in C# I assume?
(i’m gonna do something evil)
Sounds like you’d really like Nix.
hi i know all about rust if you need help wrapping your head around the borrow checker pls don’t hesitate to reach out
ml user
nice try kgb agent /j
The second one isn’t valid syntax in any programming language I’m familiar with. What does it do?
did you even read my comment?
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.