From 59a96f5b49e8f5a151213fe1c549fd307b611f4d Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Fri, 10 Jun 2011 12:28:57 -0400 Subject: [PATCH] sketching out racket days --- NOTES => notes/NOTES | 0 notes/racket-days-abstract.txt | 44 ++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) rename NOTES => notes/NOTES (100%) create mode 100644 notes/racket-days-abstract.txt diff --git a/NOTES b/notes/NOTES similarity index 100% rename from NOTES rename to notes/NOTES diff --git a/notes/racket-days-abstract.txt b/notes/racket-days-abstract.txt new file mode 100644 index 0000000..e5887a1 --- /dev/null +++ b/notes/racket-days-abstract.txt @@ -0,0 +1,44 @@ +What is Whalesong? + + Whalesong is a compiler from Racket bytecode to JavaScript. + + +Why would anyone care? + + Because it allows Racket programs to be deployed on the web. + Furthermore, Racket programs can access native JavaScript APIs. + + +What do you want to show? + + I want to show the tool in action, programs that use it, and some + of the internals of how it works. + + I want to show uses of the FFI. + + As well as World programming. + + I also want to show performance numbers (which means benchmarks...) + + +How do you use it? + + I have a command line tool that consumes Racket programs and + produces standalone JavaScript applications. + + +What were the technical advantages of your approach? + + Reusing the Racket compiler. Strong possibility of reusing most + of the Racket standard library, as soon as we can bootstrap + racket/base. + +What were some of the technical challenges? + + Supporting the features of the Racket virtual machine (tail calls, + continuations) + + +What needs to be done next? + + Adding enough primitives to run racket/base