World-class education to anyone, anywhere

Posted: Monday, September 27, 2010 by Unknown in Labels:
0

Google Project 10^100 winner "KhanAcademy".

I was very much pleased with this organization. There are lot of videos on several categories.

Why don't you guys have a look at it :)

KhanAcademy

Enhanced by Zemanta

Altering charset of a mysql table column

Posted: Saturday, September 25, 2010 by Unknown in Labels:
0

Altering whole table:-

ALTER TABLE table_name CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;


Altering particular table column:-
alter table table_name CHANGE column_name column_name VARCHAR( 120 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL;


Viewing complete table information with charset information:-
SHOW CREATE TABLE table_name



Enhanced by Zemanta

Nice tip to follow while developing Web services

Posted: by Unknown in Labels:
0

It is always help full to add following content type/headers while sending a response to browser

response.setContentType("text/html;charset=UTF-8"); (For the sake of multi-language support )
response.addHeader("Cache-Control", "no-cache, no-store, must-revalidate"); (For the sake of IE-6)

Enhanced by Zemanta

TO DO things of a Software Engineer

Posted: by Unknown in Labels:
0

Please pose these questions to your self and come up with yes or no.

The Joel Test

1) Do you use source control?
2) Can you make a build in one step?
3) Do you make daily builds?
4) Do you have a bug database?
5) Do you fix bugs before writing new code?
6) Do you have an up-to-date schedule?
7) Do you have a spec?
8) Do programmers have quiet working conditions?
9) Do you use the best tools money can buy?
10) Do you have testers?
11) Do new candidates write code during their interview?
12) Do you do hallway usability testing?

Source:- Details

Enhanced by Zemanta