Skip to content

Instantly share code, notes, and snippets.

View BaylorRae's full-sized avatar

Baylor Weathers BaylorRae

View GitHub Profile
lp -o media="30323 Shipping Label" -o fit-to-page -o landscape -d DYMO_LabelWriter_450_Turbo "./file.pdf"
Feature: offer price
Scenario: accept offer price
Given I offer a price of "5.75"
When the price is accepted
Then I should be able to send payment
<ol>
<li>
<a data-notifications="10" class="button" href="#">New Comments on Your Posts</a>
</li>
<li>
<a class="button" href="#">Number of Post Likes :)</a>
</li>
<ol>
<?php
// http://michelf.ca/projects/php-markdown/
require_once 'markdown.php';
/**
* parses markdown before printing on the page
*
* you could put this in MarkdownCommentParser::comment
* if you wanted to save off the html
<label>
<input type="checkbox">
Is this awesome?
</label>
@BaylorRae
BaylorRae / install.sh
Created October 12, 2012 01:30 — forked from pateketrueke/install.sh
Apache & PHP / Heroku pre-compile script
mkdir /app
# Compiling Apache
curl http://www.us.apache.org/dist/httpd/httpd-2.2.22.tar.gz | tar xzf -
cd httpd-2.2.22
./configure --prefix=/app/apache --with-z=/usr/local/zlib --enable-rewrite --enable-so --enable-deflate --enable-expires --enable-headers
make && make install
array(
'url' => '...',
'title' => '...',
'author' => '...',
'id' => 123 // the new item
)
<form method="POST">
<div class="field">
<label for="url">URL:</label>
<input type="text" for="url" name="website[url]" value="<?php echo $website->url ?>" />
</div>
<div class="field">
<label for="title">Title:</label>
<input type="text" for="title" name="website[title]" value="<?php echo $website->title ?>" />
set :user, "USERNAME"
# about the application
set :application, "example.com"
set :port, 2222
# the type and location of the repository
set :scm, :git
set :repository, "."
# product.rb
class Product < ActiveRecord::Base
has_many :categorizations
has_many :categories, :through => :categorizations
end
# category.rb
class Category < ActiveRecord::Base
has_many :categorizations
has_many :products, :through => :categorizations