Friday, April 30, 2010

Skype Examples in C#

Great example, no usable UI

http://blogs.skype.com/devzone/2006/12/c_example_project_for_skype4co.html

Technical Example with some extensions:

http://forum.skype.com/topic/73172-skype4com-c-net-example-full-project/

Visual Studio Express has a Skype API wrapper

http://msdn.microsoft.com/en-us/beginner/aa700775.aspx

SEHE project, I guess it the same as the previous one

http://code.msdn.microsoft.com/SEHE

Sunday, March 21, 2010

Shrinking Log File for SQL Server

DBCC SHRINKFILE({Database Name}_log, 1)
BACKUP LOG {Database Name}WITH TRUNCATE_ONLY
DBCC SHRINKFILE({Database Name}_log, 1)