<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.8.6" -->
<rss version="0.92">
<channel>
	<title>hibbins.com</title>
	<link>http://www.hibbins.com</link>
	<description>Software Development: C#, SQL Server, .NET, Analysis Services, Reporting Services, Intergration Services, OLAP, PHP, HTML, XML, CSS, Java, Javascript and anything else technical, complex and hibbins.com</description>
	<lastBuildDate>Thu, 14 Jan 2010 16:24:00 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>TIP: Hiding the Windows Live Messenger icon</title>
		<description>If you use Windows Live Messenger a lot, you'll have noticed that the icon now resides on the taskbar, where you can easily change status and quickly send an IM to someone. If you prefer to keep Windows Live Messenger in the system tray, where it's been for previous releases, ...</description>
		<link>http://www.hibbins.com/2010/01/14/tip-hiding-the-windows-live-messenger-icon/</link>
			</item>
	<item>
		<title>T-SQL Date Only Function</title>
		<description>CREATE FUNCTION [dbo].[DateOnly] (@Date DATETIME)
RETURNS DATETIME
BEGIN
    RETURN DATEADD(d, DATEDIFF(d, 0, @Date), 0)
END </description>
		<link>http://www.hibbins.com/2009/11/24/t-sql-date-only-function/</link>
			</item>
	<item>
		<title>TSQL Last Day Of The Month</title>
		<description>
CREATE FUNCTION [dbo].[LastDayOfTheMonth] (@Date DATETIME )
RETURNS DATETIME
BEGIN
    RETURN dateadd(ms, -3, DATEADD(mm, DATEDIFF(m, 0, @Date) + 1, 0))
END
 </description>
		<link>http://www.hibbins.com/2009/11/23/tsql-last-day-of-the-month/</link>
			</item>
	<item>
		<title>Zend Server CE on OSX 10.6 Snow Leopard</title>
		<description>When I installed Zend Server CE on OSX 10.6 Snow Leopard the admin interface failed, the following fixed the issue :

1. Download this: Watchdog update

2. Backup watchdog with the command
sudo mv /usr/local/zend/bin/watchdog /usr/local/zend/bin/watchdogOLD
3. Extract the new watchdog to /usr/local/zend/bin/ (I used the go to folder in finder, if you can ...</description>
		<link>http://www.hibbins.com/2009/10/18/zend-server-ce-on-osx-10-6-snow-leopard/</link>
			</item>
	<item>
		<title>4 Coding tips</title>
		<description>1: Delete It !
If a chunk of code comment or class is not used, don't comment it out, just delete it.

2: Write clear code.
 "make sure you document code that's hard to understand". Question: why is the code hard to understand?

3: Comment 
Comments can indeed be useful but mostly as ...</description>
		<link>http://www.hibbins.com/2009/08/26/4-coding-tips/</link>
			</item>
	<item>
		<title>Check if a Javascript function exists</title>
		<description>If you want to check if a Javascript function exists before you attempt to call it and get an error try:

if(typeof window.Function == 'function') {
// function exists
Function();
} </description>
		<link>http://www.hibbins.com/2009/03/22/check-if-a-javascript-function-exists/</link>
			</item>
	<item>
		<title>iPhone 3.0</title>
		<description>Apple has announced the iPhone 3.0 software update which includes an updated Software Development Kit (SDK) with over 1,000 completely new APIs.

Here are a few highlighted features:

	Search your iPhone
	Cut, copy, and paste
	Send photos, contacts, audio files, and location via MMS*
	Read and compose email and text messages in landscape

And yes, I ...</description>
		<link>http://www.hibbins.com/2009/03/17/iphone-30/</link>
			</item>
	<item>
		<title>SVN Port TCP Port is 3690</title>
		<description>If you need to access SVN remotely, by default it runs on port TCP port 3690, so you need to make sure it is open in your firewall etc. </description>
		<link>http://www.hibbins.com/2009/02/12/svn-port-tcp-port-is-3690/</link>
			</item>
	<item>
		<title>SQL Server Schema,Table,Function and Stored procedure Auditing</title>
		<description>If you like to know what's changing on your SQL Server then the following code creates an audit table and the associated trigger for logging the changes

The Audit Object Table


CREATE TABLE [dbo].[AuditObjects](
 [EventID] [int] IDENTITY(1,1) NOT NULL
,[EventData] [xml] NULL
PRIMARY KEY CLUSTERED (
   [EventID] ASC
) WITH (IGNORE_DUP_KEY = OFF) ...</description>
		<link>http://www.hibbins.com/2008/12/17/sql-server-schematablefunction-and-stored-procedure-auditing/</link>
			</item>
	<item>
		<title>Search Stored Procedures</title>
		<description>Ever had the need to search stored procedures to find redundant tables or text that needs replacing or re-factoring ?

Here's a script to help (Sorry for the cursor, I'm sad with myself for using it :-( )
-- Search string
DECLARE @SearchString nvarchar(50)
SET @SearchString = 'Search String'

-- Required Declares
DECLARE @getdbname sysname
DECLARE @sqlstm ...</description>
		<link>http://www.hibbins.com/2008/12/05/search-stored-procedures/</link>
			</item>
</channel>
</rss>
