Skip to content

Instantly share code, notes, and snippets.

View shakaran's full-sized avatar
🏠
Working from home

Ángel Guzmán Maeso shakaran

🏠
Working from home
View GitHub Profile

Setting up a SSL Cert from Comodo

I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.

These are the steps I went through to set up an SSL cert.

Purchase the cert

@shakaran
shakaran / analyze-all-bpel.bash
Created October 11, 2012 15:58 — forked from anonymous/analyze-all-bpel.bash
Analyze a tree of .bpel files while distributing work over all available cores
#!/usr/bin/env bash
find -type f -name "*.bpel" -print0 | xargs -P `grep -c processor /proc/cpuinfo` -n 1 -I{} -0 sh -c 'mubpel analyze "$1" > "$1.mutations.txt"' -- {}