This file contains hidden or 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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
This file contains hidden or 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
<!-- | |
Mixpanel surveys rely on a theme to style their dialog boxes. Right now | |
it's a very, very early theme, to ensure compatibility. If you'd prefer | |
fancy dialog boxes, you set them up by defining your own theme in the | |
values/styles.xml file in your application resources. | |
--> | |
<!-- this is the current "out of the box" theme for Android surveys, |
This file contains hidden or 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
window.Chorus = (function() { | |
// Chorus is a simple way to wait on a group of callbacks that | |
// don't depend on each other. | |
// | |
// var loadManager = Chorus.create(); | |
// | |
// var roomImage = new Image(); | |
// roomImage.onload = loadManager.addCallback(); | |
// roomImage.src = roomImageURL; |
This file contains hidden or 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 [javax.imageio ImageIO] | |
[java.awt.image BufferedImage]) | |
(require 'clojure.java.io) | |
(require 'incanter.core) | |
(defn read-image-matrix [imagefile] | |
(let [imagefile (clojure.java.io/as-file imagefile) | |
raster (.. (. ImageIO read imagefile) getData) | |
left (. raster getMinX) |
This file contains hidden or 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
(ns workstationClojure.quoted-printable | |
(:require [clojure.java.io :as jio]) | |
(:import [java.io ByteArrayOutputStream ByteArrayInputStream] | |
[org.apache.geronimo.mail.util QuotedPrintableEncoder])) | |
;; http://geronimo.apache.org/maven/specs/geronimo-javamail_1.4_spec/1.6/apidocs/org/apache/geronimo/mail/util/QuotedPrintableEncoder.html | |
;; In project.clj, | |
;; [geronimo/geronimo-mail "1.1"] | |
;; Geronimo's API is asymmetric, and in somewhat weasily ways, so we |