- User Exec Mode: basic commands and system information
show <?>
: Obtain informationcdp
: CDP informationclock
: Display the system clockcontrollers
: Interface controllers status
frame-relay
: Frame Relay information
-- Creazione schema database | |
CREATE DATABASE E1; | |
-- Creazione tabelle database | |
CREATE TABLE Insegnante( | |
Matricola INT PRIMARY KEY, | |
Nome VARCHAR(64) NOT NULL, | |
Cognome VARCHAR(64) NOT NULL, | |
Citta VARCHAR(64), | |
Stipendio INT NOT NULL |
REM Add a custom keyboard ID to avoid assisted keyboard setup | |
ID VendorID:DeviceID | |
DEFAULT_DELAY 100 | |
REM Open terminal | |
GUI SPACE | |
DELAY 250 | |
STRING terminal | |
DELAY 500 | |
ENTER |
If you've been encountering this error when using Python-MIP:
An error occurred while loading the CBC library: cannot load library '/opt/homebrew/lib/python3.11/site-packages/mip/libraries/cbc-c-darwin-x86-64.dylib': dlopen(/opt/homebrew/lib/python3.11/site-packages/mip/libraries/cbc-c-darwin-x86-64.dylib, 0x0002): tried: '/opt/homebrew/lib/python3.11/site-packages/mip/libraries/cbc-c-darwin-x86-64.dylib' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64')), '/System/Volumes/Preboot/Cryptexes/OS/opt/homebrew/lib/python3.11/site-packages/mip/libraries/cbc-c-darwin-x86-64.dylib' (no such file), '/opt/homebrew/lib/python3.11/site-packages/mip/libraries/cbc-c-darwin-x86-64.dylib' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64')). Additionally, ctypes.util.find_library() did not manage to locate a library called '/opt/homebrew/lib/python3.11/site-packages/mip/libraries/cbc-c-darwin-x86-64.dylib
The Computation Graph is the P2P network of ROS processes that are processing data together.
The executable units in ROS are called nodes. They are Python scripts or compiled C++ programs that perform some type of computation.
Nodes exchange information through the Computation Graph thanks to the master, which acts similarly to an event dispatcher in a publish-subscribe architecture.
This guide is meant to let you compile and run C++ projects made with Vulkan and GLFW on Windows machines without the need to set up Visual Studio or other IDEs first. This all works from the command line, so that you can both compile cross-platform and use the tools you prefer for your development.
This guide was made specifically for a Computer Graphics project at Politecnico di Milano, thus the compilation script provided uses some header files in a directory called headers
. You can simply remove it if you are not working on the same project, as all other steps are supposed to be general for Vulkan and GLFW on any Windows 11 installation.