Algorithm Archive
"The Arcane Algorithm Archive is a collaborative effort to create a guide for all important algorithms in all languages. This goal is obviously too ambitious for a book of any…
Die Artikel dieser Kategorie werden über die Tags zugänglich gemacht.
"The Arcane Algorithm Archive is a collaborative effort to create a guide for all important algorithms in all languages. This goal is obviously too ambitious for a book of any…
Abfragen mit nslookup -debug google.com prüfen und ggf. Metrik anpassen. Im Beispiel war "vEthernet (virtueller Switch Intern)" vor dem Internetadapter. siehe auch How DNS queries work
sudo systemctl enable firewalld sudo systemctl start firewalld sudo firewall-cmd --add-port=80/tcp --permanent sudo firewall-cmd --add-forward-port=port=80:proto=tcp:toaddr=127.0.0.1:toport=8080 --permanent sudo firewall-cmd --reload sudo systemctl status firewalld sudo firewall-cmd --list-all
Zwei Befehle per netsh und ein DNS ist konfiguriert. interface ip show config interface ip set dns "Ethernet 2" static 4.4.4.4 interface ip add dns "Ethernet 2" 8.8.8.8 index=2 interface…
Einstellung git.postCommitCommand legt die Aktion nach einem Commit fest.
$Begin = Get-Date -Date '8/11/2019 00:00:00' $End = Get-Date -Date '10/11/2019 23:59:00' $A = Get-EventLog -LogName System -After $Begin -Before $End $B = $A | Where-Object {$_.EventID -eq 7002} $B…