ExtJS 3.2 beta is out. In addition to over 180 bug fixes, this new release includes
Wednesday, March 10, 2010
Ext JS 3.2 beta released to the public
Posted by
hgc
at
3:42 PM
0
comments
Links to this post
Friday, January 08, 2010
Google Chrome Update
Google must have mind readers in the Google Chrome Team because the latest update I got now supports Flash and Synchronization at least on my OpenSuse 11.1 desktop.
On top of that, my desktop seems to work much faster when using Chrome than with Firefox.
I'm very close to making Google Chrome my default web browser.
Posted by
hgc
at
3:00 PM
1 comments
Links to this post
Wednesday, December 09, 2009
Google Chrome BETA for Linux is OUT .... Finally !!!
The first thing I did after installing it on my linux desktop was to uninstall Google Chrome in my Windows VM.
I'm not sure why it took so long but if my experience on occasionally using it inside a windows VM is any indication, it's worth the wait.
Coinciding with the release of the Linux and Mac versions of the browser is the opening of the extensions gallery (think Firefox Add-Ons).
I'm still looking but I haven't found anything like Mozilla Weave or Opera Sync yet.
Here's coverage from some of my favorite sites around the web :
Inquirer.net
Slashdot
Lifehacker
Posted by
hgc
at
9:28 AM
0
comments
Links to this post
Sunday, December 06, 2009
Karmic Koala, an epic fail ?
This review from AnandTech is probably one of the few reviews I've read that, to put it mildly, isn't all praises for Ubuntu.
I have always thought that it was just me that maybe I was too much of a geek to like Ubuntu but when I installed it for family members and they kept clamoring for me to bring back windows, I knew there was something wrong with the hype.
Posted by
hgc
at
4:22 PM
0
comments
Links to this post
Of Web Charts and Public DNS
Google Public DNS
I've been using OpenDNS for quite some time now on the recommendation of a friend when I was complaining about slow name resolution on my ISP. That was about a year or 2 ago. Today Google announces it's own free public DNS service. I'm wondering which is better of the two and I may give it a try over the holidays. If you're wondering what this new service means for OpenDNS, you can read up on OpenDNS' CEO's reaction in a blog post.
HighCharts
There's a new kid on the blog with regards to charting on the web. As per the Ajaxian, this new javascript library is called HighCharts. Unlike, OpenFlash Charts and YUI Charts, this library boasts of generating charts from pure Javascript, no flash ! Looking forward to giving this baby a go one of these days.
Posted by
hgc
at
12:32 AM
0
comments
Links to this post
Labels: weekly roundup
Friday, June 05, 2009
A Naked T61
My laptop refused to boot early this week. It beeped and printed "Fan Error" on screen. The laptop has been with me for almost two years and after seeing the error it occurred to me that I have never opened it, not even once, and now I have to.
One thing I love about Thinkpads is how well documented they are. I was immediately able to obtain the hardware service manual from Lenovo's website and got to work stripping the bezels, keyboard and palm rest to get to the dirty fan.
For the voyeuristic pleasure of my fellow geeks, I took some pics of my naked T61, after I cleaned it up, of course. Enjoy !!



Posted by
hgc
at
3:26 PM
5
comments
Links to this post
Saturday, May 30, 2009
ExtJS Tip : Dynamically change a button icon
This works for ExtJS 2 or higher. Oddly, there is no method in the button class that allows you to change the icon dynamically. This is useful if you want to reuse buttons in the toolbar for example.
I found an override from this forum post which worked for me after a few tweaks.
Ext.override(Ext.Button, {
setIcon: function(url){
if (this.rendered){
var btnEl = this.getEl().child(this.buttonSelector);
btnEl.setStyle('background-image', 'url(' +url+')');
}
}
})
Posted by
hgc
at
10:31 PM
1 comments
Links to this post
Friday, May 29, 2009
An exercise in Metacognition ... computer for sale ads
A Facebook buddy posted this as his status ...
60K PHP for brand-new MB466,2.0 GHz, IntelCore2Duo,160GB DDR3 Memory, 160GB HD, NVIDIA GeForce 9400M graphics, stndrd kbrd, aluminum unibo
What went thru my mind during the first few seconds of reading ....- 60K PHP ? Kinda expensive for a PC
- Is this a laptop or desktop ?
- MB466 ? must be the model number of something.
- 2.0 IntelCore2Duo ? really expensive PC, I could probably assemble an entry level Core i7 with 60K
- 160GB DDR3 Memory ? WOW must be a server or workstation.
- aluminum unibo ?! Great Scott ! It's a Mac !
- I immediately knew it was an ad for a computer.
- I focus too much on the price, so much so that it influences everything else about the ad, maybe that's why I don't have a Mac :-)
- I don't know the specs for a Mac when I see one.
Posted by
hgc
at
11:02 AM
0
comments
Links to this post