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

Calling inner frame function from an outer frame

Posted: Thursday, August 12, 2010 by Unknown in Labels:
0

d = document;
f = d.frames ? d.frames[inner_frame_id] : d.getElementById(inner_frame_id);
if (f != undefined && f != null)
{
if (f.inner_frame_function_name)
{
// Calling inner frame function
f.inner_frame_function_name();
}
else
{
if (f.contentWindow.inner_frame_function_name)
{
// Calling inner frame function
f.inner_frame_function_name();
}
else
{
// Function was denfined in inner frame
}
}
}else{
//Inner frame was not found
}

Professional Qualities

Posted: Saturday, July 3, 2010 by Unknown in Labels:
0


  1. Integrity

  2. Commitment and ownership

  3. Action orientation and goal seeking

  4. Continuous learning

  5. Professional Knowledge/skills

  6. Communication

  7. Planning, organizing and punctuality

  8. Quality of work

  9. A positive attitude, approachability, responsiveness

  10. Being an inspiring reference to others through leadership



Source:- The Professional by Subroto Bagchi
Enhanced by Zemanta

How to handle popups in Flex

Posted: Friday, July 2, 2010 by Unknown in Labels:
0

There are two ways to handle pop ups in Flex

By using Flex's ExternalInterface we can write Javascript code in Flex.

1) Using Javascript window.open().
Note:- This technique will not work in Chrome alone. And in IE, If the popup block settings are at strong level then this will not work.

2) Using form submit in through javascript.
Note:- This perfectly works fine in Chrome. But in rest of the browsers this does not seem working properly.

So, For my app i have done like,

while loading flash movie i get the browser name. If the browser name is chrome the later is applied else first one is applied.

This is perfectly working fine.

Enhanced by Zemanta