My Internet journey

One day son, this will all be yours…

Ideas expressed through creative art #1

No comments

eXaudios Receive Vision Awards from the Technology Services Industry Association

Dr.Yoram Levanon’s eXaudios wins yet another award, finally the world starts to acknowledge the importance of the company’s vision.

eXaudios Technologies

No comments

eXaudios wins $1M prize @ DEMO conference

Congratulation to Dr. Yoram Levanon and the guys @ eXaudios for winning the people’s Choice award! You definitely deserve it :)

I still remember my time with you as a very interesting period.

Video of the Demo:

2 comments

Clarizen V4.5 New Feature Overview Video

Coming really soon, a new and exciting version of Clarizen.

No comments

‘too much time spent in unload handler’ – chrome error

Bumped into this error while invoking a webcal link (and staying on the same page). Apparently clicking the link starts a sequence that eventually fires onbeforeload, which in its turn causes the error.

Reports of this bug first popped in search near the end of February January and probably related to a recent chrome build (Chrome Version : 4.0.249.89, Official Build 38071). After letting the issue for few days, I did some extra searching today and came up with a tweet by @rvdavid:Held up by a “Too much time spent in unload handler.” error on #chromium. in trying to find solutions, All I find “unconfirmed” #bug reports. Replying to the tweet led me to a possible solution by the Chrome team. As far as I understand we may see the solution already merged into one of the next official releases. Will update.

1 comment

Clearing an input of type=’file’

For obvious reasons, one cannot clear an input of type ‘file’ (in fact, the ‘value’ cannot be changed at all). Previous attempts to achieve this using setAttribute or direct access to the ‘value’ property has failed.
Our guys @ the UI team has found a useful workaround:

  1.  
  2. function resetUploadControl(control)
  3. {  
  4.     var parent = control.parentNode;
  5.     parent.removeChild(control);
  6.  
  7.     var tempForm = document.createElement("form");
  8.     tempForm.appendChild(control);
  9.     tempForm.reset();
  10.     tempForm.removeChild(control);
  11.     tempForm = null;
  12.    
  13.     parent.appendChild(control);
  14. }
  15.  

First, grab the elements’ parent, remove the control from it and append it to a temporary form. Input elements of type file can only be cleared by resetting the form they are part of, thus the temp form.
After resetting (and achieving our empty-valued input goal), re-append the control to its original parent and destroy the temp form. Mission accomplished! :)

Credit goes to Ori Roniger & Vadim Kononov

No comments

Google Apps stops IE6 support

Just got this by mail:

Dear Google Apps admin,

In order to continue to improve our products and deliver more sophisticated features and performance, we are harnessing some of the latest improvements in web browser technology. This includes faster JavaScript processing and new standards like HTML5. As a result, over the course of 2010, we will be phasing out support for Microsoft Internet Explorer 6.0 as well as other older browsers that are not supported by their own manufacturers.

We plan to begin phasing out support of these older browsers on the Google Docs suite and the Google Sites editor on March 1, 2010. After that point, certain functionality within these applications may have higher latency and may not work correctly in these older browsers. Later in 2010, we will start to phase out support for these browsers for Google Mail and Google Calendar.

Google Apps will continue to support Internet Explorer 7.0 and above, Firefox 3.0 and above, Google Chrome 4.0 and above, and Safari 3.0 and above.

Starting this week, users on these older browsers will see a message in Google Docs and the Google Sites editor explaining this change and asking them to upgrade their browser. We will also alert you again closer to March 1 to remind you of this change.

In 2009, the Google Apps team delivered more than 100 improvements to enhance your product experience. We are aiming to beat that in 2010 and continue to deliver the best and most innovative collaboration products for businesses.

Thank you for your continued support!

Sincerely,

The Google Apps team

I really hope this makes a difference and the IE6 abundance by a giant will eventually lead to the disappearance of this archaic and web-holding-back browser.

No comments

Steaming hot, straight from the oven – bLog-On

Just aired, Log-On’s job recruitment blog, didn’t know blogger is customizable at all… :)
http://b.log-on.com

No comments

Omer goes crazy

No comments

Proud to be part of the team

It was just published that Clarizen has secured $8M in financing from leading VCs.

I joined Clarizen about 5 months ago, working for the UI/UX team.

10530_159032564472_652299472_2667609_3852990_n

No comments

Next Page »