Skip to content

Instantly share code, notes, and snippets.

View rpupkin77's full-sized avatar

Paul Thompson rpupkin77

View GitHub Profile
@rpupkin77
rpupkin77 / jquery.rocslide.js
Created July 8, 2011 17:17
Simple jQuery Slideshow (tested on 1.5)
/** ROCSLIDE - SIMPLE JQUERY SLIDESHOW FADER
*
*
* settings are as follows:
* start - item to start at
* seconds - duration of each state
* pager_element - selector that you want the auto-generated pages and buttons to be applied to (via .html())
* mouse_pause - true means item will be paused on rollover of content
* current_class - css class that the current item in pager element will use (only if pager element is set)
* prev_text - text to be used in auto-generated prev link (on if pager element is set)
@rpupkin77
rpupkin77 / Full Sample for v 0.3
Created July 15, 2011 20:54
place engine - jquery plugin for gmaps place search
<html>
<head>
<title>Place Engine Test</title>
</head>
<body>
<a href="#" id="clear">Clear markers</a><br />
<div id="map" style="width:100%;height:600px;">
</div>
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "hashicorp/precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.network :private_network, ip: "192.168.33.21"