Tuesday, 23 March 2010

Visual Studio 2010 launch on 12th April 2010

Visual Studio 2010 will be launched on 12th April 2010 worldwide

Sunday, 6 December 2009

Ruby on Rails

Stay tuned for some ruby on rails stuff, really really interesting.

Wednesday, 2 December 2009

Thursday, 12 November 2009

Shrinking SQL 2005 Log file

Use the below command to shrink the database log file in SQL 2005

backup log <database_name> with truncate_only
dbcc shrinkfile ( <log_file_name>, 1)

Friday, 28 August 2009

Outlook Web Access Bug

Recently i was accessing my web email using Outlook Web Access at the same time i was using hotmail and facebook accounts.

I found out that when I sign out from Outlook Webaccess all other sessions that of facebook and hotmail were signed out too.
Which suggests that this website somehow clears all running cookies, need to look into it.

Monday, 9 March 2009

Qt Framework Licensing Details

Qt Framework is available in 3 license types, main features are described below.

1. Qt Commercial License
  • License Fee : YES
  • Submit code changes to QT : NO
  • Write Proprietary Software : YES

2. Qt GNU LGPL v. 2.1 Version

  • License Fee : NO
  • Submit code changes to QT : YES
  • Write Proprietary Software : YES

3. Qt GNU GPL v. 3.0 Version

  • License Fee : NO
  • Submit code changes to QT : YES
  • Write Proprietary Software : No

Wednesday, 18 February 2009

Qt Framework

Qt uses the "signal/slot" concept. Compared with callback functions, this mechanism has the advantage that Qt automatically dismantles a connection if either of the two communicating objects is deleted. This avoids crashes, and makes programming simpler.