Recently changed documents

Architecture of ASP.NET controls

More documents like this are at:  CS-dotnet

27-May-04

Heart heavy and feet reluctant 
Eyes but a flood of tears
Her prize to her bosom
Her head in bow
The sorrowful 16 year old descended the bathing steps

Telugu to english dictionary

More documents like this are at:  Telugu Related

21-May-04

Java encoding schemes: docs from sun

More documents like this are at:  CS-Java

21-May-04

Character sets and encodings in Servlets: docs from sun

More documents like this are at:  CS-Java

21-May-04

http://java.sun.com/webservices/docs/1.3/tutorial/doc/WebI18N5.html#wp86518

briefly explains utf-8
Request encoding
Response encoding
JSP encoding

Aspire, the product that I developed over the last few years while I was working with java, servlets, jsp and XML, is being used on some SBIR projects involving JetSpeed and a few other open source tools. I have got a call the other day indicating that one of the forms is not accepting Vietnamese input. They are getting invalid characters placed into the MySQL database. The usage is pretty straight-forward. The user will see a form in a browser and will proceed to type Vietnamese (copy/paste perhaps from a Vietnamese app). This form will then be submitted to the server. The server is expected to parse the form input into parameters. Mahaveer suggested that perhaps I should be using some kind of character encoding to retrieve the parameters.

when it comes to complicated things such as setting digital watches, programming vcrs, ordering a sub for your spouse (Who always has a very discriminating taste), ordering at a local McDonalds drive through, self checkouts at Home Depot, and ofcourse software, I am a minimalist. If something is not hampering my imagination and productivity I usually don't upgrade. To exaggerate and make a point, I would be quite happy with windows 95, Tomcat 1.x, Frontpage, Jbuilder 3 for developing server side java applications that run in any container while David prods me all the time to upgrade to XP and how wonderful it is. (you can tell I am relegated to the auto pilot windows world). Anyway having made the point I still compile Aspire with servlets 2.1 although the current release may be at 2.4. Not that I don't like the new stuff in this particular instance but I want to be as backward compatible as possible as long as it is not crippling my style :-). For the curious I did upgrade to XP because I needed a better photo printing software.

Any way back to the encoding issue. I don't remember seeing any encoding issues while trying to read form submission parameters before. I remember porting one of our web sites to Japanese with out any problem last year. Based on that assumption I have advised Mahaveer that it should not be a problem and servlets probably will figure out the necessary details to retrieve the parameters. Ofcourse I am proven wrong.

java server side tutorial from sun

More documents like this are at:  CS-Java

19-May-04

servlets 2.4 spec PDF format

More documents like this are at:  CS-Java

19-May-04

aluguTayE yerungani mahA mahitAtmu Dajaata SatruDE
aligina nADu sAgaramu lanniyu nEkamu gAka pOvu ka-
rNulu padi vEvu raina nani notturu chatturu rAja rAja nA
palukula viSwaSimpumu vipannula lOkula gAvu mellaran

My half-suspect-knowledge translation

Anger unknown and enemines none exist to this elevated heart. Take my caution Raja, Raja, that all the oceans should swell and rage and become one should he embark on fury. Take no respite, my King, in the loyal and invincible Karna being on your side, as even 10,000 of Karnas in an array shall be deeply hurt and decimated in his wake. So I beseech you, the mighty one, trust, heed my concerned and earnest utterances and pave the way for truce.

Occasional reads in telugu

More documents like this are at:  Telugu Related

18-May-04

A wonderful introduction to Andhra Mahabharatam

More documents like this are at:  Telugu Related

18-May-04

http://www.mihira.com/mihaug00/mahabharata.htm

Much of the telugu thought and psyche is defined and crafted by this epic translation and its derivatives over time. I have chanced upon this commentary while looking for the complete original text somewhere on the net.

Great art begets Great Nations

More documents like this are at:  05.10-Letters To My Daughter

17-May-04

Dialing through the radio today I heard a passing remark that "Great nations deserve great art". The composition was compelling but I prefered to rearrange the order of the sentence and make a bold prediction that perhaps "Great art begets Great Nations".

Art is the candle. Art is the potential that the drifting masses hang on to in the storm of time and in the time of change. At times of despair it is the hope.

Art is religion for some. Art is song for some. Art is engineering for some. In all cases it is an act of love and the seed of action.

Where it is not held in chains humanity should prosper and where it is a medieval darkness should descend.

Mighty kings may have shaped the dominions in their rein, but it is Shelly that should be known in the next nation.

Rulers of various hues may have empires over the Hindukhush but it might be the Gita that is in the heart of the citizen, the scientist, perhaps the next ruler

SANKHYA Translation Framework

More documents like this are at:  00.15-Research

4-May-04

05.01 jdk 1.4 docs

More documents like this are at:  CS-Java

4-May-04

Palette is spelled "pallete" and not "pallete"

More documents like this are at:  Humanities 2007

24-Apr-04

