Work Freely and Perform Better at Work
August 18th, 2010 by Sanket
Just came across some tips and thought to ‘Work Freely and Perform Better at Work’.
Spare some time from your schedule and do read the entire article. It’s worth reading.
1. Take time before you react. Study any give situation carefully, think about it and come up with a plan. This is better way to respond than being hasty. 2. Prioritize tasks, focus on tasks which are linked...iPhone Game made of Paper
August 15th, 2010 by Sanket
iPhone Game made of Paper – truly amazing
Look at the following video, which shows creativity of developers.
They have developed the iPhone video game which is paper bases.
Amazing
Check out the video:
Understanding INNER join in detail
August 11th, 2010 by Sanket
Understanding INNER join in detail
The objective of this article is dig into detail of how INNER joins produce the result set. The INNER join is the common join type used in many cases. Even though it is used very often I have seen most people are not certain how it produces the result set when changing the join condition.
Before go into the article contents, I need to create the two...Windows Phone 7 Features Video
August 10th, 2010 by Sanket
Windows Phone 7 Features Video
Want to see most of the features of Windows Phone 7? Here is quick video for you.
Maslow’s Hierarchy of Needs Applied to Software Development
August 10th, 2010 by Sanket
Maslow’s hierarchy of needs is a theory in psychology which attempts to classify human “needs” in order of importance ranging from low to high. The lowest needs being the ones most fundamental to life, the highest being the most aspirational or transcendent.
What if we applied this similar theory to Software Development !
While digging on internet, I got one very interesting...Total instances running of application in C# .NET
August 3rd, 2010 by Sanket
Total number of instances running of application in C# .NET
Many times we needs to find how many instances of particular application or process are running.
This can be used in allowing to run only single instance of application or at most 2 etc.
Also count can be useful for licensing and other stuff.
So here is simple code to find out how many number of instances are running for particular...Setting up Master Page at runtime in asp.net
July 21st, 2010 by Sanket
Setting up Master Page at runtime in asp.net
Many times we needs to decide master page at runtime.
Here is quick help for the same.
You will have to use ‘Page_PreInit’ method. In that set MasterPageFile attribute of current page to required master page.
And Done !
protected void Page_PreInit(object sender, EventArgs e) { this.Page.MasterPageFile = "~/MasterPages/"...Delete All Stored Procedures and Views in SQL
July 17th, 2010 by Sanket
Delete All Stored Procedures
declare @procName varchar(500)declare cur cursor for select [name] from sys.objects where type = 'p'open cur
fetch next from cur into @procName while @@fetch_status = 0 begin if @procName <> 'DeleteAllProcedures' exec('drop procedure ' + @procName) fetch next from cur into @procName end
close...Delete All Tables in MS SQL
July 16th, 2010 by Sanket
Delete All Tables – MS SQL Query
--Delete All Keys
DECLARE @Sql NVARCHAR(500) DECLARE @Cursor CURSORSET @Cursor = CURSOR FAST_FORWARD FORSELECT DISTINCT sql = 'ALTER TABLE [' + tc2.TABLE_NAME + '] DROP [' + rc1.CONSTRAINT_NAME + ']'FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS rc1LEFT JOIN INFORMATION_SCHEMA.TABLE_CONSTRAINTS tc2 ON tc2.CONSTRAINT_NAME =rc1.CONSTRAINT_NAMEOPEN...Touchless – A webcam multi-touch sdk (Image processing future)
July 15th, 2010 by Sanket
Touch less – A webcam multi-touch sdk
Look at the following video.
You can surely say future is of image processing !!!
You can download this SDK and integrate it in your application.
http://touchless.codeplex.com/
