What does the command "git config" do?
Configure git
(e.g. set user and mail)
What is the correct file extension for Python files?
.py
Origin of the word Wiki?
It comes from Hawaii and means fast.
Is Ada a programming language?
Yes
What are "Merge conflicts"?
Merge conflicts occur when competing changes are made to the same line of a file, or when one person edits a file and another person deletes the same file.
Given is:a = [1, 2, 3, 3, 5, 4, 5, 4]
Simple command to check how often the 4 occurs?
a.count(4)
Where are scratch files saved?
locally in PyCharm
What shall we do with the drunken sailor?
???
How to search for the history of a specific file?
git log <file_path>
What is an interpreter?
An interpreter is a computer program that directly executes instructions written in a programming or scripting language, without requiring them previously to have been compiled into a machine language program.
Who will be responsible for our Wiki in the future?
YOU
Who is this guy?
Richard Matthew Stallman
Stallman launched the GNU Project in September 1983 to write a Unix-like computer operating system composed entirely of free software. With this, he also launched the free software movement (check FSF -Free Software Foundation) .
List six git commands.
...
How to eliminate the element "Mango" from the following list?
a = ["Apple", "Mango", "Pear"]
Please provide two simple solutions.
Hint: By value and by position
a.remove("Mango")
anddel(a[1])
How to save files in PyCharm?
Not at all, it's saved automatically.
On which computer was the WWW invented?
NeXTcube
How to find deleted text in git?
git log -S "<text>" --oneline
What is the result of:
a = [1, 2, 3, 4, 5]
b = [5, 6, 7, 8, 9]
a.append(b)
print(a)
[1, 2, 3, 4, 5, [5, 6, 7, 8, 9]]
Given is:a = ["Apple", "Mango", "Pear"]
How to add a "Peach" between "Mango" and "Pear"?
a.insert(2, "Peach")
What is a “Numbers station”?
A numbers station is a shortwave radio station characterized by broadcasts of formatted numbers, which are believed to be addressed to intelligence officers operating in foreign countries.