In my mind the stress is on "l" and not "t" resulting in the error. Thanks to automatic spell checked I end up knowing, whether I correct it or not, some of these trip ups.

ka.stu.ri ti.la.kum la.la.ta pha.la.ke
vaksha.stha.le kau.stu.bham
na.sa.gre  na.va.mau.kti.kum
ka.ra.tale  ve.num
ka.re kan.ka.num
sarvange hari chan.da.nancha kalayam
(kan.te.sa muktavale)

Go.pa.stri Pari.veshti.to
vi.ja.ya.te go.pa.la chu.daa.manei

Ideas from a prominent set of individuals on invention

More documents like this are at:  Humanities 2007

17-Apr-04

Verena Huber-Dyson

More documents like this are at:  05.10-Letters To My Daughter

17-Apr-04

Basic explanation of bow legs

More documents like this are at:  Health

14-Apr-04

A research paper on bow legs from emedicine

More documents like this are at:  Health

14-Apr-04

http://www.emedicine.com/orthoped/topic369.htm#section~treatment

by Matthew J DeOrio, MD
Wealth of information

George Eliot

More documents like this are at:  Humanities 2007

13-Apr-04

http://www.abacci.com/books/authorDetails2.asp?authorID=48&misspellID=165

She first used the pseudonym George Eliott in a serial for Blackwood's Magazine in 1857 titled The Scenes of Clerical Life. She next produced the great novel Adam Bele (1859),then The Mill on the Floss (1860) and Silas Marner ( 1861).

Later novels Romola (1862-3), Felix Holt (1866) and Middlemarch (1871-2) well display her breadth of knowledge.

A C# property

More documents like this are at:  CS-dotnet

12-Apr-04

A C# property


public class SimpleProperty 
{
   private int number = 0;
   public int MyNumber 
   {
   get {  return number; }
   set {  number = value;}
   } 
}
public class UsesSimpleProperty
{
   public static void Main()
   {
      SimpleProperty example = new SimpleProperty();
      example.MyNumber = 5;
      int anumber = example.MyNumber;
   }
}

A web page and a .net control

More documents like this are at:  CS-dotnet

12-Apr-04

Idea of a web page control in .net

http://www.arc.nasa.gov/exploringtheuniverse-mapgen.cfm

May have implications to the collaborative space.
See if it is available for experimentation
See what it does
Architecture
Philosophy

Six-Step Problem Solving Method

More documents like this are at:  00.15-Research

7-Apr-04

There are six principle steps to the scientific method.  They are listed below.
1.	Define the problem
2.	Identify critical characteristics and metrics.
3.	Analysis
4.	Generate a solution and potentially more than one.
5.	Pick the best solution
6.	Sensitivity Analysis - check how good my solution is.

These six steps are important to understand and document during any new or experimental concept.  

When to file the sep-ira by

More documents like this are at:  Corporate-Financial

3-Apr-04

http://www.complianceheadquarters.com/IRA/IRA_Articles/simplified_employee_pensions.html

Therefore, most employers make SEP contributions after the end of the calendar year, the model SEP's required plan year. This coincides with many employers' tax years. SEP rules allow employer contributions made by the due date of an employer's tax return (plus extensions) to be considered made at the end of the calendar plan year.

The tax return due date is April 15 for unincorporated calendar year businesses, with extensions available to August 15 automatically and as late as October 15 with IRS approval. For calendar-year corporations and partnerships, this due date is March 15, with an automatic extension available to September 15.

Information about sep-ira

More documents like this are at:  Corporate-Financial

3-Apr-04

https://www.bcmadvisors.com/iras/sep.htm

Contributions of up to 25% of earned or net income up to a maximum of $40,000 annually can be made into a SEP. A SEP contribution is a tax deductible expense.

Are you looking for a job at MS - a link by Paul

More documents like this are at:  Paul's Links

31-Mar-04

http://weblogs.asp.net/jobsblog/

The above link hits real close to something that is always near and dear to our hearts. Looking for a job. There are quite a few entries there that talk about how to write a resume, prepare for an interview, a lot of good tips.

It is written by the MS recruiters from their point of view as to what they look for. Some very insightfull stuff. And if you are looking for a job at MS, they tell you how best to go about it.

Note to Paul

Paul as you can see from the web log I am quite active. :->)

"Alarulu kuriyaga aadenadi" by Annamayya

More documents like this are at:  Telugu Related

30-Mar-04

Alarulu kuriyaga aadenadi
alakala kulukula Alamelmanga..
Araviri sobagula ativalu mecchaga
ara tera maruguna aadenade

Wow. Just too beautiful. Like a cascade of words but falling to the perfect tune. No wonder he is a poet and a singer. Both I presume might be pre-requisites for such form.

This shear beauty reminds me of another profound observation by Annamayya

"Chedanika brathikinche siddha mantrama.."

I am sure this line can mean different things to different audience, but to me this observation seem to say that

"Beautiful song or art is the perfect antidote for the sins of the mind.."

Credits

This note is inspired by a comment from Dr. Uma eyyunni