Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jvc26 on github.
  • I am jvc26 (https://keybase.io/jvc26) on keybase.
  • I have a public key whose fingerprint is DE01 B210 01AB F654 8392 73E8 42DC C22B 3057 BAF2

To claim this, I am signing this object:

### Keybase proof
I hereby claim:
* I am jvc26 on github.
* I am jvc26 (https://keybase.io/jvc26) on keybase.
* I have a public key whose fingerprint is 6888 4655 A7D6 ADA5 C243 B849 1E9A D4FA A1E9 ECB0
To claim this, I am signing this object:
@jvc26
jvc26 / fontawesome.sty
Last active August 29, 2015 14:03 — forked from sway/fontawesome.sty
% FontAwesome (http://fortawesome.github.com/Font-Awesome/) bindings for (Xe)LaTeX
% Author: Honza Ustohal <honza@egoistic.biz>
%
% Translation of FontAwesome's private range characters into XeTeX symbols. All icons are camel-cased and prefixed with 'fa', i.e. what was .icon-align-center the CSS version of FontAwesome becomes \faAlignCenter
% This might be reworked into a full blown package in the near future
%
% Prerequisite:
% XeLaTeX, FontAwesome installed as a system font accessible by XeLaTeX
%
% Usage:
@jvc26
jvc26 / nginx
Last active December 20, 2015 08:09
nginx config
server {
server_name example.com;
access_log /path/to/logs/access.log;
error_log /path/to/logs/error.log;
location / {
uwsgi_pass unix:/tmp/{{ app_name }}.sock;
include /etc/nginx/uwsgi_params;
}
@jvc26
jvc26 / pear.rb
Created November 29, 2011 12:11 — forked from jakemcgraw/pear.rb
Puppet PHP Pear provider
# Puppet PHP PEAR Package support
#
# Originally forked from https://gist.github.com/305778 by jvc26
#
# == Instructions for use:
# This file should be put within {module}/lib/puppet/provider/package/pear.rb
#
# In order for it to be loaded, you require pluginsync=true set within your puppet.conf
require 'puppet/provider/package'