Instructions how to install Debian using debootstrap. Below instructions were verified to work with debootstrapping Debian 11.
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
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 { \ |
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
/* | |
* 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%; | |
} |
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
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined in IE 8/9. | |
*/ |
-
Download OpenOCD.
-
Place the folder in
~/openocd
- so that thescripts
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
andtasks.json
in your.vscode
folder.
Note: Set the right path in debugServerArgs
.
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