not if you’re killing processes the current user started.
- 0 Posts
- 8 Comments
Doxin@pawb.socialto Asklemmy@lemmy.ml•Bad film with amazing premise and mediocre execution that you can't stop thinking about?1·20 days agoStill definitely worth watching if you ask me, but yeah those main characters are… Not amazing.
Doxin@pawb.socialto Technology@beehaw.org•Why I Believe Printers Were Sent From Hell To Make Us Miserable - The Oatmeal2·26 days agoCanon megatank is pretty great too. The only complaint I have is that it’s weirdly insistent on having photo paper in the back paper entry, and not in the drawer. Other than that the thing just prints. No cartridge chip shenanigans either because there’s no cartridges, and besides the ink is actually affordable compared to cartridges.
Hey now, there’s also two whole pages about the main characters’masturbatory habits!
It’s almost exactly like that only if the tin hat guy would turn out to be right every single goddamn time in hindsight. RMS is… a character at best, but he sure has some predictive powers.
There’s no firm delineation between scripting or programming. In many cases it boils down to “scripting is when you program in a language I deem lesser” which is just rude.
Coding is just the old timey word for encoding. I.E. basically doing what an assembler would do automatically these days. Any programming language in common use involves much more than that and deserves to be called programming.
Use debian testing if you want up-to-date software. The name implies it’s unstable, but it’s really not. Debian stable absurdly stable, and debian testing is regular stable.
I mean yeah with no context that looks weird A/F, but given a couple details it’s fairly self-evident why it be like it do.
__name__
is a global variable containing the name of the current module. There’s a couple more like__file__
containing the filename of the current module.__name__
gets set to"__main__"
. If it got set to something more sensible like"main"
you couldn’t really call a filemain.py
without this breaking. Right now this only breaks for files called__main__.py
but luck would have it that calling a file__main__.py
already has a special meaning which makes these uses not clash.__name__
is set to__main__
is the easiest way to do this.Python for sure has a bunch of weirdness, but it all does mesh together into a rather nice programming language.