View calculate_contentdm_scaling.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 |
View bash_profile_snippets.bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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}\$ " |
View apex_fib.apex.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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)); | |
} |
View googlemaps_loading_lots_of_points.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, |
View usa_state_hash.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@states = { | |
AL: "Alabama", | |
AK: "Alaska", | |
AZ: "Arizona", | |
AR: "Arkansas", | |
CA: "California", | |
CO: "Colorado", | |
CT: "Connecticut", | |
DE: "Delaware", | |
FL: "Florida", |
View central_office_kml_example.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Placemark> | |
<name>Central Office</name> | |
<description>1049 N 3RD ST</description> | |
<styleUrl>#co</styleUrl> | |
<Point> | |
<coordinates>-99.73335,32.45157</coordinates> | |
</Point> | |
</Placemark> |
View typical_dsl_coverage_polygon.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Placemark> | |
<styleUrl>#dsl</styleUrl> | |
<Polygon> | |
<outerBoundaryIs> | |
<LinearRing> | |
<coordinates> | |
-83.98093654387421,34.36732 | |
-83.98223988881587,34.377583641421 | |
-83.98610089352155,34.38739925343817 |
View index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Rewriting UR Links</title> | |
</head> | |
<body> | |
<h1>Rewriting UR Links</h1> | |
<p> | |
<a href="http://na8.salesforce.com/something">Link to http://na8.salesforce.com/something that opens in a new tab/window.</a> |
View text_to_link.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Text to Link</title> | |
</head> | |
<body> | |
<h1>Text into Link</h1> | |
<table border="1" cellspacing="5" cellpadding="5"> | |
<tr><th>xyzzyb was just text</th></tr> |
View gist:1218338
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem 'redis' | |
gem 'redis-store', '1.0.0.rc1' |
OlderNewer