Was just about to start a thread.. Thanks for letting us know!
Hey guys, still no changes. Very sad.. 

dtbaker said
http://divshot.github.com/geo-bootstrap/ it is so popular because of this theme. ahh geocities. memories the Input with error style is win
Haha! I was laughing all the way till scroll ends. 
CodingJack said
My only hope is that they use non-vendor-prefixed CSS3 properties son we don’t have to go back and update a million things.
This should not be a problem when using prefixfree or csscrush.
nav[role=navigation] ul a, .info-nav a {
padding-right: 9px;
}
Noticed only on CodeCanyon. Ubuntu desktop (Chrome, Firefox) and iOS iPad (Safari).
The thing is there are not enough space for search box, when used Arial / Helvetica instead of Tahoma / Geneva.

Building JavaScript library is a huge task for one person. I know it because long time I’m building my own from the ground and still on the half way.
It’s time consuming, but I believe “reinvent the wheel” is good. You can build things the way you like it and can learn much stuff during process.
Wish you good luck, CodingJack 
Nice work CodingJack. I have just look through source and would like to make a little suggestion about jQuick.extend to make it work with nested objects.
jQuick.extend = function(obj, sets, overwrite) {
if (typeof obj === 'undefined') {
return sets;
}
for (var prop in sets) {
if({}.hasOwnProperty.call(sets, prop)) { // prevent error obj.hasOwnProperty('hasOwnProperty')
if (sets[prop].constructor === Object) { // replace it with your own 'isObject' check
obj[prop] = jQuick.extend(obj[prop], sets[prop], overwrite);
}
else if (overwrite || typeof obj[prop] === 'undefined') { // overwrite only when needed
obj[prop] = sets[prop];
}
}
}
return obj;
};
prowebmedia said
“Adobe’s giving us all a late Christmas present. You can grab yourself a free, legitimate copy of Photoshop and the rest of the Creative Suite 2, right now, direct from Adobe. No catch.
If you need software similar to Photoshop, try Gimp. It is a freely distributed piece of software for such tasks as photo retouching, image composition and image authoring. It works on many operating systems, in many languages.
For vector graphics there are an Inkscape. An Open Source vector graphics editor, with capabilities similar to Illustrator, CorelDraw, or Xara X, using the W3C standard Scalable Vector Graphics (SVG) file format.
