Need to setup gpg-agent first, on OSX I use keychain (it also does ssh-agent)
$ brew info keychain
keychain: stable 2.8.5
User-friendly front-end to ssh-agent(1)
https://www.funtoo.org/Keychain
/usr/local/Cellar/keychain/2.8.5 (7 files, 108.5KB) *| single_input::= NEWLINE | simple_stmt | compound_stmt NEWLINE | |
| file_input::= (NEWLINE | stmt)* ENDMARKER | |
| eval_input::= testlist NEWLINE* ENDMARKER | |
| decorator::= '@' dotted_name ( '(' (arglist)? ')' )? NEWLINE | |
| decorators::= decorator+ | |
| decorated::= decorators (classdef | funcdef | async_funcdef) | |
| async_funcdef::= ASYNC funcdef | |
| funcdef::= 'def' NAME parameters ('->' test)? ':' (TYPE_COMMENT)? func_body_suite |
| anycast.slackware.in | |
| bind 2a07:1c44:4800::1 | |
| log logs/mysite.log | |
| tls { | |
| dns vultr | |
| } | |
| proxy / localhost:81 localhost:82 localhost:83 localhost:84 localhost:85 { | |
| } |
| Add the following in .zshrc: | |
| ... | |
| plugins=(osx git zsh-autosuggestions zsh-syntax-highlighting zsh-nvm docker kubectl) | |
| ... | |
| ### Fix slowness of pastes with zsh-syntax-highlighting.zsh | |
| pasteinit() { | |
| OLD_SELF_INSERT=${${(s.:.)widgets[self-insert]}[2,3]} | |
| zle -N self-insert url-quote-magic # I wonder if you'd need `.url-quote-magic`? |
| curl -s https://api.github.com/users/<USERNAME>/repos?per_page=100 | ruby -rjson -e 'JSON.load(STDIN.read).each {|repo| %x[git clone #{repo["clone_url"]} ]}' |
| #!/bin/bash | |
| TOKEN="xxxxxxxxxxxxxxxxxxx" | |
| ZONE_ID=2222222222222222222222222 | |
| # EMAIL=me@gmail.com | |
| # KEY=11111111111111111111111111 | |
| # Replace with | |
| # -H "X-Auth-Email: ${EMAIL}" \ | |
| # -H "X-Auth-Key: ${KEY}" \ |
There are multiple ways to get a full disk encrypted arch linux system on raspberry. In this tutorial, we will install a 64-bit arch linux armv8 system, using dropbear as ssh server for remote pre-boot unlocking of the root filesystem. However, it will still be possible to unlock and use the pi as usual, with a keyboard and monitor. We will also create an unencrypted partition in the installation process, usable as a rescue system.
Differences to the 32-bit arch linux arm version:
Postman | API Development Environment https://www.getpostman.com
Insomnia REST Client - https://insomnia.rest/
| Features | Insomnia | Postman | Notes |
|---|---|---|---|
| Create and send HTTP requests | x | x | |
| Authorization header helpers | x | x | Can create "Authorization" header for you for different authentication schemes: Basic, Digest, OAuth, Bearer Token, HAWK, AWS |