Archive for February 2008

GWT-Ext – A Java-to-Javascript and AJAX GUI combo

GWT-Ext 2.0

GWT-Ext is a powerful widget library that provides rich widgets like Grid with sort, paging and filtering, Tree’s with Drag & Drop support, highly customizable ComboBoxes, Tab Panels, Menus & Toolbars, Dialogs, Forms and a lot more right out of the box with a powerful and easy to use API. It uses GWT and Ext.

Comments

PARC’s New Sustainability Fellowship 2008

For the first time, PARC is inviting highly qualified students to
apply to a new "Sustainability Fellowship" program—and transform ideas
for a sustainable world into reality.

Learn more and apply online at: http://www.parc.com/sustainfellow

Our Sustainability Fellow will have the opportunity to:

• propose and pursue a project idea;
• be mentored by leading scientists;
• experience PARC's highly collaborative, multidisciplinary culture;
• draw on PARC resources/tools;
• share results through publications, patents, meetings, and
poster sessions; and
• help create potential business opportunities.

Fellowships are paid, and last about 3 months, typically during the
summer. Graduate-level students—including international students—may
apply. (Applications are due March 23, at midnight PST. Decision
Notifications will be sent April 15.)

Please share this information with exceptional students and/or post
the flyer: http://www.parc.com/contact/employment/docs/SustainableFellowship.pdf

ABOUT THE SUSTAINABILITY FELLOWSHIP
People at PARC are passionate about engaging in sustainable practices
and applying technology toward positive environmental and social
change. The Sustainability Fellowship intersects these two passions.
The Sustainability Fellowship began as a grassroots initiative by
dedicated employees. PARC reduces its own carbon footprint where
possible, and then offsets the remainder, by funding this unique
fellowship program. The goal is to support education—by devoting those
same offset funds to help invent a sustainable future.

Comments

Article: Guerrilla’s Guide to Optimizing Rails Applications

Guerrilla's Guide to Optimizing Rails Applications by Alexander Dymo

Rails is slow. Your rails application which does fairy simple database operations will be born slow and will eventually become slower and slower while still not doing anything fancy. That's like getting a new powerful locomotive (on Rails) together with a free bonus of overladen freight cars.

Comments

Article: A Ruby Metaprogramming Introduction

A Ruby Metaprogramming Introduction by John Hume

I was playing around with some unit tests to explore Ruby singleton classes on a recent flight when I decided they could be fleshed out into a pretty nice introduction to some basics of Ruby metaprogramming for those who haven't done much with Ruby (which probably includes most people who've only written Rails applications).

Comments

Blog: Rails: How we test

Rails: How we test by Jay Fields

Unit tests are where we test classes in isolation.

Functional Tests
Functional tests are where we verify that all the pieces of the application interact seamlessly.

External Tests
…interact with the external services. Since these tests are slower to run, they are generally only run on the continuous integration server or while debugging a contract change.

Comments