git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| #include <stdio.h> | |
| #include <stdlib.h> | |
| struct closure { | |
| void (* call)(struct closure *); | |
| int x; | |
| }; |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| #!/bin/bash | |
| # bash generate random alphanumeric string | |
| # | |
| # bash generate random 32 character alphanumeric string (upper and lowercase) and | |
| NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
| # bash generate random 32 character alphanumeric string (lowercase only) | |
| cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1 |
| for i in `ls *.svg` | |
| rsvg-convert -f pdf -o PDF/${i}.pdf $i |
This gist assumes:
www-data (may be apache on other systems)| kingkong:/tmp/gypfilecheck$ time couchtato iterate -u http://host/registry -p 5000 | |
| retrieved 5000 docs - 0 | |
| >> LDAP 1.1.4 has gypfile: true | |
| >> airtunes 0.1.3 has gypfile: true | |
| >> aligned-buffer 0.1.2 has gypfile: true | |
| >> allsync 0.0.3b has gypfile: true | |
| >> ancillary 2.0.0 has gypfile: true | |
| >> aplus 0.1.0 has gypfile: true | |
| >> base128 0.1.0 has gypfile: true | |
| >> bcrypt 0.7.5 has gypfile: true |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |