Riker and Troi learn a life lesson and the exit the holodeck.
Riker and Troi learn a life lesson and the exit the holodeck.
She was also part of the team that discovered and coined the term “bug” in relation to a computer defect. She didn’t invent the term herself directly, but she was part of the team that did.
macOS has something to this effect where if it detects too many kernel panics in a row on boot it will disable all kernel extensions on the next reboot and it pops up a message explaining this. I’ve had this happen to me when my GPU was slowly dying. It eventually did bite the dust on me, but it did let me get into the system a few times to get what I needed before it was kaput.
The contacts inside are too big and sensitive and it results in phantom inputs. The DIY fix is to open up the controller and literally cover parts of the input contacts with tape.
“What one programmer can do in one month, two programmers can do in two months.”
I wouldn’t say quite the same root cause — the xz back door was clearly intentional, but I don’t recall the Heartbleed bug having been intentional, and developer responsible has denied allegations to that effect. There can be no doubt in the xz case of malicious intent.
That’s easy, just create new accounts every time you login.
The performance improvements in v4 are for compilation times, not rendering.
Learn to use git bisect
. If you have unit tests, which of course you should, it can save you so much time finding weird breakages.
Why wouldn’t you just create a GUI interface in Visual Basic to track their IP addresses tho?
How do you know that deleting anything on Reddit actually deletes anything? It might just hide the content but soft delete it in the database, which means you may not be able to see it anymore but they can still use it for whatever.
The code in the image is C or C++ or similar. In those languages and languages derived from them, curly braces are optional but the parentheses are required. It should be the other way around to avoid logic errors like this:
if (some expression)
doSomething()
else if (some other expression)
printf(“some debugging code that’s only here temporarily”);
doSomethingElse();
Based on the indentation you’d think that doSomethingElse
was only meant to run if the else if
condition was true, but because of the lack of braces and the printf
it actually happens regardless of either of the if
conditions. This can sometimes lead to logic errors and it doesn’t hold up to a principle of durability under edit — that is, inserting some code into the if
statement changes the outcome entirely because it changes the code path entirely, so the code is in a sense fragile to edits. If the curly braces were required instead of optional, this wouldn’t happen.
I have all of my linters set up to flag a lack of curly braces in these languages as an error because of this. It’s a topic that sometimes causes some debate, ‘cause some people will vociferously defend their right to not have the braces there for one liners and more compact code, but I have found that in general having them be required consistently has led to fewer issues than having arguments about their absence, but to each their own. I know many big projects that have the opposite stance or have other guidelines, but I just make ‘em required on my own projects or projects that I’m in charge of and be done with it.
I also sometimes wish that the syntax in if
statements was inverted, where ()
was optional and {}
was required.
Perl I believe is where the programming adage of TMTOWTDI comes from — There’s More Than One Way To Do It. Python was an anathema to that ideal, where TOOWTDI — There’s Only One Way To Do It, or at least one ideal way
I prefer to think that Picard is just still stuck in the Nexus and everything that has happened to him since has been a result of magic Nexus fever dreams.
Movie Picard and PIC Picard acted nothing like TNG Picard to the point where they were seemingly completely different people. Movie Picard wanted to make the Borg pay for what they did and literally beat in dead Borg with his fists and snapped the Borg queen’s spine in two with his bare hands while TNG Picard knew things weren’t that cut and dry and even had an opportunity to potentially genocide the works of them and didn’t because ethics and shit. Movie Picard would have drove Hugh up to their doorstep infected with the fractal virus the first chance he had.
PIC Picard… is literally an android I guess? But still old? They kind of ignored that later. So, literally he isn’t the same Picard as TNG Picard.
The Nexus is my head canon.
K&R for life
Depends on the situation. Sometimes they only find out that the planet they’re beaming down to is actually a 1920’s mafia planet or a Nazi Germany planet after the fact once they get there, and then it’s like, “Bones, Spock, and also random Crewman, we’ve just beamed down to a mafia planet, we need to get some proper clothes before we’re spotted. Oh no, we’ve been spotted, beat these mafia guys up and steal their clothes quick before we’re spotted again.”
Although to be fair those sorts of episodes actually didn’t involve time travel, since they were other planets that for some reason or another became entire planets of mafiosos and Nazis, but the prime directive still applied.
Better not tell them about daemons I guess.
The code directly below:
function getPathToUploadDirectory() { return config.tmp_path }