Skip to content

Instantly share code, notes, and snippets.

View rtgibbons's full-sized avatar

Ryan Gibbons rtgibbons

View GitHub Profile
@rtgibbons
rtgibbons / definition.rb
Created January 25, 2012 02:30 — forked from nemonik/definition.rb
My CentOS-5.7-x86_64 Basebox Template
Veewee::Session.declare({
:cpu_count => '1', :memory_size=> '384',
:disk_size => '10140', :disk_format => 'VDI', :hostiocache => 'off', :ioapic => 'on', :pae => 'on',
:os_type_id => 'RedHat_64',
:iso_file => "CentOS-5.7-x86_64-bin-DVD-1of2.iso",
:iso_src => "http://mirror.steadfast.net/centos/5.7/isos/x86_64/CentOS-5.7-x86_64-bin-DVD-1of2.iso",
:iso_md5 => "55eadec0a6e87c5f2883f734d43fdb58",
:iso_download_timeout => 1000,
:boot_wait => "10", :boot_cmd_sequence => [ 'linux text ks=http://%IP%:%PORT%/ks.cfg<Enter>' ],
:kickstart_port => "7122", :kickstart_timeout => 10000, :kickstart_file => "ks.cfg",
<?php
$playlistID = '9C700F98F6D01E47';
$playlistURI = 'http://gdata.youtube.com/feeds/api/playlists/';
$ytData = simplexml_load_file($playlistURI . $playlistID . '?v=2');
echo "<br/><br/><br/>";
foreach ($ytData->entry as $video) {
echo '<h3>'.$video->title . '</h3>';
var min = $('#carousel-canvas').width()
var max = $('#carousel-canvas > div').width();
$('#carousel .right-arrow').click(function(event) {
event.preventDefault();
var spot = $('#carousel-canvas').position().left + $('#carousel-canvas').width() - $('#carousel-canvas > div').position().left;
if (spot != max && !($(this).hasClass('animated'))){
var link = $(this);
link.addClass('animated');
$('#carousel-canvas > div').stop(true,true).clearQueue().animate({"left":"-=440px"},400, function() {link.removeClass('animated');});
}
<?php
function add() {
if (!$this->Session->check('location')) {
$this->Session->setFlash(__('Need to enter your location ID and password first'));
$this->redirect(array('action' => 'signin'));
} else {
//set data from session to pre-populate form
$location = $this->Session->read('location.Segmentation');
pr($location);
if (!empty($this->data)) {
<?php
function beforeFilter(){
parent::beforeFilter();
if ($this->action != 'index'){
if (!$this->Session->check('location')) {
$this->Session->setFlash(__('Need to enter your location ID and password first'));
$this->redirect(array('action' => 'index'));
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<registration>
<status code="200">Ok</status>
<request>
<param name="unknown">1</param>
</request>
<data>
<locations>
<location>
<id type="practice|location">LOCA-123</id>
(default) 13 queries took 18 ms Nr Query Error Affected Num. rows Took (ms)
1 SHOW FULL COLUMNS FROM `cake_programs` 4 4 2
2 SELECT CHARACTER_SET_NAME FROM INFORMATION_SCHEMA.COLLATIONS WHERE COLLATION_NAME= 'latin1_swedish_ci'; 1 1 1
3 SHOW FULL COLUMNS FROM `cake_dispensing_solutions` 8 8 5
4 SHOW FULL COLUMNS FROM `cake_patient_buildings` 9 9 2
5 SHOW FULL COLUMNS FROM `cake_practice_operations` 9 9 3
6 SHOW FULL COLUMNS FROM `cake_team_training_educations` 13 13 2
7 SHOW FULL COLUMNS FROM `cake_locations` 22 22 2
8 START TRANSACTION 0 0
9 INSERT INTO `cake_programs` (`goals`, `modified`, `created`, `id`) VALUES ('{\"year_1\":\"1,111\",\"year_2\":\"$11.11\",\"year_3\":\"3000\"}', '2010-12-21 15:44:34', '2010-12-21 15:44:34', '4d111fc2-61d4-40de-8154-0309e0943fa0') 1 1
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) {
$$value['id'] = stripslashes( $value['std'] );
} else {
$$value['id'] = stripslashes( get_settings( $value['id'] ) );
}
}
?>
@rtgibbons
rtgibbons / Routing Table
Created January 18, 2011 20:00
netstat -rn
Internet:
Destination Gateway Flags Refs Use Netif Expire
default 172.22.0.1 UGSc 40 0 en0
default 172.22.0.1 UGScI 0 0 en1
default 172.22.25.2 UGScI 0 0 ppp0
66.64.23.42 172.22.0.1 UGHS 0 0 en0
127 127.0.0.1 UCS 0 0 lo0
127.0.0.1 127.0.0.1 UH 13 2473371 lo0
169.254 link#4 UCS 0 0 en0
172.22 link#4 UCS 6 0 en0
function makeCounter() {
// `i` is only accessible inside the closure created when the
// `makeCounter` function is invoked.
var i = 0;
return function() {
console.log( ++i );
};
}