

Now do computation in those threads and realize that they all wait on the GIL giving you single core performance on computation and multi threaded performance on io.
Now do computation in those threads and realize that they all wait on the GIL giving you single core performance on computation and multi threaded performance on io.
Create a table of checkboxes with the rule 110 CSS applied.
Translate your program to a rule 110 program and put it in the top row of the table.
Advance the computation by checking the marked (orange in the example) checkboxes row by row.
This, unfortunately, means that semicolons are often inserted in places where you were not expecting them
example:
()=>{
return {k:"v"}; // returns the object
}
()=>{
return // returns undefined
{k:"v"}; // unreachable
}
so the advice is to always include them manually yourself so that you are never unpleasantly surprised.
The example will be unpleasantly surprising, no matter where you put semicolons.
But that is reasonable. You can edit text better and decide what information goes in it (emotions, surroundings, …). Also text is compatible with other technologies, especially search.
Short for Ganzzahl, like int for integer.
Betamax was used by climbers^1 , clearly everyone went with vhs to avoid them.
^1 a recomended sequence of moves is called a beta to this day
Going of memories:
Didn’t he write a codebase that was so bad, that paypal throw it out when they realized what they had bought.
Also did he finish his physics bachelor?
Hey, javas default toString gives you two informations:
Just put it in a formal grammar:
GNU -> GNU's Not Unix's
GNU -> gnu
GIMP -> GNU image manipulation program
The image is a cropped xkcd with the text replaced but the same joke.
Prolog is not suitable for any problem domain, although this is more readily apparent for some domains than others.
For real, for real.
A yes, the two genders of binary file formats: renamed sqlite file and renamed zip folder.
What is the methodology called where you:
Plan to go to orbit, blow up seconds into the flight, and declare it a success.
Plan to refuel in orbit, make it minutes before the rocket brakes. Fire the FTS, it fails, the rocket blows up a minute later und declare it a successful test of the FTS.
Argue to NASA that you are not the limiting factor to the moon mission planed for the end of the year, despite delivering none of the milestones.
FTS = flight termination system
I think Dylan Beattie once said: If you don’t have a plan, how can you choose not to follow it?
Websites have grown beyond mere scripting.
Rust is about more than just nicer pointers, it has a very expressive type system that enables correctness rarely seen outside FP.
Instead of
if let Some(a_) = a{
()
} else if let Some(b_)=b{
()
} else {
dostuff
}
you could just use
if a.isNone()&&b.isNone(){
dostuff
}
Also if you don’t use the value in a match just use _
Sleep sort is kind of like count sort but with added overhead. Both have a complexity of O(n+m) with n being the length and m the value of the max element.
The optimum of O(n * log n) is based on the assumption that the only information about the values is obtained by comparison. If you operate on integer keys I would recommend radix sort. It has a complexity of O(n * w) where w is the length (read logarithm) of the key.
Ups, my attention got trapped by the code and I didn’t properly read the comment.