Skip to content

Instantly share code, notes, and snippets.

@jackley
jackley / tesseract-on-linux.md
Created November 13, 2023 07:20 — forked from pnedunuri/tesseract-on-linux.md
Steps to install tesseract on linux
@jackley
jackley / README.md
Created September 3, 2017 06:03 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@jackley
jackley / build_nginx.sh
Last active July 2, 2017 04:12 — forked from MattWilcox/build_nginx.sh
Fetch, build, and install the latest nginx with the latest OpenSSL for RaspberryPi
#!/usr/bin/env bash
# names of latest versions of each package
export VERSION_PCRE=pcre-8.40
export VERSION_OPENSSL=openssl-1.0.2l
export VERSION_NGINX=nginx-1.10.3
# URLs to the source directories
export SOURCE_OPENSSL=https://www.openssl.org/source/
export SOURCE_PCRE=ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
@jackley
jackley / gitcheats.txt
Created May 27, 2017 06:42 — forked from chrismccoy/gitcheats.txt
git cheats
# shortform git commands
alias g='git'
# push changes to an empty git repository for the first time
git push --set-upstream origin master
# clear out git hooks
find .git/hooks -type l -exec rm {} \; && find .githooks -type f -exec ln -sf ../../{} .git/hooks/ \;
# remove untracked files in a git repository