<?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>TuDra.net &#187; Software</title>
	<atom:link href="http://www.tudra.net/wp/tag/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tudra.net/wp</link>
	<description>Stuff and more</description>
	<lastBuildDate>Sun, 07 Mar 2010 17:52:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sql2Growl 1.3</title>
		<link>http://www.tudra.net/wp/2009/05/05/sql2growl-13/</link>
		<comments>http://www.tudra.net/wp/2009/05/05/sql2growl-13/#comments</comments>
		<pubDate>Tue, 05 May 2009 16:48:59 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[sql2growl]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/?p=71</guid>
		<description><![CDATA[See wiki page for details. Or download setup directly.
]]></description>
			<content:encoded><![CDATA[<p>See wiki <a href="http://wiki.github.com/knippers/sql2growl">page</a> for details. Or download <a href="http://cloud.github.com/downloads/knippers/sql2growl/Sql2Growl_1.3.zip">setup</a> directly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2009/05/05/sql2growl-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sql2Growl 1.1</title>
		<link>http://www.tudra.net/wp/2009/04/12/sql2growl-11/</link>
		<comments>http://www.tudra.net/wp/2009/04/12/sql2growl-11/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 16:27:03 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[sql2growl]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/?p=58</guid>
		<description><![CDATA[Version 1.1 of Sql2Growl release info]]></description>
			<content:encoded><![CDATA[<p>As mentioned in my previous Sql2Growl post I would come back to you if I had more info. Well here it is:  The installation consists of two parts (both included in the zip):  One is to setup the objects in the database (personally I am always a bit reserved to have a setup touch my databases, but if there is a user demand for it, I might integrate the setup of database objects in the installation set).  The seconds is to install the NT service that interacts with the database and upon receiving a notification forwards it to Growl.  To send a notification from the database execute the following procedure (assuming that the defaults in the SQL script where used):</p>
<pre class="brush: sql">
EXEC [Growl].[spQueueNotification]
   @Application = N&#039;Test App&#039;,
   @Type = N&#039;Executed&#039;,
   @Title = N&#039;Test Title&#039;,
   @Message = N&#039;Test message\nline two&#039; -- use \n for newline
</pre>
<p>Other parameters:</p>
<pre class="brush: sql">
-- set to 1 to clear cached Growl objects
--
@ClearCachedObjects = 0
</pre>
<pre class="brush: sql">
-- The service will look for the icon in Icons folder of
-- installed service and append .png to the name
--
@Icon = &#039;name&#039;
</pre>
<pre class="brush: sql">
-- usually only needed if notification has to be
-- forwarded to other Growl instance
--
@Password = &#039;password&#039;
</pre>
<pre class="brush: sql">
-- if you want the notification to be forwarded to
-- another Growl instance, it&#039;s preferred to setup
-- forwarding in Growl itself
--
@Host = &#039;hostname&#039;
</pre>
<pre class="brush: sql">
-- In the rare situation that Growl is not listening on the default
-- port, you can specify the port
--
@Port = &#039;23053&#039;
</pre>
<p>I decided to host the project on <a href="http://github.com/">GitHub</a> for two reasons. a) to play around with Git and b) because it is hip <img src='http://www.tudra.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Here is the setup: <a href="http://cloud.github.com/downloads/knippers/sql2growl/Sql2Growl_1.1.zip">Sql2Growl_1.1.zip</a><br />
And here is the git repository url: <a href="http://github.com/knippers/sql2growl/tree">sql2growl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2009/04/12/sql2growl-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sql2Growl</title>
		<link>http://www.tudra.net/wp/2009/04/02/sql2growl/</link>
		<comments>http://www.tudra.net/wp/2009/04/02/sql2growl/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 21:19:18 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[sql2growl]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/?p=55</guid>
		<description><![CDATA[Sql2Growl bridge to send notifications from SQL Server to Growl]]></description>
			<content:encoded><![CDATA[<p>The Sql2Growl project is an application to send Growl notifications from SQL Server. It consists of a database part (Service Broker queue and stored procedures) and a C# NT Service part. Using a procedure you can add notifications to the queue. Instantly the NT Service pulls them and forwards the notification to Growl.</p>
<p>As soon as the project is in a state I am happy with I will post more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2009/04/02/sql2growl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RemoteDesktopManager 1.5 release</title>
		<link>http://www.tudra.net/wp/2008/09/03/remotedesktopmanager-15-release/</link>
		<comments>http://www.tudra.net/wp/2008/09/03/remotedesktopmanager-15-release/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 22:55:48 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[RDM]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[MSTSC]]></category>
		<category><![CDATA[netmask]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/?p=52</guid>
		<description><![CDATA[I had a long time item on my todo list to fix the Discovery form. The previous version did not respect the netmask as it should. For example for a 255.255.254.0 mask it was scanning the complete 255.255.0.0 network.
The full releasenotes:

B: On Show click in tray menu, RDM was sent to front if already visible
B: [...]]]></description>
			<content:encoded><![CDATA[<p>I had a long time item on my todo list to fix the Discovery form. The previous version did not respect the netmask as it should. For example for a 255.255.254.0 mask it was scanning the complete 255.255.0.0 network.</p>
<p>The full releasenotes:</p>
<ul>
<li>B: On Show click in tray menu, RDM was sent to front if already visible</li>
<li>B: If no domain is set a \ was added in front of username in MSTSC connect dialog</li>
<li>I: Improved netmask (read: will use the actual ip netmask) handling for RDP Discovery.</li>
</ul>
<p>The new release can be downloaded at <a title="RDM@Sourceforge" href="http://sourceforge.net/project/showfiles.php?group_id=165435" target="_blank">Sourceforge</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2008/09/03/remotedesktopmanager-15-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RemoteDesktopManager 1.4 release</title>
		<link>http://www.tudra.net/wp/2008/05/18/remotedesktopmanager-14-release/</link>
		<comments>http://www.tudra.net/wp/2008/05/18/remotedesktopmanager-14-release/#comments</comments>
		<pubDate>Sun, 18 May 2008 10:44:25 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[RDM]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[RDC]]></category>
		<category><![CDATA[RDP 6.1]]></category>
		<category><![CDATA[Remote Desktop Manager]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/2008/05/18/remotedesktopmanager-14-release</guid>
		<description><![CDATA[Recently Microsoft updated it&#8217;s Remote Desktop Connection (also known as RDC or MSTSC). The RDP Protocol has been updated to version 6.1. The new version comes with Windows XP SP3, Windows Vista SP1 and Windows 2008 Server.
One of the changes they made is that /console is no longer there, instead /admin has to be used [...]]]></description>
			<content:encoded><![CDATA[<p>Recently Microsoft updated it&#8217;s Remote Desktop Connection (also known as RDC or MSTSC). The RDP Protocol has been updated to version 6.1. The new version comes with Windows XP SP3, Windows Vista SP1 and Windows 2008 Server.</p>
<p>One of the changes they made is that /console is no longer there, instead /admin has to be used now to connect to the console session of a Windows 2003 or 2008 server.</p>
<p>The new RDM is compatible with the new RDC tool (as well as the older versions of course).</p>
<p>The full releasenotes:</p>
<ul>
<li>I: RDP 6.1 compatibility (Vista SP1, Windows XP SP3, Windows 2008 Server).</li>
<li>I: Upgraded solution to Visual Studio 2008 Express Edition (build target set to .NET 2.0).</li>
<li>B: RDP Discovered hosts with multiple IP addresses (but resolving to the same name) are only added once.</li>
</ul>
<p>The release can be downloaded at: <a href="http://sourceforge.net/project/showfiles.php?group_id=165435" title="RDM@Sourceforge" target="_blank">Sourceforge</a>.</p>
<p>Oh and btw, I did not skip versions 1.2 and 1.3 I just did not write a blog post about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2008/05/18/remotedesktopmanager-14-release/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VMWareCopy 0.3</title>
		<link>http://www.tudra.net/wp/2007/10/28/vmwarecopy-03/</link>
		<comments>http://www.tudra.net/wp/2007/10/28/vmwarecopy-03/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 16:11:02 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[vmcopy]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/2007/10/28/vmwarecopy-03</guid>
		<description><![CDATA[Fixed some minor issues and added two new features:

 -start flag, if set image will be started after copy (has no effect if image was stopped by vmcopy tool).
NOOP thread. Will send the NOOP command to the FTP server every 5 minutes. This prevents server disconnects on long (e.g. writing directory XML) inactivity.

New version can be [...]]]></description>
			<content:encoded><![CDATA[<p>Fixed some minor issues and added two new features:
<ul>
<li> -start flag, if set image will be started after copy (has no effect if image was stopped by vmcopy tool).</li>
<li>NOOP thread. Will send the NOOP command to the FTP server every 5 minutes. This prevents server disconnects on long (e.g. writing directory XML) inactivity.</li>
</ul>
<p>New version can be downloaded here: <a href="http://www.tudra.net/wp/wp-content/uploads/2007/10/vmwarecopy_03.zip" title="VMWareCopy 0.3">VMWareCopy 0.3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2007/10/28/vmwarecopy-03/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>VMWareCopy</title>
		<link>http://www.tudra.net/wp/2007/10/21/vmwarecopy/</link>
		<comments>http://www.tudra.net/wp/2007/10/21/vmwarecopy/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 19:57:19 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[vmcopy]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/2007/10/21/vmwarecopy</guid>
		<description><![CDATA[VMWareCopy is a tool to backup VMWare images running on a MicrosoftWindows VMWare host. It&#8217;s designed to be used with VMWare Server andrequires a FTP server to backup the images to.The reason for FTP is simple: it&#8217;s way faster then a windows share.A quick sum of the features:

Stop the image before copy and resume it [...]]]></description>
			<content:encoded><![CDATA[<p>VMWareCopy is a tool to backup VMWare images running on a MicrosoftWindows VMWare host. It&#8217;s designed to be used with VMWare Server andrequires a FTP server to backup the images to.The reason for FTP is simple: it&#8217;s way faster then a windows share.A quick sum of the features:
<ol>
<li>Stop the image before copy and resume it afterwards (uses VMWare VIX).</li>
<li>Write vmware image directory structure to file including file permissions.</li>
<li>Calculate file hashes/checksums of type MD5 and SHA1.</li>
<li>Verify the hash of an uploaded file (need support for SITE HASH command, currently available for Gene6 and SimpleFTP).</li>
<li>Option to skip copy if none of the files has the Archive bit set.</li>
</ol>
<p>Just run VMWareCopy without arguments to see all the command line options.Download exe, scripts and source: <a href="http://www.tudra.net/wp/wp-content/uploads/2007/10/vmwarecopy_02.zip" title="VMWareCopy 0.2">VMWareCopy 0.2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2007/10/21/vmwarecopy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SimpleFTP Server 0.2</title>
		<link>http://www.tudra.net/wp/2007/10/21/simpleftp-server-02/</link>
		<comments>http://www.tudra.net/wp/2007/10/21/simpleftp-server-02/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 15:13:21 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/2007/10/21/simpleftp-server-02</guid>
		<description><![CDATA[What is changed:
Uninstaller will first uninstall service.
Relative paths are send to the client (e.g. C:\Temp\mydir becomes /mydir).
Minor fixes.
For those who are interested. The server is based on LightFTPServer by Joel Pobar (http://callvirt.net/blog/). I used icons from the SilkIcons set by Mark James. Took some FileMonitor code from SathishVJ and basically copied the PasswordHash code from [...]]]></description>
			<content:encoded><![CDATA[<p>What is changed:</p>
<li>Uninstaller will first uninstall service.</li>
<li>Relative paths are send to the client (e.g. C:\Temp\mydir becomes /mydir).</li>
<li>Minor fixes.</li>
<p>For those who are interested. The server is based on LightFTPServer by Joel Pobar (http://callvirt.net/blog/). I used icons from the SilkIcons set by Mark James. Took some FileMonitor code from SathishVJ and basically copied the PasswordHash code from Jonathan Bailey.Downloads:<a title="SimpleFTP 0.2" href="http://www.tudra.net/wp/wp-content/uploads/2007/10/simpleftp_02.exe">SimpleFTP 0.2</a>, <a title="Simple FTP Src 0.2" href="http://www.tudra.net/wp/wp-content/uploads/2007/10/simpleftp_src.zip">Simple FTP Src 0.2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2007/10/21/simpleftp-server-02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

