Ask for Help

Does anyone have suggestions for an off-the-shelf data reporting tool to help display some data in a webapp for internal users to see?

form.submit() vs. <form onsubmit="...">: An onsubmit attribute added to a form element doesn't get called when form.submit() is called from Javascript.

  • Try using Javascript to attach an onsubmit handler rather than adding it as an attribute of the form element.
  • Instead of calling form.submit() from Javascript, send a click event to a hidden submit button.

Timezones are being ignored when a date is passed into ActiveRecord's find method, but are not ignored when passed into other methods.

This seems to be due to a bug in ActiveSupport's to_s(:db). One solution is to override to_s and fix the time zone.

Interesting Things

  • When trying to create an ssh tunnel to EngineYard, set GatewayPorts to yes in sshd, otherwise the tunnel won't bind to your local computer.

  • WAVE Toolbar (Web accessiblity evaluation tool) is a great Firefox extension that shows you which parts of your pages have accessibility issues.

  • The next meeting of the San Francisco Pivotal Tracker Users Group is tonight at 6:30 PM at the Pivotal Labs headquaters on Market St.

Sean BeckettSean Beckett
Startup Sandbox for socially reponsible ventures
edit Posted by Sean Beckett on Wednesday November 04, 2009 at 03:47PM

Hackfest for the Light and Women 2.0 are putting on a Startup Sandbox in November at Microsoft. They especially encourage socially responsible software ideas and companies to attend -- bring your whole team or just an idea and ask for whatever help you need.

====

Come spend a whirlwind 56 hrs with like-minded entrepreneurs, engineers, designers, dreamers, and work on any of the following --

  • Make a working prototype
  • Create an investor presentation
  • Come with your company and get feedback
  • Come with an idea to make a mock up
  • Practice and learn new skills

The event starts at 6pm Friday Nov 20, and goes until Sunday evening, Nov 22.

Location: Microsoft, 835 Market Street (Westfield Center), Suite #700

Register now, and get the early bird price of just $79 for the whole weekend — http://startupsandbox.eventbee.com. Use the Hackfest for the Light discount code 'affiliate01' and get an additional $10 off.

Women 2.0 is a powerhouse organization, dedicated to creating more women entrepreneurs. Thanks to their great connections, there will be investors, lawyers, and high-profile speakers who want to give you great advice for free!

If you can’t make the SF event, check out Startup Weekend in Palo Alto event the very same weekend — http://bayarea.startupweekend.com

Christian SepulvedaChristian Sepulveda
Tweed 1.1.1: Landscape mode and more
edit Posted by Christian Sepulveda on Tuesday November 03, 2009 at 02:49PM

1.1.1 of Tweed is now available in the App Catalog.

Bugs

  • User profile can scroll
  • increased photo upload timeout
  • font size setting should apply to direct message timeline
  • Tweet text is image caption on photo uploads

Features and Changes

  • changed photo upload default to yFrog
  • forward gesture composes new tweet
  • use j.mp for url shortening (instead of tinyurl.com)
  • show original tweet on replies
  • Pixi support
  • landscape mode (& preference to disable)

Erik HansonErik Hanson
Standup 2009-11-02: WTF?
edit Posted by Erik Hanson on Tuesday November 03, 2009 at 08:55AM

Interesting Things

  • git-wtf is a useful script for showing the state of your git repo. It was mentioned specifically for its ability to show you the details about the commits you haven't yet pushed (especially if there have been multiple commits by other people in the meantime).

David HillDavid Hill
My not-so-inner geekdom
edit Posted by David Hill on Monday November 02, 2009 at 02:08PM

I've been a member of an online Star Wars club for...wow...almost 10 years now. At the time that I joined I was just learning about databases and web-programming and was rather impressed with the functionality that existed (and still exists) in the club's website.

However...

The site is coded in old-school ASP, with SQL Server on the backend.

I cringe just thinking about it.

I've been trying to convince The Powers That Be for a while now to look at recoding the site to some other environment. For a long time I tried to push them towards PHP, but they just dug in their heels and refused to look at that option really.

Then I discover Ruby on Rails, and I see how much better RoR would be for this site. It would provide structure to the codebase, organization, and seriously increase readability. And since the club is a volunteer organization, with a pretty regular rate of people transitioning in/out of positions, having a strong test suite would be HUGE towards helping new developers ramp up on how the system is supposed to work and quickly identifying when a change in the code has broken something else in an unforeseen manner.

Of course as I'm making those discoveries, The Powers That Be decide to move ahead with PHP...

So, on to the question at hand: What do you do, what information do you use, in an attempt to convince someone to switch from an older technology (ASP, PHP) to Ruby on Rails?

Other articles: