Skip to content

Instantly share code, notes, and snippets.

View m00sey's full-sized avatar
🏠
Working from home

Kevin Griffin m00sey

🏠
Working from home
  • GLEIF
  • Philadelphia
View GitHub Profile
-Dee.executable=${ee.home}/simulator/fledge
-Dee.bootclasspath=${ee.home}/lib/net_rim_api.jar
-Dee.javadoc=file:${ee.home}/docs/api
@m00sey
m00sey / ToastPlugin.java
Created June 17, 2011 16:27
Code Snippets for PhoneGap Plugin Post
package com.yourpackage;
import org.json.JSONArray;
import com.phonegap.api.Plugin;
import com.phonegap.api.PluginResult;
public class ToastPlugin extends Plugin {
;Exercise 1.5.
;Ben Bitdiddle has invented a test to determine whether the interpreter he is faced with is using
; applicative-order evaluation or normal-order evaluation. He defines the following two procedures:
;(define (p) (p))
;
;(define (test x y)
; (if (= x 0)
; 0
; y))
;