- Using FreeBSD
- Mountain Lion
- VMware Fusion 5
- Your VMware is installed at '/Applications/VMware Fusion.app'
- Command Line tools are at '/Applications/VMware Fusion.app/Contents/Library'
- especially vmrun
rm -rfv /etc/foreman-proxy/*ssl* | |
rm -rfv /etc/foreman/old-certs | |
rm -rfv /etc/foreman/*.pem | |
rm -rfv /var/lib/puppet/ssl | |
rm -rfv /root/ssl-build | |
foreman-installer -v --certs-regenerate-ca=true --certs-regenerate=true \ | |
--foreman-foreman-url "https://bread.usersys.redhat.com" \ | |
--foreman-servername sat6.example.com \ | |
--certs-ca-common-name sat6.example.com \ |
#!/usr/bin/env python2.7 | |
from pprint import pprint | |
from multiprocessing.dummy import Pool | |
from functools import partial | |
from jnpr.junos import Device | |
from jnpr.junos.op.arp import ArpTable | |
user_name = 'tyler' |
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
echo -e "\e[1;40m" ; clear ; while :; do echo $LINES $COLUMNS $(( $RANDOM % $COLUMNS)) $(( $RANDOM % 72 )) ;sleep 0.05; done|awk '{ letters="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%^&*()"; c=$4; letter=substr(letters,c,1);a[$3]=0;for (x in a) {o=a[x];a[x]=a[x]+1; printf "\033[%s;%sH\033[2;32m%s",o,x,letter; printf "\033[%s;%sH\033[1;37m%s\033[0;0H",a[x],x,letter;if (a[x] >= $1) { a[x]=0; } }}' |
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<!-- | |
Documented at | |
http://linux.die.net/man/5/fonts-conf | |
To check font mapping run the command at terminal | |
$ fc-match 'helvetica Neue' |