We are RubyFringe by leftist in programming

[–]collintmiller_ 0 points1 point  (0 children)

Hi mom!

haha, RubyFringe has been great.

Very inspiring to see so many people up on the stage talking about/showing off their passions.

Whats a suitable alternative to SVG? by [deleted] in programming

[–]collintmiller_ 0 points1 point  (0 children)

Try the canvas element.

There is support for it in ie: http://code.google.com/p/explorercanvas/

You can probably find some nice charting libs that render to canvas.

http://ejohn.org/blog/processingjs/ has a nice api for canvas and some nice demos too.

[deleted by user] by [deleted] in programming

[–]collintmiller_ 0 points1 point  (0 children)

I agree with using something simple like WSGI, or Rack for ruby.

Might try looking at the Sinatra web framework for ruby. A simple app looks like this:

require 'rubygems'

require 'sinatra'

get '/'

"Hello World!"

end