Skip to content

Instantly share code, notes, and snippets.

View kirkegaard's full-sized avatar

Christian Kirkegaard kirkegaard

View GitHub Profile
jQuery.jQueryRandom = 0;
jQuery.extend(jQuery.expr[":"], {
random: function(a, i, m, r) {
if (i == 0) {
jQuery.jQueryRandom = Math.floor(Math.random() * r.length);
};
return i == jQuery.jQueryRandom;
}
});
@kirkegaard
kirkegaard / pushpull.sass
Created December 7, 2009 02:00
push and pull for 960 plugin for Compass
// overrides grid-unit-base and add position:relative
=grid-unit-base(!gutter_width = !ninesixty_gutter_width)
:display inline
:position relative
:float left
:margin
:left= !gutter_width / 2
:right= !gutter_width / 2
// added a grid-push and grid-pull
;(function($) {
// displays snowflakes in a giving selector
$.fn.snow = function(options) {
var opts = $.extend({}, $.fn.snow.defaults, options);
// generates a random position
function getRandomPosition(width) {
return Math.floor(Math.random() * width);
<?php
class Planner_AuthController extends Zend_Controller_Action {
protected $_flashMessenger = null;
protected $_form = null;
public function init() {
$this->_form = new Planner_Form_Login();
$this->_flashMessenger = $this->_helper->getHelper('FlashMessenger');
<?php
class Planner_AuthController extends Zend_Controller_Action {
protected $_flashMessenger = null;
protected $_form = null;
public function getForm() {
if(null === $this->_form) {
$this->_form = new Planner_Form_Login();
<?php
class Planner_Form_Login extends Zend_Form {
public function init() {
$this->setAction('/auth/process/');
$this->setElementFilters(array('StringTrim', 'StripTags'));
$this->addElement('text', 'username', array(
'label' => 'Username:',
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>test</title>
<link rel="stylesheet" href="styles/default.css" type="text/css" media="screen" charset="utf-8"/>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>test</title>
<link rel="stylesheet" href="styles/default.css" type="text/css" media="screen" charset="utf-8"/>
<?php
class Planner_Bootstrap extends Zend_Application_Module_Bootstrap {
protected $_moduleName = "Planner";
protected function _initNavigations() {
$this->bootstrap('View');
$view = $this->getResource('View');
<?php
class Planner_AuthController extends Zend_Rest_Controller {
protected $_flashMessenger = null;
protected $_form = null;
public function getForm() {
if(null === $this->_form) {
$this->_form = new Planner_Form_Login();