

No. A full breakdown here https://youtu.be/1dhvry6E0jA
No. A full breakdown here https://youtu.be/1dhvry6E0jA
At least plugging them all into Google translate, the pronunciations are actually all pretty similar, with Swedish being the most dissimilar
I’ve used them both a good bit for D&D/TTRPG campaigns. The image generation has been great for making NPC portraits and custom magic item images. LLM’s have been pretty handy for practicing my DM-ing and improv, by asking it to act like a player and reacting to what it decides to do. And sometimes in the reverse by asking it to pitch interesting ideas for characters/dungeons/quest lines. I rarely took those in their entirety, but would often have bits and pieces I’d use.
I probably do this a good bit without really thinking about it. I don’t really care about walking in mud/grass and I like to give people their space. The fact that they continued to walk on the grass after they passed makes me think it wasn’t a big deal for them either.
Oh, I don’t heat it at all, I just eat it room temperature
I haven’t heard of that being what threading is, but that threading is about shared resourcing and memory space and not any special relationship with the scheduler.
Per the wiki:
On a multiprocessor or multi-core system, multiple threads can execute in parallel, with every processor or core executing a separate thread simultaneously; on a processor or core with hardware threads, separate software threads can also be executed concurrently by separate hardware threads.
https://en.m.wikipedia.org/wiki/Thread_(computing)
I also think you might be misunderstanding the relationship between concurrency and parallelism; they are not mutually exclusive. Something can be concurrent through parallelism, as the wiki page has (emphasis mine):
Concurrency refers to the ability of a system to execute multiple tasks through simultaneous execution or time-sharing (context switching), sharing resources and managing interactions.
https://en.m.wikipedia.org/wiki/Concurrency_(computer_science)
Correct, which is why before I had said
I think OP is making a joke about python’s GIL, which makes it so even if you are explicitly multi threading, only one thread is ever running at a time, which can defeat the point in some circumstances.
If what you said were true, wouldn’t it make a lot more sense for OP to be making a joke about how even if the source includes multi threading, all his extra cores are wasted? And make your original comment suggesting a coding issue instead of a language issue pretty misleading?
But what you said is not correct. I just did a dumb little test
import threading
import time
def task(name):
time.sleep(600)
t1 = threading.Thread(target=task, args=("1",))
t2 = threading.Thread(target=task, args=("2",))
t3 = threading.Thread(target=task, args=("3",))
t1.start()
t2.start()
t3.start()
And then ps -efT | grep python
and sure enough that python process has 4 threads. If you want to be even more certain of it you can strace -e clone,clone3 python ./threadtest.py
and see that it is making clone3
syscalls.
I think OP is making a joke about python’s GIL, which makes it so even if you are explicitly multi threading, only one thread is ever running at a time, which can defeat the point in some circumstances.
I’m not sure I understand how you’d shred your fingers on them. I put my nail under the tab and lift until my finger can get under it
I don’t have data to support it, but I’d imagine that the job role within the military can make a big difference. Were you an officer, with a college degree, doing a lot of IT work and never deployed? You’re probably gonna be fine.
Were you an enlisted undez who scraped rust, or were deployed and suffering from PTSD? It’s gonna be a much harder time.
It likely depends on the courthouse, but generally speaking you’ll show up, sign in, someone will give a little talk about how things work, and then you’ll wait in a waiting room for a few hours while various names are called. Then you’ll go into the court room and the actual jurors will get selected from the pool. They’ll ask some questions and depending on the answer some people will get removed (having a family member who’s a police officer is pretty common).
If you’re not selected, you’ll probably go back to the waiting room to see if you get pulled for another case. If you are, you’ll sit and listen to the details of the case and eventually make a determination. Depending on the case/jurisdiction, you might also be a “backup juror” where you’ll sit through the entirety of the case, but won’t actually be part of the deliberation at the end unless another juror had to drop out for some reason.
I ended up getting a murder trial, which was pretty interesting. Overall wasn’t a horrible experience, but definitely glad I brought a Steam Deck while I was waiting.
Just curious, why aren’t you vegan if you consider it morally bankrupt to be complicit in the meat industry?
I’m continually shocked by how often I learn of some structural systemic issue, pull the thread to see where it started and- oh, surprise, it was once again Reagan.
I think it’s used more often in computer science, but the difference between contiguous and continuous. Continuous means “without end” and contiguous means “without break.”
Gas-filler. There’s a couple states in the US where you aren’t allowed to pump your own gas, someone else has to do it for you, and you’re expected to then tip them.
The job is essentially getting me to pay to be inconvenienced. I’d prefer to pay to let me pump my own gas.
You’ve lost another submarine?