This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://docs.keyoxide.org/advanced/openpgp-proofs/
[Verifying my OpenPGP key: openpgp4fpr:D8C1EB5C1483AAE6FE4B30C4E8ADA1A55B3CA4EA]
#!/usr/bin/env bash | |
# journal.sh | |
# ========== | |
# | |
# One daily text file to rule them all. | |
# | |
# Copyright: 2022 Tyler Cipriani <tyler@tylercipriani.com | |
# License: GPLv3 | |
set -euo pipefail |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://docs.keyoxide.org/advanced/openpgp-proofs/
[Verifying my OpenPGP key: openpgp4fpr:D8C1EB5C1483AAE6FE4B30C4E8ADA1A55B3CA4EA]
#!/bin/bash | |
FILE=$1 | |
SQLITE=$2 | |
if [ -z $1 ]; then | |
echo "convert.sh -- convert postgresdb dump to sqlite database." | |
echo "" | |
echo "First argument is dump file" | |
echo "Second argument is sqlite filename (optional, default value is \`sqlite.db')." |
При составлении карты использовались материалы Максима Дорофеева, mnogosdelal.ru
"go.useLanguageServer": true, | |
"go.languageServerExperimentalFeatures": { | |
"format": true, | |
"autoComplete": true, | |
"diagnostics": true, | |
"goToDefinition": true, | |
"hover": true, | |
"signatureHelp": true, | |
"goToTypeDefinition": true, | |
"documentSymbols": true, |
#To Decrypt Jenkins Password from credentials.xml | |
#<username>jenkins</username> | |
#<passphrase>your-sercret-hash-S0SKVKUuFfUfrY3UhhUC3J</passphrase> | |
#go to the jenkins url | |
http://jenkins-host/script | |
#In the console paste the script | |
hashed_pw='your-sercret-hash-S0SKVKUuFfUfrY3UhhUC3J' |
(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
; whenever there's a food expense, deduct the same amount from the budget | |
= /^expenses:food$/ | |
(budget:food) -1 | |
1/1 opening balances | |
assets:checking 1000 | |
equity:opening balances | |
1/2 budget allocation ; could also do this with an automated posting on income txns |
; An example of YNAB-ish envelope budgetting with hledger/ledger | |
; cf https://github.com/simonmichael/hledger/issues/315 | |
; Using accounts like the following: | |
; | |
; assets | |
; business | |
; bank | |
; wf | |
; bchecking |
# gcc -Wall -o match match.c && ./match | |
# | |
#include <stdio.h> | |
#include <string.h> | |
#include <regex.h> | |