November 16, 2009
Linux is an Uncompassionate OS
This explains why Linux is an evil and uncompassionate OS .
(Source: geeksaresexy.net)
Filed by Paul Gu at November 16th, 2009 under Programming
1 person have commented this post
Navigation | Category » Programming
This explains why Linux is an evil and uncompassionate OS .
(Source: geeksaresexy.net)
Filed by Paul Gu at November 16th, 2009 under Programming
1 person have commented this post
If you ever wanted to know how to use any other file name macros other than %MessageID% here they are:
%datetime% Coordinated Universal Time (UTC) date time in the format YYYY-MM-DDThhmmss (for example, 1997-07-12T103508).
%datetime_bts2000% UTC date time in the format YYYYMMDDhhmmsss, where sss means seconds and milliseconds (for example, 199707121035234 [...]
Filed by Paul Gu at August 14th, 2009 under BizTalk, Programming
No comments on this post yet
Here is a simple to create and drop temp tables:
to think that ALL temp tables reside in tempdb database, not releated to the user database at all, and it’s same for Global temp tables (##temp) which is why this would work in any User database.
IF OBJECT_ID(‘tempdb.dbo.#tempTable’) IS NOT NULL
DROP TABLE #tempTable
CREATE TABLE #tempTable [...]
Filed by Paul Gu at June 11th, 2009 under Database, Programming
No comments on this post yet
XML Schema is an XML-based alternative to DTD.
An XML schema describes the structure of an XML document.
The XML Schema language is also referred to as XML Schema Definition (XSD).
The purpose of an XML Schema is to define the legal building blocks of an XML document, just like a DTD.
An XML Schema:
defines elements that can appear [...]
Filed by Paul Gu at March 27th, 2009 under Programming
No comments on this post yet
The code below expects to execute on the machine its querying for.
Code:
‘
‘ WMI script to get list of BizTalk host instance with specific status
‘
‘ MSBTS_HostInstance.ServiceState valid values
‘
‘Stopped: 1
‘Start pending: 2
‘Stop pending: 3
‘Running: [...]
Filed by Paul Gu at February 18th, 2009 under BizTalk, Programming
No comments on this post yet
There are two tools that I recommend here.
The first is the BizTalk 2004 Explorer Extension.
The extension is the BtsAsmExt.dll and is located in the \Program Files\Microsoft BizTalk Server 2004\Developer Tools subdirectory. This functionality is turned off by default (which is why most people don’t know about it). To enable this functionality, run regsvr32 BtsAsmExt.dll either [...]
Filed by Paul Gu at February 13th, 2009 under BizTalk, Programming
No comments on this post yet
GO to any web page, clear the address bar, and paste this:
javascript:document.body.contentEditable=’true’; document.designMode=’on’; void 0
Now hit Enter. Now feel free to edit whatever you want on the page
Filed by Paul Gu at February 11th, 2009 under Programming
1 person have commented this post