This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:6B5C9FD8DA16B67F]
| #!/bin/bash | |
| REPO_ARG=(-R newbiz/zmk-config-corne-wireless) | |
| OUT_DIR="/tmp/corne-wireless-firmware" | |
| rm -rf "$OUT_DIR" | |
| mkdir -p "$OUT_DIR" | |
| command -v gh >/dev/null 2>&1 || { echo "gh not found"; exit 1; } | |
| gh auth status >/dev/null 2>&1 || { echo "gh not authenticated"; exit 1; } |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:6B5C9FD8DA16B67F]
| #!/bin/bash | |
| tmux new-session -d -s work | |
| # First window: vim | |
| tmux new-window -t 1 -k -n vim | |
| tmux send-keys -t 1 'cd /home/avallee/workspace/pdk-software-master/ticker-plant' Enter | |
| tmux send-keys -t 1 'clear' Enter | |
| # Second window: make |
| [alias] | |
| ci = commit | |
| co = checkout | |
| st = status | |
| br = branch | |
| ls = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
| [branch] | |
| autosetuprebase = always | |
| [push] | |
| default = matching |
| set -g utf8 on | |
| set-window-option -g utf8 on | |
| set -g status-utf8 on | |
| set -s escape-time 0 | |
| set -g default-terminal "screen-256color" | |
| bind-key -n C-right next | |
| bind-key -n C-left prev |
| #include <getopt.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <errno.h> | |
| #include <limits.h> | |
| void | |
| version(void) | |
| { | |
| printf("HTTPMon 1.0.0\n"); |
| #include <string> | |
| #include <ctime> | |
| std::string now() | |
| { | |
| std::time_t tt = std::time(NULL); | |
| std::string s = std::ctime(&tt); | |
| return s.substr(0, s.size()-1); | |
| } |
| $ ./target/rgbdbg | |
| RGB debugger 0.0.1 | |
| Copyright (C) 2015 Aurelien Vallee | |
| License MIT: http://opensource.org/licenses/MIT | |
| (rgbdbg) h | |
| Commands: | |
| help |h List available commands | |
| file |f Load Z80 executable binary | |
| next |n Step execute the next instruction | |
| run |r Run the program until Cpu is stopped |
| #ifdef __SSSE3__ | |
| # include <xmmintrin.h> | |
| # include <tmmintrin.h> | |
| #endif | |
| posix_memalign((void**)&pixels, 16, sizeof(unsigned int)*PIXEL_COUNT); | |
| /* | |
| * Mind this will only work for width * height % 16 == 0 textures |
| void replace( const std::string& from, const std::string& to, std::string& str ) | |
| { | |
| size_t pos; | |
| while ( (pos=str.find(from)) != std::string::npos ) | |
| str.replace( pos, from.size(), to ); | |
| } |