GWT 2 Released
Posted
- December 9th, 2009
Comments
Tags
Yesterday Google Web Toolkit (GWT) 2 was released. We’re going to be using GWT for the next version of our internal software where I work. I’m excited to use it.
Yesterday Google Web Toolkit (GWT) 2 was released. We’re going to be using GWT for the next version of our internal software where I work. I’m excited to use it.
There are two software updates that came out recently.
1. Mozilla Thunderbird version 3. I’ve used the Thunderbird Betas and RCs ever since they’ve been available and have, for the most part, been quite pleased. It’s been so long since I’ve used Thunderbird 2, that I don’t really remember how it looked. Thunderbird 3′s new tabs and search functionality are hard to live without now.
2. Adobe Air 2 beta. I haven’t used that many Air apps – mainly as there aren’t many out there. But, I have used a few. I think Jonathon Snook’s Snitter was an Air app. I used that for a while until he ceased development of it. I also have used ExtJS’s Documentation Air app a few times. The big updates are better profiling for CPU and memory and a Webkit update giving it the latest HTML5 and CSS3 features.
There was a bunch of news items that I thought were kind of interesting, but didn’t warrant a separate post for each, so I’ll just do a group post.
That’s all I have for now kids!
Firefox 3.6 Beta 1 apparently introduces a new feature that if you click a link from one page and open it in a new tab, the new tab will be placed next to the current tab in the tab list. This quasi-grouping seems useful. If you open a link in a new tab from one page, one could easily assume that it’s related to the first tab’s content. For me, the only time I usually open a link in a new tab is usually when I’m in Google Reader or a news item from my iGoogle desktop. In these cases, the newly opened tab isn’t related to the initial tab, it just happens to have come from it. So, this related tab business was very annoying to me. If you too are annoyed by this, follow these simple steps to go back to the old way of doing things:
Voila!
Ever use something like phpMyAdmin? Ever add and/or remove some columns to a table, but then realize that the order of the columns aren’t really the way you’d like them?
This has bothered me ever since I started using phpMyAdmin. To the best of my knowledge there isn’t a way to fix this from within the software. However, it’s quite trivial to do it via regular SQL:
ALTER table `table_name`
MODIFY COLUMN `column_name` your_data_type
AFTER `other_column_name`
And by golly it works!
Found at Treble Click: Reorder mysql table columns via a Google search.