Prerequisites:
- Install qemu via MacPorts.
- Install tuntap via brew.
Steps:
- Add a bridge with some Thunderbolt interface via System Preferences -> Network -> Manage Virtual interfaces:
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
Download OpenOCD.
Place the folder in ~/openocd
- so that the scripts
is directly under ~/openocd/scripts
.
Add it to your PATH via:
ln -s ~/openocd/bin/openocd /usr/local/bin/openocd
Make sure no applications are bound to port 3333.
Place launch.json
and tasks.json
in your .vscode
folder.
Note: Set the right path in debugServerArgs
.
Instructions how to install Debian using debootstrap. Below instructions were verified to work with debootstrapping Debian 11.
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined in IE 8/9. | |
*/ |
/* | |
* I add this to html files generated with pandoc. | |
*/ | |
html { | |
font-size: 100%; | |
overflow-y: scroll; | |
-webkit-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100%; | |
} |
struct fifo { | |
uint8_t size; /* size of buffer in bytes */ | |
uint8_t read; /* read pointer */ | |
uint8_t write; /* write pointer */ | |
unsigned char buffer[]; /* fifo ring buffer */ | |
}; | |
/* define a FIFO type for 'size' bytes */ | |
#define MK_FIFO(size) \ | |
struct fifo_ ## size { \ |