Sunday, December 7, 2008

IBM WebSphere MQ

IBM WebSphere MQ is a family of network communication software products launched by IBM in March 1992. It was previously known as MQSeries, a trademark that IBM rebranded in 2002 to join the suite of WebSphere products. WebSphere MQ is IBM's Message Oriented Middleware offering. It allows independent and potentially non-concurrent applications on a distributed system to communicate with each other.







Sources:
http://en.wikipedia.org/wiki/WebSphere_MQ

http://www-01.ibm.com/software/websphere/education/crashcourse/#Application_Integration

Saturday, November 1, 2008

Windows 7 OS

Windows 7 is the next version of Microsoft Windows and the successor to Windows Vista.

At its Professional Developers Conference 2008 (PDC2008), Microsoft Corp. rallied software developers by sharing the first full public demo of Windows 7. Its held at Los Angeles on Oct 28th 2008.





Source:
http://www.microsoft.com/presspass/press/2008/oct08/10-28PDCDay2PR.mspx
http://www.microsoftpdc.com/
http://en.wikipedia.org/wiki/Windows_7

Saturday, October 25, 2008

US Consulate in Hyderabad

The consulate facility will begin processing 100 visa applications a day by the middle of December 2008 and scale it up to 300 by January next.

It would result in avoiding 65,000 to 70,000 trips each year to Chennai by those seeking US visas.

Source: The Hindu

Home page for US Consulate in Hyderabad

US Tax Refund Finder

Find out if IRS owes you money:

http://www.ntu.org/main/components/current_irs/

Source: http://www.ntu.org/main/press.php?PressID=1067&org_name=NTU

Thursday, October 23, 2008

Learn about Business Consulting

Want to know about business consulting or want to start your career in this field? Then logon to the following portal which is launched by three students of the Indian Institute of Management (IIM).

http://www.learn2consult.com/

Source: http://in.news.yahoo.com/43/20081023/812/tnl-iim-students-launch-portal-to-help-n_1.html
http://www.learn2consult.com/

Wednesday, August 13, 2008

Hello World program in 400 programming languages

Lets see how to print "Hello World" in 400+ languages:

Java:
// Hello World in Java

class HelloWorld {
static public void main( String args[] ) {
System.out.println( "Hello World!" );
}
}


C#:
// Hello World in Microsoft C# ("C-Sharp").

using System;

class HelloWorld
{
public static int Main(String[] args)
{
Console.WriteLine("Hello, World!");
return 0;
}
}

Ruby:
# Hello World in Ruby
puts "Hello World!"

Want to see the complete list? Following is the link:
http://www.roesler-ac.de/wolfram/hello.htm

Sunday, August 3, 2008

Ruby 1.9

Yukihiro Matsumoto, chief designer of the Ruby programming language(1995), speaks about Ruby 1.9 in a tech talk organised by Google.