Finding Self

Looking for a Vegan Doctor in Boston Area

As we get sophisticated about our health, we get more demanding about our doctors. Switching to a vegan lifestyle is challenging enough. Why finding the right doctor should be that hard? How can a doctor help a vegan patient with all the questions, if he or she doesn’t practice a […]
Office and Browsers

Properly Validate TextArea Length (IE vs. Firefox)

Let’s consider this example, where HTML page has a TEXTAREA and an INBOX.  When user types inside TextArea, Inbox should show the length of TextArea string. <script type=”text/javascript”> function TTLength(objTT){ var tt= document.getElementById(‘TXT1’); tt.value = objTT.value.length; } </script> <textarea onKeyDown=”TTLength(this);” onKeyUp=”TTLength(this);” rows=”10″> This Text Area Contains a string With Newline […]
Ideas

How NOT to use your TODO

This post is a reaction to another post that complains that TODO list jails you in an endless loop of struggle with your own TODO list. Here are  simple rules to follow to free yourself from the jail of your TODO:   -1- Set the expectations right Till your last hour, […]