Skip to content

Instantly share code, notes, and snippets.

View sdball's full-sized avatar

Stephen Ball sdball

View GitHub Profile
@sdball
sdball / usa_state_hash.rb
Created January 18, 2011 22:25
United States State Abbreviation Hash
@states = {
AL: "Alabama",
AK: "Alaska",
AZ: "Arizona",
AR: "Arkansas",
CA: "California",
CO: "Colorado",
CT: "Connecticut",
DE: "Delaware",
FL: "Florida",
@sdball
sdball / googlemaps_loading_lots_of_points.js
Created January 1, 2011 23:29
A sampling of code for loading/unloading thousands of points as the user pans around the map.
function requestMarkers() {
// no loading markers when zoomed way out
if (map.getZoom() < 11) { return };
// start dropping markers before the browser bogs down
if (markers.length > 50) {
dropSuperfluousMarkers();
}
$.ajax({
// [snip typical ajax data request]
success: populateMarkers,
@sdball
sdball / apex_fib.apex.java
Created December 13, 2010 18:15
Calculates arbitrary points in the fibonacci sequence using recursion. This is actually salesforce Apex code, not java.
// this is, obviously, just an apex exploration
// i.e. horribly inefficient
Integer fib(Integer n) {
if (n <= 1) return 1; else return fib(n-1) + fib(n-2);
}
for (Integer i=0; i<=12; i++) {
System.debug(fib(i));
}
# add "[git]" to the prompt if in a git directory
# example (normal dir):
# user@host:/PATH
# $
# (in git directory)
# user@host:/PATH/GIT/PROJECT
# [git]$
export PROMPT_COMMAND='_GIT_LABEL= ;[ -d ".git" ] && _GIT_LABEL="[git]"'
export PS1="\u@\h:\w\n\${_GIT_LABEL}\$ "
@sdball
sdball / calculate_contentdm_scaling.php
Created September 9, 2010 15:30
A scaling function for CONTENTdm
<?php
/**
* Return CONTENTdm scaling of $width and $height to $maxwidth and $maxheight.
*
* @param string $width starting width
* @param string $height starting height
* @param string $maxwidth width limit
* @param string $maxheight height limit
* @return array dmscale, dmwidth, dmheight