Very simple graphical programming hosted by the MIT – SCRATCH.
My first program simulating the moon landing …

… based on the following code …

Have Fun!
Code can be found on https://github.com/wofuerGitHub/Codesnippets.git
ideas, notes, thoughts, links, … and more
Very simple graphical programming hosted by the MIT – SCRATCH.
My first program simulating the moon landing …
… based on the following code …
Have Fun!
Code can be found on https://github.com/wofuerGitHub/Codesnippets.git
25.05.2020 – Bundesministerium f. Europäische und Internationale Angelegenheiten
1 – good safety standard, 3 or 4 – high risk of region or country, 5 or 6 – warning to travel there
Client knocks at the servers door. Server sends public key.
Client checks if he knows the public key according to ˜/.ssh/known_host and if not it can be added by manual confirmation –> the server becomes accepted.
Client and server negotiate based on the ‘Deffie-Hellman-Algorithm’ an session key, that is shared equally and used for encryption & decryption.
Client sends and ID for a key pair (public/private). Server generates a random number, encrypts it with the public key and sends it to the client.
Client decrypts the number with the private key, calculates an MD5 hash and sends it to the server. The server compares the MD5 hash with and own calculated MD5 hash based on the original random number and identifies the client.
Generate a public key with 8192 bit and use no password (just type enter):
ssh-keygen -b 8192
Upload the public key to the server:
ssh-copy-id -i ~/.ssh/id_rsa.pub user@server
Test the connection:
ssh 'user@server'
Data collection of interesting information on a more data-driven view.
Based on Robert Koch Institute (RKI) 2540 persons died based on Covid-19 till 11. Apr. 2020 in Germany. Distribution of ages you see in the graphic below.
The average age was 82years – the average life expectation is Germany according United Nations data is 81.4years (macrotrends.net) – Impact?
Lock down on all groups – any impact for kids if are missing the social experimenting and experience in school? Any impact if Google and Apple is implementing tracing functionality? Any impact based on increasing stress on families? Any impact if someone will not be able to meet their beloved? Any impact if some are running just out of time in their life without some helping hand?
Go into your local folder and make it suitable for git.
git init
Build a connection between local and remote repository.
git remote add origin https://github.com/wofuerGitHub/Fundamentals_Overview.git
Create a remote git-repository – easiest to remember – with the same folder name.
Add all local files.
git add .
Create a first commit called “init”.
git commit -m "init"
With the first upload define the standard branch.
git push --force --set-upstream origin master
Getting all available information about the repository.
git status
To push your local changes to the repository.
git add .
git commit -m "message"
git push
To get the newest changes in the repository to your local storage.
git pull
To get a complete repository locally installed.
git clone https://github.com/wofuerGitHub/Fundamentals_Overview.git
Special thanks to Roger Dudler and Thomas Leister for their instructions.