This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<label> | |
<input type="checkbox"> | |
Is this awesome? | |
</label> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
array( | |
'url' => '...', | |
'title' => '...', | |
'author' => '...', | |
'id' => 123 // the new item | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 ?>" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, "." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<label> | |
<input type="checkbox"> | |
Is this awesome? | |
</label> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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_' ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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() {} |