<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kenneth Dalbjerg &#187; Programmering</title>
	<atom:link href="http://kennethdalbjerg.dk/category/computer/programmering/feed" rel="self" type="application/rss+xml" />
	<link>http://kennethdalbjerg.dk</link>
	<description>Kenneth Qvistgaard Dalbjerg, IT Konsulent i århus</description>
	<lastBuildDate>Fri, 03 Feb 2012 22:41:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Get number of all desktops in Citrx Xendesktop with powershell in all desktop groups</title>
		<link>http://kennethdalbjerg.dk/2011/10/27/get-number-of-all-desktops-in-citrx-xendesktop-with-powershell-in-all-desktop-groups</link>
		<comments>http://kennethdalbjerg.dk/2011/10/27/get-number-of-all-desktops-in-citrx-xendesktop-with-powershell-in-all-desktop-groups#comments</comments>
		<pubDate>Thu, 27 Oct 2011 13:50:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Programmering]]></category>
		<category><![CDATA[citrix]]></category>
		<category><![CDATA[license]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[Xendesktop]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=945</guid>
		<description><![CDATA[To get sum of all desktops in the Citrix Xendesktop (5) farm, just run this commands: Asnp Citrix.* Get-BrokerDesktopGroup &#124; measure-object -property TotalDesktops -sum &#124; select sum]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2011/10/27/get-number-of-all-desktops-in-citrx-xendesktop-with-powershell-in-all-desktop-groups/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uppercase First (ASP)</title>
		<link>http://kennethdalbjerg.dk/2005/10/17/uppercase-first</link>
		<comments>http://kennethdalbjerg.dk/2005/10/17/uppercase-first#comments</comments>
		<pubDate>Mon, 17 Oct 2005 12:34:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmering]]></category>
		<category><![CDATA[asp]]></category>

		<guid isPermaLink="false">http://www.dalbjerg.nu/?p=45</guid>
		<description><![CDATA[Here is a quick ucfirst function. First case in a word or string is going to be uppercase

function ucfirst(str)
	bogstav = left(str,1)
	bogstav = ucase(bogstav)
	ucfirst = bogstav &#038; right(str,1)
end function
...]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2005/10/17/uppercase-first/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sundsvenstre</title>
		<link>http://kennethdalbjerg.dk/2005/10/12/sundsvenstre</link>
		<comments>http://kennethdalbjerg.dk/2005/10/12/sundsvenstre#comments</comments>
		<pubDate>Wed, 12 Oct 2005 20:08:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmering]]></category>

		<guid isPermaLink="false">http://GUID</guid>
		<description><![CDATA[Vil blot sige at jeg langt om længe blev færdigt med www.sundsvenstre.dk. Jeg har lavet designet og programmering bag sitet.
...]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2005/10/12/sundsvenstre/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Popup Window</title>
		<link>http://kennethdalbjerg.dk/2005/09/01/popup-window</link>
		<comments>http://kennethdalbjerg.dk/2005/09/01/popup-window#comments</comments>
		<pubDate>Thu, 01 Sep 2005 20:58:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmering]]></category>
		<category><![CDATA[popup]]></category>

		<guid isPermaLink="false">http://GUID</guid>
		<description><![CDATA[Here is the link to the DEMO: http://www.dalbjerg.nu/script/popup.php and here is the link to the sourcecode: ...]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2005/09/01/popup-window/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mySQL kommandoer i PHP</title>
		<link>http://kennethdalbjerg.dk/2005/08/25/mysql-kommandoer-i-php</link>
		<comments>http://kennethdalbjerg.dk/2005/08/25/mysql-kommandoer-i-php#comments</comments>
		<pubDate>Thu, 25 Aug 2005 22:58:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmering]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://GUID</guid>
		<description><![CDATA[Lidt kommandoer til at arbejde med mySQl
Koble sig til en mySQL server
$mysql_server = "localhost";
$mysql_bruger = "bruger";
$mysql_password = "password";
$mysql_database = "database";
if (!mysql_connect("$mysql_server","$mysq...]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2005/08/25/mysql-kommandoer-i-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

