download and un-tar
create db directory
mkdir -p /data/db
export mongo bin directory
export MONGO_BIN="/usr/local/mongodb/mongodb-osx-x86_64-1.4.4/bin"
export PATH="$PATH:$MONGO_BIN"
<?php | |
/** | |
* @file | |
* Default theme implementation to display a block. | |
* | |
* Available variables: | |
* - $block->subject: Block title. | |
* - $content: Block content. | |
* - $block->module: Module that generated the block. |
class Resignation | |
attr_accessor :name,:date,:kind_note,:reason_array,:signoff | |
def initialize(employee_name,end_date) | |
@name=employee_name | |
@date=end_date | |
@kind_note = "With great sorrow" | |
end | |
def random_reasons(reasons) | |
@reason_array=Array(reasons) | |
end |
/* | |
Filename | |
Description of the file and it's contents (sometimes followed by a table of contents) | |
*/ | |
/* Section heading | |
-------------------------------------------------- */ | |
/* Sub heading | |
------------------------- */ |
/* | |
Filename | |
Description of the file and it's contents (sometimes followed by a table of contents) | |
*/ | |
/* Section heading | |
-------------------------------------------------- */ | |
/* Sub heading | |
------------------------- */ |
#content-wrapper | |
+container | |
#about | |
// Default (smallest screens) | |
+column(100%) | |
background-color: #ccc | |
// Respond to other screen widths |
#!/usr/bin/env bash | |
src=$PWD | |
h5bp_remote=git://github.com/h5bp/html5-boilerplate.git | |
bootstrap_remote=git://github.com/twitter/bootstrap.git | |
h5bp_branch=master | |
bootstrap_branch=master |
# Output Directory | |
OUTPUT = ../lib | |
all: css | |
css: | |
@echo "stylus => css" | |
@stylus \ | |
-c \ | |
-u nib \ |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<title>Nice Buttons</title> | |
<style> | |
* { margin: 0; padding: 0; } | |
ul { | |
padding: 20px; | |
width: 80px; | |
float: left; |
download and un-tar
create db directory
mkdir -p /data/db
export mongo bin directory
export MONGO_BIN="/usr/local/mongodb/mongodb-osx-x86_64-1.4.4/bin"
export PATH="$PATH:$MONGO_BIN"
/* | |
Form Elements | |
-- Styled to look like native Safari on OS X. | |
-- Drop-down <select> menus are unaffected. | |
-- Buttons are unaffected. Native OS style. | |
*/ | |
::-webkit-input-placeholder { | |
color: #000; | |
} |