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
function find_git_branch { | |
local dir=. head | |
until [ "$dir" -ef / ]; do | |
if [ -f "$dir/.git/HEAD" ]; then | |
head=$(< "$dir/.git/HEAD") | |
if [[ $head == ref:\ refs/heads/* ]]; then | |
git_branch=" (${head#*/*/})" | |
elif [[ $head != '' ]]; then | |
git_branch=' (detached)' | |
else |
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
javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}} |
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
[2:24pm] <MaximusColourum_>four tet | |
[2:24pm] <MaximusColourum_> eoto | |
[2:24pm] <MaximusColourum_> sound tribe sector 9 | |
[2:24pm] <MaximusColourum_> 5 style | |
[2:25pm] <MaximusColourum_> the duo | |
[2:25pm] <MaximusColourum_> aka Benevento Russo Duo | |
[2:25pm] <MaximusColourum_> ryduh hope that helps keep you going for a while ^^ | |
[2:26pm] <ryduh> it will lol. thanks. I'm checking out Four Tet right now | |
[2:27pm] <MaximusColourum_> the next two are electronica jam bands. the duo play an old ass soundcraft keyboard and a simple jazz drum set. 5 style is as it says in the name, a hodge podge of stuff |
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 defined('SYSPATH') or die('No direct script access.'); | |
class Helper_States | |
{ | |
public static $state_list = array( | |
'alabama' => 'Alabama', | |
'alaska' => 'Alaska', | |
'arizona' => 'Arizona', | |
'arkansas' => 'Arkansas', |
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
#!/bin/bash | |
dir=$(pwd) | |
project='' | |
# Check for Git | |
type -P git || { echo 'Git is not installed. Exiting.'; exit 1; } | |
while [ "$1" != '' ] | |
do | |
case $1 in |
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
#!/bin/bash | |
dir=$(pwd) | |
project='' | |
# Check for Git | |
type -P git || { echo 'Git is not installed. Exiting.'; exit 1; } | |
while [ "$1" != '' ] | |
do | |
case $1 in |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title><?php echo $title ?></title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<?php foreach ($styles as $file) echo HTML::style($file), "\n" ?> | |
<?php foreach ($scripts as $file) echo HTML::script($file), "\n" ?> | |
</head> | |
<body> | |
<div id="page"> |
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 defined('SYSPATH') or die('No direct script access.'); | |
class Controller_Base extends Controller_Template | |
{ | |
public $auto_render = TRUE; | |
public $template = 'template/template'; | |
protected $session; | |
public function __construct(Request $request) | |
{ |
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
/* DISCLAIMER: This file was based off of YUI reset and font css files. */ | |
html{color:#000;background:#FFF;} | |
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td {margin:0;padding:0;color:#222;} | |
table { border-spacing: 0; border-collapse: collapse; } | |
th, td { border:1px solid #000; padding:.5em; } | |
th { font-weight:bold; text-align:center;} | |
fieldset,img {border:0;} | |
address,caption,cite,code,dfn,em,strong,var { font-style:normal; font-weight:normal; } |
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 | |
/** | |
* The directory in which your application specific resources are located. | |
* The application directory must contain the bootstrap.php file. | |
* | |
* @see http://kohanaframework.org/guide/about.install#application | |
*/ | |
$application = '../application'; |
OlderNewer