Links from my Lightning Talk

15 views
Skip to first unread message

Charlie Robbins

unread,
Jul 8, 2010, 9:39:40 PM7/8/10
to ny...@googlegroups.com
All,

Great meetup tonight; really enjoyed the discussion. If you'd like to learn more about the stuff I was talking about:

Vows: Async Testing in node.js

Resourcer: Document-based ORM in node.js (Project under active development):

NYC Languages + Compilers: New NYC meetup focusing on programming languages, compilers, parse trees, and other seemingly esoteric things:

Cheers,
Charlie

Jeremy Ashkenas

unread,
Jul 8, 2010, 10:04:42 PM7/8/10
to ny...@googlegroups.com
Nice idea to send the links... If you'd like to play with the
Buddhabrot from my lightning talk, here's the page:

http://jashkenas.s3.amazonaws.com/misc/buddhabrot/buddhabrot.html

And here's the source:

http://gist.github.com/463880

Cheers,
Jeremy

Marak Squires

unread,
Jul 9, 2010, 10:43:52 AM7/9/10
to ny...@googlegroups.com
Great meetup last night! Awesome discussions as usual!

translate.js - dual-sided translation library

gemini.js - dual-sided library library ( unreleased )

- Marak



--
You received this message because you are subscribed to the Google Groups "NYC.js" group.
To post to this group, send email to ny...@googlegroups.com.
To unsubscribe from this group, send email to nycjs+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nycjs?hl=en.


Jeff Larson

unread,
Jul 9, 2010, 10:55:49 AM7/9/10
to ny...@googlegroups.com
Thanks all for letting me bumble through my talk. I really enjoyed the discussions.

I fixed the error in the speed chart and it's live here:


The main bit is here:


--Jeff

Josh Knowles

unread,
Jul 9, 2010, 11:01:28 AM7/9/10
to ny...@googlegroups.com
Great to see everyone last night. The link to register for the Chef
talk next Tuesday is at http://nycrb.eventbrite.com/

> --
> You received this message because you are subscribed to the Google Groups
> "NYC.js" group.
> To post to this group, send email to ny...@googlegroups.com.
> To unsubscribe from this group, send email to
> nycjs+un...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/nycjs?hl=en.
>

--
Josh Knowles
phone: 509-979-1593
email: joshk...@gmail.com
web: http://joshknowles.com

Mike Taylor

unread,
Jul 11, 2010, 12:03:57 AM7/11/10
to NYC.js
I was scratching my head for a bit trying to figure out why this
wasn't running in Opera (10.60+), and it appears that they yanked
context.createImageData() at some point. It's not clear to me why
thats unsupported, but to getImageData() will also return an ImageData
object.

So if you change line 16 of the (generated) source from:
image = context.createImageData(N, N);
to
image = context.getImageData(0, 0, N, N);

It'll run in Opera. :D

A fancier solution that I found on the web:

if (window.CanvasRenderingContext2D && !
CanvasRenderingContext2D.prototype.createImageData &&
window.ImageData) {
CanvasRenderingContext2D.prototype.createImageData =
function(w,h) {return new ImageData(w,h) };
}

Awesome work, btw.
Reply all
Reply to author
Forward
0 new messages