Skip to content

Instantly share code, notes, and snippets.

View eddiemonge's full-sized avatar

Eddie Monge Jr eddiemonge

View GitHub Profile
@eddiemonge
eddiemonge / .gitignore
Created December 3, 2011 23:13
Wordpress Ignore Files
# System, IDE and tmp files
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
# Wordpress Files
.htaccess
wp-*.php
@eddiemonge
eddiemonge / sass_converter.rb
Created November 7, 2011 03:34 — forked from wolfeidau/sass_converter.rb
Sass plugin for Jekyll
module Jekyll
# Sass plugin to convert .scss to .css
#
# Note: This is configured to use the new css like syntax available in sass.
require 'sass'
class SassConverter < Converter
safe true
priority :low
def matches(ext)
@eddiemonge
eddiemonge / jqm-patch.md
Created October 17, 2011 22:25
jQuery Mobile Bug Patching

Tips for jQuery Mobile Bug Patching

Requirements:

PHP Web Server

Some common ones:

@eddiemonge
eddiemonge / domain.conf
Created May 4, 2011 18:37
Virtual Host Example
<VirtualHost IPADDRESS:PORT>
ServerAdmin [email protected]
ServerName domain.com
ServerAlias www.domain.com
DocumentRoot /var/www/html
<Directory "/var/www/html">
Options FollowSymLinks
AllowOverride All
Order allow,deny