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
Your original URL string: | |
http://chart.apis.google.com/chart?cht=bhs&chs=500x600&chco=FF9900|FF3300&chxt=r,x,t&chxl=0:|ManningBooks|groovymag|graemerocher|iamthechad|ldaley|GeertjanW|HamletDRC|snaglepus|daveklein|gr8conf|RobertFischer|dima767|glaforge|grailsmx|mittie|grailsframework|wangjammer5|grailspodcast|hansamann|aalmiray&chd=t:27,20,20,18,16,15,15,15,13,12,10,10,9,9,8,8,8,7,7,7 | |
Tweaked URL string: | |
http://chart.apis.google.com/chart?cht=bhs&chs=500x600&chco=FF9900|FF3300&chxt=r,x,t&chxl=0:|ManningBooks|groovymag|graemerocher|iamthechad|ldaley|GeertjanW|HamletDRC|snaglepus|daveklein|gr8conf|RobertFischer|dima767|glaforge|grailsmx|mittie|grailsframework|wangjammer5|hansamann|grailspodcast|aalmiray|1:|0|10|20|27|2:|0|10|20|27&chd=t:27,20,19,18,16,15,15,15,13,12,10,10,9,9,8,8,8,7,7,7&chds=0,27 | |
What I added: | |
scale="${[min1, max1, minN, maxN]}" (translates to chds in the final string) |
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
<jnlp | |
spec="1.0+" | |
codebase="http://lwjgl.org/jnlp/" | |
href="extension.php"> | |
<information> | |
<title>LWJGL</title> | |
<vendor>LWJGL</vendor> | |
<homepage href="http://lwjgl.org/"/> | |
<description>LWJGL webstart extension</description> | |
<description kind="short">LWJGL webstart extension</description> |
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
def setupDB = { | |
model.db = new FeatherDB(new FileSystemBackend()) | |
if (!model.backend.doesDatabaseExist("testdb")) { | |
try { | |
model.db.addDatabase("testdb") | |
} catch (Exception ex) { | |
ex.printStackTrace() | |
} | |
} | |
} |
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
/* Groovy source file | |
* Created 27 August 2007 | |
* @author jwilliams | |
*/ | |
package com.fintech.fos.client.ui | |
import java.awt.AlphaComposite | |
import java.awt.Color | |
import java.awt.Composite |
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
import com.mongodb.* | |
public class MongoUtils { | |
public static void decorateCollectionClass() { | |
//meta programming convenience methods courtesy of jareed | |
DBCollection.metaClass { | |
findAll << { LinkedHashMap query -> delegate.find(query as BasicDBObject) } | |
findAll << { LinkedHashMap query, LinkedHashMap filter -> delegate.find(query as BasicDBObject, filter as BasicDBObject) } | |
find << { LinkedHashMap query -> delegate.find(query as BasicDBObject).find {true} } | |
find << { LinkedHashMap query, LinkedHashMap filter -> delegate.find(query as BasicDBObject, filter as BasicDBObject).find {true} } |
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
import grails.util.GrailsNameUtils | |
import org.codehaus.groovy.grails.scaffolding.* | |
import org.codehaus.groovy.grails.commons.GrailsDomainClass | |
/** | |
* Gant script for deleting domain class, crud views, and tests | |
* | |
* @author jwill | |
*/ |
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(){ | |
var GameBoard; | |
// GameBoard class for Match 3 game | |
// @author: jwill | |
GameBoard = function(x, y) { | |
var _a, _b, _c, _d, array, i, j; | |
// create grid | |
this.grid = new Array(); | |
this.maxX = x; | |
this.maxY = y; |
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
apply plugin: 'groovy' | |
apply plugin: 'application' | |
repositories { | |
flatDir name:'lib', dirs:'lib' | |
mavenCentral() | |
} | |
dependencies { |
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
ThreeJS By Example | |
(port of Nehe OpenGL Tutorials to Three.js and CoffeeScript) | |
Lesson 01: https://plus.google.com/105400736676917752271/posts/6Y17ica2nyR | |
Lesson 02: https://plus.google.com/105400736676917752271/posts/5UeNbaAFWu3 | |
Lesson 03: https://plus.google.com/105400736676917752271/posts/4FtT6dESUME | |
Lesson 04: https://plus.google.com/105400736676917752271/posts/Km28jYmoJN2 | |
Lesson 05: https://plus.google.com/105400736676917752271/posts/WhYQLSqAyvU |
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
emacs -batch --visit=Changelog.org --funcall org-export-as-pdf |
OlderNewer