Monday, June 28, 2010

My Status Messages


  • RTFM - Read the _dash_ manual
  • People, most important asset for any company - invest in them, rest will follow
  • I make design decisions in my shower
  • Two wrongs is not right but three lefts are, both are bad in engineering

Wednesday, April 14, 2010

Mozilla Add-ons: Speed DNS 0.1 reviewed by Juan Manuel Rodriguez Alvarado

Just got my Speed DNS Addon approved on Mozilla! Check it out.

---------- Forwarded message ----------
From: Mozilla Add-ons <nobody@mozilla.org>
Date: Wed, Apr 14, 2010 at 10:37 PM
Subject: Mozilla Add-ons: Speed DNS 0.1 reviewed by Juan Manuel Rodriguez Alvarado
To: prathapnirmal@gmail.com


Congratulations! Your nominated add-on, Speed DNS, has been reviewed by a Mozilla Add-ons editor who approved your add-on to be public.

Your most recent version (0.1) has also been made public.

You can view your public add-on now at: http://addons.mozilla.org/addon/54648

Review Information:
Reviewer: Juan Manuel Rodriguez Alvarado
Comments: Congratulations, your add-on has been approved for public status. Due to caching and mirroring of AMO, it may take a couple of hours for your add-on to appear public, so please be patient.

Keep up the good work!

It is difficult to verify the performance gain as DNS resolution occurs very quickly, but apparently the code aims to help you save a few miliseconds :)

If you have questions about this review, please reply to this email or join #addons on irc.mozilla.org.

Mozilla Add-ons
http://addons.mozilla.org

Posted via email from spartan's posterous

Thursday, March 25, 2010

My meetings this week

I was wondering on how much meetings I had this week and was trying to write some thing to figure that out automatically. AppleScript came to help since I was using ical and it took me about 3 hours to start from basics to get what I have, the following code. Result is 18 meetings and the total time I spend on meetings is 16 hours.

global total_meeting_hours

global num_meetings

set total_meeting_hours to 0

set num_meetings to 0

tell application "iCal"

tell calendar "calendar"

set theEvents to every event

repeat with e in theEvents

set sd to start date of e

set sm to month of sd

set d to day of sd

if sm contains March and (d > 21 and d < 27) then

set ed to end date of e

set h to (ed - sd) / (60 * 60)

set m_summary to summary of e

set total_meeting_hours to total_meeting_hours + h

set num_meetings to num_meetings + 1

end if

end repeat

end tell

end tell

 

display dialog total_meeting_hours

display dialog num_meetings

Posted via web from spartan's posterous

Wednesday, March 3, 2010

Crockford's Talk

  • HTML was derived from SGML. SGML is something used internally at IBM and Tim adopted it for world wide web
  • The browser makers went into a competition on who could make the best sense of a very bad html document
  • Next is the end of all things!

Posted via web from spartan's posterous

Yahoo Maps

Its very inconvenient that I have to do an extra click on the text box to start typing in something. Why don't they auto focus?

Posted via web from spartan's posterous

Monday, December 7, 2009

Why Google Will Die One Day!

I was trying to post a comment on a youtube video today and found that there was a bug in the comment feature. I am not sure on what the bug is but it surprised me that, a major destination on web had a bug on a very basic feature with a lot of talented engineers behind it. Where is the flaw? process? ownership? View this screencast (watch it on screencast if you cannot see on whats going on) -
View on screencast.com »

 

Posted via email from spartan's posterous

Sunday, December 6, 2009

கனவா நினைவா

(மணம்)
கனவா நினைவா என் கண்கள் தேடும் தீவா
உறவா உயிரா என் மனதில் பூத்த பூவா
உனை வேராக உறிஞ்சிடுவேனா
எனை தீயாக சுடுபவள் நீயா
மழையாய் மனதில் விழுந்தவள் நீயே தானா...

(மலர்)
எனை தாங்கும் புவி தாயே
உயிரான மெய் நீயே
இதயத்தில் இன்று கேட்கும் இசை நீயடா
கடலோர அலை நீயே
எனை தீண்ட வருவாயே
நிழலாக நானும் அன்பே நிஜம் நீயடா
மலரில் மனமாய் ஒன்று சேர்ந்தவன் நீயடா

(நிழல்)
கனவாய் நினைவாய் என் கண்கள் தேடும் தீவா
உறவா உயிரா என் மனதில் பூத்த பூவா
(நிஜம்)
உனை வேராக உறிஞ்சிடுவேனா
எனை தீயாக சுடுபவள் நீயா
(நிழல்)
மழையாய் மனதில் விழுந்தவன் நீயே தானா...

(உயிர் - நிழல் + நிஜம்)
கனவா நினைவா என் கண்கள் தேடும் தீவா
உறவா உயிரா என் மனதில் பூத்த பூவா..

Posted via email from spartan's posterous