Skip to content

Instantly share code, notes, and snippets.

View danbirlem's full-sized avatar

Dan Birlem danbirlem

View GitHub Profile
@danbirlem
danbirlem / osha.txt
Created August 24, 2011 02:17
CA OSHA Review Slider Code
http://ca.oshareview.com/wp-content/uploads/2011/04/osha-compliance-homepage-slider.jpg
/products/compliance-program/
OSHA Review Compliance Program
Partial Staged
Disable 'Read More' Link
Our Compliance Program includes a bi-monthly CE-based newsletter that provides dental professionals with consistent, up-to-date, accurate regulatory information in an easy-to-read format delivered right to your door.
---
http://ca.oshareview.com/wp-content/uploads/2011/04/supersonic-slider.jpg
@danbirlem
danbirlem / sass css
Created July 7, 2011 00:35
sass css
w = container width
s = spacing
n = amount of columns
.columns {
width: 960px;
overflow: hidden;
}
/**
@danbirlem
danbirlem / gemfile
Created June 16, 2011 19:33
dmanexe's output of gem "list"
*** LOCAL GEMS ***
abstract (1.0.0)
actionmailer (3.0.8, 2.3.11)
actionpack (3.0.8, 2.3.11)
activemodel (3.0.8)
activerecord (3.0.8, 2.3.11)
activeresource (3.0.8, 2.3.11)
activesupport (3.0.8, 2.3.11)
arel (2.0.10)
@danbirlem
danbirlem / boot.rb
Created June 16, 2011 19:32
dmanexe's Redmine 1.2.0 config/boot.rb
# Don't change this file!
# Configure your app in config/environment.rb and config/environments/*.rb
RAILS_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(RAILS_ROOT)
module Rails
class << self
def boot!
unless booted?
preinitialize
@danbirlem
danbirlem / proftpd.conf
Created June 10, 2011 20:05
Default Working proFTPd Configuration File for Ubuntu 10.10
Include /etc/proftpd/modules.conf
# Set off to disable IPv6 support which is annoying on IPv4 only boxes.
UseIPv6 on
# If set on you can experience a longer connection delay in many cases.
IdentLookups off
ServerName "Your Server Name Here"
ServerType standalone
DeferWelcome off
@danbirlem
danbirlem / HTML 4.01 Transitional Starter
Created March 11, 2011 18:54
Compliant HTML template for starting a web page
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Example</title>
</head>
<body>