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 […]
No Picture
Finding Self

Успокой ум

Успокой ум – это один из приемов как стать счастливым – хотя бы на мгновение. Что подразумевается под призывом – успокой ум?  –01– Обрати внимание на беспокойство (pay attention to your anxiety) и перестань беспокоиться. Спроси себя – Кто беспокоится? – Ум беспокоится.  –02– Переведи свой фокус в настоящий момент. […]
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 […]