Windows, Mac, or Linux?
There is another…
Windows, Mac, or Linux?
There is another…
Can you make it do this?
Vine…forgotten…
Actual code!? Most of us have to settle for fixing a grammatical error in the documentation
Reminds me of when Canada lost internet to 12 million of it’s 33 million people because one company messed up doing maintenance.
GNU/gle
Or as I’ve taken to calling it, grep
If you have a 64 bit computer, you gotta delete system32.
A lot of responses here so I’ll suggest a different approach. You can watch your python code execute line by line using a debugger. That might help with understanding how it all works.
def my_sum(list):
result = 0
for number in list:
result += number
return result
my_list = [1, 2, 3, 4, 5]
list_sum = my_sum(my_list)
print(list_sum) # Prints 15
If you run the above code line by line in a debugger, you’ll see that when it gets to list_sum = my_sum(my_list)
the program will jump into the function my_sum(list)
where “list” is a variable holding the value of “my_list”. The program continues line by line inside of the function until it hits the return result
statement. The program then returns to the line it was at before jumping into the function. “my_sum(my_list)” now has an actual value. It’s the value that the return statement provided. The line would now read list_sum = 15
to python.
A debugger shows you which lines get executed in which order and how the variables update and change with each line.
Just a note: python has a built-in sum()
function you could use instead of writing your own my_sum()
function, but a debugger won’t show you how built-in functions work! They’re built into the language itself. You’d need to look up Python’s documentation to see how they actually function under the hood.
I made one called “crash_bandicoot.exe” that opened the windows calculator in an infinite loop.
sudo: pop: command not found
The up to date one is the OP
Just writing words doesn’t make it legally binding. Anyone who reads this comment owes me $1,000,000 USD.
It is impossible to update perfection
It’s not satire! Torovoltos used telnet to hack into my iPhone and instal an mp3 virus known as Songs of Innocence
My understanding is that some people are die hards to the software philosophy of “do one thing really well”. systemd at the very least does many different things. These people would prefer to chain a bunch of smaller programs together to replicate the same functionality of systemd since every program in the chain fits the philosophy of “does one thing really well”.
Gentoo because the compiler output looks kind of like the matrix. Also you could watch every single film while waiting for the compiler to finish
The question is about “superpermutations”. The permutations of 1 and 2 are “12” and “21”. A “superpermutation” would be “1221”. It contains the numbers 1 and 2 as well as all permutations of 1 and 2. However “121” is also a superpermutation of 1 and 2. It also contains “12” and “21” and it’s shorter than “1221”.
The problem is finding the shortest superpermutation. Stand-up Maths has a video where he interviews a mathematician that published Anonymous’ solution. So yes, there is a math paper where the main author is “Anonymous 4chan Poster”.
I had to create an account on a government website. The website didn’t list a character limit so I used a password manager to generate a 32 character password. My account was created but I couldn’t log in. I used the “forgot my password” option and I received an email of my password in plain text. I also noticed why I couldn’t log in. The password was truncated to just 20 characters. Brilliant website! Tax dollars at work!