Mit Mermaid können einfach Diagramme erstellt werden.
https://www.mermaidchart.com
https://www.mermaidchart.com/play
Markdown-File:
```mermaid
graph TD;
BaseModel-->MapViewModel-->MyownMapViewModel-->NextMapViewModel
```
Mit Mermaid können einfach Diagramme erstellt werden.
https://www.mermaidchart.com
https://www.mermaidchart.com/play
Markdown-File:
```mermaid
graph TD;
BaseModel-->MapViewModel-->MyownMapViewModel-->NextMapViewModel
```
Error Logs:
/var/log/apache2/error.log
Seiten:
/var/www/html
The difference is how the values are captured
Example:
int x = 1;
auto valueLambda = [=]() { cout << x << endl; };
auto refLambda = [&]() { cout << x << endl; };
x = 13;
valueLambda();
refLambda();
This code will print:
1
13
https://stackoverflow.com/questions/21105169/is-there-any-difference-betwen-and-in-lambda-functions
https://en.cppreference.com/w/cpp/language/lambda
git config http.sslVerify "false"
https://stackoverflow.com/questions/9008309/how-do-i-set-git-ssl-no-verify-for-specific-repos-only
Beim Rebase für jede Datei entscheinden, ob ours oder theirs genommen werden soll:
git checkout --ours -- [paths]
oder
git checkout --theirs -- [paths]
Anschließend mit git add [path] die Datei hinzufügen und mit git rebase --continue den rebase fortsetzen
Alte Commits löschen durch Rebase:
Head um vier commits zurücksetzen:
git rebase -i HEAD~4
Dann mit pick die Commits wählen, die man behalten will:
pick 2f05aba ... #will be preserved
#pick 3371cec ... #will be deleted
#pick daed25c ... #will be deleted
pick e2b2a84 ... #will be preserved
https://stackoverflow.com/questions/9725156/remove-old-git-commits
Strg-Umschalt-v
sudo apt install qtcreator qtbase5-dev qt5-qmake cmake qtdeclarative5-dev qml-module-qtquick-controls