This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Show content of memory address | |
x <memory_address/function_name> | |
x/<num>wx <location> # Print the next <num> words from location | |
# Show value stored in a named variable | |
p <variable_name> | |
# Set assembly flavor | |
set disassembly-flavor {intel|att} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
show ip route | |
show ip route connected | |
# IP on a switch | |
inteface vlan 1 | |
ip address <ip-address> <subnet-mask> | |
no shutdown | |
exit | |
default-gateway <ip-address-of-gateway> <---------this is important for routing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run a command on a OS image | |
docker container run <container> <command> | |
# List running containers, --all lists even those that exited | |
docker container ls [--all] | |
# Run a docker container and access its shell, --rm removes container after exiting | |
docker container run --interactive --tty [--rm] <container> bash | |
# Run a background container |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
msc { | |
# options | |
wordwraparcs=on, | |
arcgradient="10", | |
hscale = "2.5"; | |
# entities | |
a [label="Device"], | |
b [label="Server"]; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This will be the engineering journal that i will write during my journey with Cisco Networking Academy. | |
1 - DONE | |
2 - DONE | |
3 - DONE | |
4 - DONE | |
5 - DONE | |
6 - DONE | |
7 - DONE | |
8 - DONE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########### AI FOR ROBOTICS ########### | |
These are my notes for the udemy course about artificial intelligence. |