Skip to content

Instantly share code, notes, and snippets.

View anacromaniac's full-sized avatar
📉
Shikata ga nai

Michele Biondi anacromaniac

📉
Shikata ga nai
  • Italy
View GitHub Profile
@anacromaniac
anacromaniac / 00-Artificial Intelligence for Robotics(Udemy).txt
Last active December 3, 2017 23:17
NOTE for Artificial Intelligence for Robotics
########### AI FOR ROBOTICS ###########
These are my notes for the udemy course about artificial intelligence.
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
@anacromaniac
anacromaniac / security_chart.svg
Created December 27, 2017 19:29
Chart for Alohomora-3FA
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
msc {
# options
wordwraparcs=on,
arcgradient="10",
hscale = "2.5";
# entities
a [label="Device"],
b [label="Server"];
@anacromaniac
anacromaniac / Docker-reference.txt
Last active January 2, 2018 14:58
Docker reference
# 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
@anacromaniac
anacromaniac / CCNA_COMMANDS.txt
Last active January 16, 2018 14:09
CCNA 2 commands reference
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
@anacromaniac
anacromaniac / gdb.txt
Last active June 4, 2018 19:33
gdb-reference
# 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}