/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉
- Generate your SSH keys as per your git provider documentation.
- Add each public SSH keys to your git providers acounts.
- In your
~/.ssh/config, set each ssh key for each repository as in this exemple:
This is a quick guide of the commands we use to sign someone's GPG key in a virtual key signing party.
Note: The steps cover only the technical aspects of signing someone's key. Before signing someone's key, you must verify their identity. This is usually done by showing government-issued ID and confirming the key's fingerprint
The commands will work for both GPG and GPG2.
I use Julian's key for the examples. His key id is 2AD3FAE3. You should substitute with the appropriate key id when running the commands.
- List the keys currently in your keyring:
gpg --list-keys.
The STM32CubeMX tool is written in portable java, but unfortunately it is distributed as a Windows executable embedded in a Windows installer.
To install it on Linux:
sudo java -jar SetupSTM32CubeMX-4.11.0.exe- install the tool somewhere in your home, eg:
/home/you/stm32/cubemx sudo chown -R you:you /home/you/stm32/cubemx
This is a collection of snippets, not a comprehensive guide. I suggest you start with Operational PGP.
Here is an incomplete list of things that are different from other approaches:
- I don't use keyservers. Ever.
- Yes, I use Gmail instead of some bespoke hipster freedom service
by xero updated 10.29.24
| ; ___ _ __ ___ __ ___ | |
| ; / __|_ _ __ _| |_____ / /| __|/ \_ ) | |
| ; \__ \ ' \/ _` | / / -_) _ \__ \ () / / | |
| ; |___/_||_\__,_|_\_\___\___/___/\__/___| | |
| ; An annotated version of the snake example from Nick Morgan's 6502 assembly tutorial | |
| ; on http://skilldrick.github.io/easy6502/ that I created as an exercise for myself | |
| ; to learn a little bit about assembly. I **think** I understood everything, but I may | |
| ; also be completely wrong :-) |
| #<file system> <mount-point> <type> <options> <dump> <pass> | |
| /dev/root / auto defaults,errors=remount-ro 0 0 | |
| devpts /dev/pts devpts gid=5,mode=620 0 0 | |
| proc /proc proc defaults 0 0 | |
| tmpfs /tmp tmpfs defaults 0 0 | |
| sysfs /sys sysfs auto 0 0 |
| #!/bin/sh | |
| echo "Starting rcS..." | |
| echo "++ Mounting filesystem" | |
| mount tmpfs /dev -t tmpfs | |
| mount proc /proc -t proc | |
| mount sysfs /sys -t sysfs | |
| mkdir -p /dev/pts | |
| mkdir -p /dev/i2c |
| /** | |
| * Title: gpio.c | |
| * | |
| * Author: Andrew Montag | |
| * [email protected] | |
| * sites.google.com/site/andrewmontag | |
| * | |
| * Licence: Boost Software Licence - Verison 1.0 | |
| * http://www.boost.org/users/license.html | |
| * |