Skip to content

Instantly share code, notes, and snippets.

View DeckerSU's full-sized avatar

DeckerSU DeckerSU

View GitHub Profile
@DeckerSU
DeckerSU / keepassxc_build_ubuntu_16.04_static.sh
Created September 27, 2019 22:04
Build script for KeePassXC for Ubuntu 16.04 (x64)
#!/bin/bash
# Build script for KeePassXC for Ubuntu 16.04 (x64) by Decker (q) 2019
# Follow the original instructions, i.e. mkdir build, cd build, place script in created
# build folder and run. You should get your keepassxc binaries in build/release folder.
CURDIR=$(pwd)
PREFIX=${CURDIR}/depends
BUILD=${CURDIR}/release
@olih
olih / jq-cheetsheet.md
Last active May 15, 2024 22:26
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@willurd
willurd / web-servers.md
Last active May 30, 2024 02:54
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@jexchan
jexchan / multiple_ssh_setting.md
Created April 10, 2012 15:00
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"