Skip to content

Instantly share code, notes, and snippets.

@thinkt4nk
thinkt4nk / reverse-geocoding.js
Created May 10, 2011 15:46
Reverse Geocoding with Google js API
function ReverseGeocodeLatLng(latlng)
{
var geocoder = new google.maps.Geocoder();
if (latlng !== undefined) {
latlng = latlng.split(',');
var LatLng = new google.maps.LatLng(latlng[0],latlng[1]);
geocoder.geocode({location:LatLng},function(result,status) {
if( status == 'success' ) {
var locationString = "";
$(result).each(function() {
@thinkt4nk
thinkt4nk / jquery.character-counter.js
Created May 12, 2011 18:37
Maximum Character Counter
(function($) {
/**
* Maximum Character Counter
* Author: Ryan Bales, Creative Anvil 2011
*
* This plugin allows one to specify a container for a character counter element, set the maximum characters, and add an 'error' class to
* counter elements of offending text inputs
*/
$.fn.jsCharacterCounter = function(options) {
// Set default values
@thinkt4nk
thinkt4nk / array.each.js
Created May 17, 2011 13:58
array.each.js
Array.prototype.each = function(callback) {
for( i=0; i<this.length; i++ ) {
callback(this[i]);
}
}
@thinkt4nk
thinkt4nk / jquery.log.js
Created May 26, 2011 21:40
jquery.log.js
$.fn.log = function(options) {
this.each(function() {
console.log(this);
});
return this;
}
@thinkt4nk
thinkt4nk / RenderReadyConsoleCommand.php
Created June 2, 2011 16:20
Yii class for render-capable console commands
<?php
/**
* Took the components necessary to render views from CController, adding it to a console command
*/
class RenderReadyConsoleCommand extends CConsoleCommand
{
protected $_widgetStack;
public function run($args) { }
public function renderPartial($view,$data=null,$return=true)
{
@thinkt4nk
thinkt4nk / iframe_file_uploader.js
Created July 12, 2011 22:28
File uploader with hidden IFrame
/* FILE UPLOADER */
var CLASS_UPLOADING = 'file-uploading';
var CLASS_UPLOADING_COMPLETE = 'file-uploading-complete';
var CLASS_LOADER_WIDGET = 'file-upload-loader';
var CLASS_LOADER_LABEL = 'file-upload-loader-label';
var CLASS_LOADER_CONTAINER = 'file-upload-container';
var FILE_UPLOAD_URL = '/path/to/handler';
var updateFileContainerState = function(file_input)
{
// hide input
@thinkt4nk
thinkt4nk / addNumberSuffix.js
Created July 28, 2011 18:50
Given a day of the month, return a stringified representation of it
Array.prototype.contains = function(elem)
{
return (this.indexOf(elem) === -1) ? false : true;
}
function addNumberSuffix(n)
{
var suffix = '';
n = parseInt(n);
var number_last_digit = parseInt((''+n).substr(-1,1));
if( [4,5,6,7,8,9,0].contains(number_last_digit) || (n > 10 && n < 14) )
@thinkt4nk
thinkt4nk / reverseGeocode.js
Created August 1, 2011 20:55
Reverse Geocode using google.maps
var inArray = function(needle,haystack) {
for(i=0;i<haystack.length;i++) {
if( needle === haystack[i] ) {
return true;
}
}
}
var reverseGeocode = function(options)
{
if( typeof(options.lat) !== 'undefined' && typeof(options.lng) !== 'undefined' && typeof(options.onReverseGeocode) === 'function' )
@thinkt4nk
thinkt4nk / unsvn.php
Created August 3, 2011 14:48
Remove svn traces from directory structure
<?php
/**
* Script to recursively remove all traces of svn from a directory tree
* Author: Ryan Bales, Creative Anvil 2011
*/
ini_set('memory_limit','512M');
function usage()
{
ob_start(); ?>
@thinkt4nk
thinkt4nk / iter_and_map_example.py
Created August 9, 2011 22:04
iter and map example
class myClass(object):
def __init__(self):
self.elems = ['meh','meep','moop','mop']
self.index = None
def __iter__(self):
return self
def next(self):
if self.index is None:
self.index = 0
return self.elems[self.index]