Skip to content

Instantly share code, notes, and snippets.

View BaylorRae's full-sized avatar

Baylor Weathers BaylorRae

View GitHub Profile
<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
<?php
function markdown_filter($data, $post) {
// change this to match your heroku app url
$ch = curl_init('http://radiant-stone-4578.heroku.com/parse');
curl_setopt_array($ch, array(
// don't print the result when done
CURLOPT_RETURNTRANSFER => true,
<label>
<input type="checkbox">
Is this awesome?
</label>
<?php
// Allows multiple __autoload stacks
// and keeps autoloader in Huck class
spl_autoload_register(array('Huck', 'autoload'));
class Huck {
public static function autoload($class_name) {
if( substr($class_name, 0, 5) === 'Huck_' ) {
<?php
class PubSub {
private static $events = array(); // all subscriptions
// Don't allow PubSub to be initialized outside this class
private function __construct() {}
private function __clone() {}