<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<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, 15 Apr 2010 02:02:14 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>iPhone caps lock mode</title>
		<description><![CDATA[The iPhone does have a caps lock mode built in, but it&#8217;s disabled by default. To enable it, go to Settings > General > Keyboard and turn on &#8220;Enable Caps Lock.&#8221; Now whenever you need to type in all caps, simply double-tap the shift key to engage caps lock.

  addthis_url    = [...]]]></description>
		<link>http://www.hibbins.com/2010/04/15/iphone-caps-lock-mode/</link>
			</item>
	<item>
		<title>TIP: Hiding the Windows Live Messenger icon</title>
		<description><![CDATA[If you use Windows Live Messenger a lot, you&#8217;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&#8217;s been for previous releases, just close Windows Live Messenger, [...]]]></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><![CDATA[
CREATE FUNCTION &#91;dbo&#93;.&#91;DateOnly&#93; &#40;@Date DATETIME&#41;
RETURNS DATETIME
BEGIN
    RETURN DATEADD&#40;d, DATEDIFF&#40;d, 0, @Date&#41;, 0&#41;
END


  addthis_url    = 'http%3A%2F%2Fwww.hibbins.com%2F2009%2F11%2F24%2Ft-sql-date-only-function%2F';
  addthis_title  = 'T-SQL+Date+Only+Function';
  addthis_pub    = 'JHibbins';

]]></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><![CDATA[
CREATE FUNCTION &#91;dbo&#93;.&#91;LastDayOfTheMonth&#93; &#40;@Date DATETIME &#41;
RETURNS DATETIME
BEGIN
    RETURN dateadd&#40;ms, -3, DATEADD&#40;mm, DATEDIFF&#40;m, 0, @Date&#41; + 1, 0&#41;&#41;
END


  addthis_url    = 'http%3A%2F%2Fwww.hibbins.com%2F2009%2F11%2F23%2Ftsql-last-day-of-the-month%2F';
  addthis_title  = 'TSQL+Last+Day+Of+The+Month';
  addthis_pub    = 'JHibbins';

]]></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><![CDATA[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 view hidden files)
4. Run the [...]]]></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><![CDATA[4 Coding tips]]></description>
		<link>http://www.hibbins.com/2009/08/26/4-coding-tips/</link>
			</item>
	<item>
		<title>Check if a Javascript function exists</title>
		<description><![CDATA[If you want to check if a Javascript function exists before you attempt to call it and get an error try:

// Check if a Javascript function exists and run it if it does
if&#40;typeof window.Function == 'function'&#41; &#123;
    Function&#40;&#41;;
&#125;


  addthis_url    = 'http%3A%2F%2Fwww.hibbins.com%2F2009%2F03%2F22%2Fcheck-if-a-javascript-function-exists%2F';
  addthis_title  = 'Check+if+a+Javascript+function+exists';
  addthis_pub [...]]]></description>
		<link>http://www.hibbins.com/2009/03/22/check-if-a-javascript-function-exists/</link>
			</item>
	<item>
		<title>iPhone 3.0</title>
		<description><![CDATA[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 am running it (I have [...]]]></description>
		<link>http://www.hibbins.com/2009/03/17/iphone-30/</link>
			</item>
	<item>
		<title>SVN Port TCP Port is 3690</title>
		<description><![CDATA[SVN Port TCP Port is 3690]]></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><![CDATA[If you like to know what&#8217;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 &#91;dbo&#93;.&#91;AuditObjects&#93;&#40;
 &#91;EventID&#93; &#91;int&#93; IDENTITY&#40;1,1&#41; NOT NULL
,&#91;EventData&#93; &#91;xml&#93; NULL
PRIMARY KEY CLUSTERED &#40;
   &#91;EventID&#93; ASC
&#41; WITH &#40;IGNORE_DUP_KEY = OFF&#41; ON &#91;PRIMARY&#93;
&#41; ON &#91;PRIMARY&#93;

And the [...]]]></description>
		<link>http://www.hibbins.com/2008/12/17/sql-server-schematablefunction-and-stored-procedure-auditing/</link>
			</item>
</channel>
</rss>
