<?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>Toadz</title>
	<atom:link href="http://www.toadz.dk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.toadz.dk</link>
	<description>collection of useful stuff</description>
	<lastBuildDate>Tue, 15 Jun 2010 13:05:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Subversion build number in Visual Studio AssemblyInfo.cs</title>
		<link>http://www.toadz.dk/2010/06/subversion-build-number-in-visual-studio-assemblyinfo-cs/</link>
		<comments>http://www.toadz.dk/2010/06/subversion-build-number-in-visual-studio-assemblyinfo-cs/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 13:03:29 +0000</pubDate>
		<dc:creator>toadz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.toadz.dk/?p=70</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<ol>
<li>Download <a href="http://msbuildtasks.tigris.org/" target="_blank">MSBuild Community Task</a></li>
<li>Add the following to the .csproj file of the project you want to follow the svn build numbering. Add just before &lt;/Project&gt;</li>
</ol>
<pre class="brush: php">
  &lt;!-- Import of the MSBuildCommunityTask targets --&gt;
&lt;Import Project=&quot;$(MSBuildExtensionsPath)\MSBuildCommunityTasks\MSBuild.Community.Tasks.Targets&quot; /&gt;

&lt;!-- to manage version number --&gt;
&lt;Target Name=&quot;Version&quot;&gt;
  &lt;Version VersionFile=&quot;version.txt&quot; RevisionType=&quot;Increment&quot;&gt;
    &lt;Output TaskParameter=&quot;Major&quot; PropertyName=&quot;Major&quot; /&gt;
    &lt;Output TaskParameter=&quot;Minor&quot; PropertyName=&quot;Minor&quot; /&gt;
    &lt;Output TaskParameter=&quot;Build&quot; PropertyName=&quot;Build&quot; /&gt;
    &lt;Output TaskParameter=&quot;Revision&quot; PropertyName=&quot;Revision&quot; /&gt;
  &lt;/Version&gt;
&lt;/Target&gt;

  &lt;!-- to generate our personnal version info --&gt;
  &lt;Target Name=&quot;AssemblyInfo&quot;&gt;

  &lt;SvnVersion LocalPath=&quot;$(MSBuildProjectDirectory)&quot; Condition=&quot;Exists(&#039;$(ProgramFiles)\subversion\bin\svn.exe&#039;)&quot;&gt;
    &lt;Output TaskParameter=&quot;Revision&quot; PropertyName=&quot;Build&quot; /&gt;
  &lt;/SvnVersion&gt; 

  &lt;AssemblyInfo
    CodeLanguage=&quot;CS&quot;
    OutputFile=&quot;Properties\AssemblyInfo.cs&quot;
    AssemblyTitle=&quot;WindScanner&quot;
    AssemblyDescription=&quot;&quot;
    AssemblyCompany=&quot;Risø&quot;
    AssemblyProduct=&quot;windscanner&quot;
    AssemblyCopyright=&quot;Copyright © 2010&quot;
    ComVisible=&quot;false&quot;
    Guid=&quot;88812638-9547-4480-3bf4-4fe25103b35c&quot;
    AssemblyVersion=&quot;$(Major).$(Minor).$(Build).$(Revision)&quot;
    AssemblyFileVersion=&quot;$(Major).$(Minor).$(Build).$(Revision)&quot;
    Condition=&quot;$(Revision) != &#039;0&#039; &quot;/&gt;
&lt;/Target&gt;

&lt;!-- We launch these two targets --&gt;
&lt;Target Name=&quot;BeforeBuild&quot;&gt;
    &lt;CallTarget Targets=&quot;Version&quot; /&gt;
    &lt;CallTarget Targets=&quot;AssemblyInfo&quot; /&gt;
&lt;/Target&gt;

&lt;Target Name=&quot;AfterBuild&quot;&gt;
&lt;/Target&gt;
</pre>
<p>Change the path of your svn installation if necessary.</p>
<p>You can now use stuff like</p>
<pre class="brush: php">
public static String Version
        {
            get
            {
                return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
            }
        }
</pre>
<p>And the the changes reflecting the svn build!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toadz.dk/2010/06/subversion-build-number-in-visual-studio-assemblyinfo-cs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Delegate.BeginInvoke vs ThreadPool.QueueUserWorkItem</title>
		<link>http://www.toadz.dk/2010/01/delegate-begininvoke-vs-threadpool-queueuserworkitem/</link>
		<comments>http://www.toadz.dk/2010/01/delegate-begininvoke-vs-threadpool-queueuserworkitem/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 09:43:42 +0000</pubDate>
		<dc:creator>toadz</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://www.toadz.dk/?p=61</guid>
		<description><![CDATA[ThreadPool is performance-wise faster.
ThreadPool is fire and forget in the sense that BeginInvoke should always be paired with EndInvoke because exceptions are passed to the EndInvoke and should be handled here to avoid the exceptions lingering in memory.
If you don&#8217;t care about exceptions and have a relatively simple delegate that should be invoked, use ThreadPool.
If [...]]]></description>
			<content:encoded><![CDATA[<p>ThreadPool is <a href="http://shevaspace.blogspot.com/2007/08/delegatebegininvoke-vs.html">performance-wise faster</a>.</p>
<p>ThreadPool is fire and forget in the sense that BeginInvoke should always be paired with EndInvoke because exceptions are passed to the EndInvoke and should be handled here to avoid the exceptions lingering in memory.</p>
<p>If you don&#8217;t care about exceptions and have a relatively simple delegate that should be invoked, use ThreadPool.</p>
<p>If you have more complex delegates where things could go wrong that you care about, use Delegate.BeginInvoke/EndInvoke.</p>
<p>An example of how to use the ThreadPool.QueueUserWorkItem and lambda expressions:</p>
<pre class="brush: csharp">

ThreadPool.QueueUserWorkItem(callback =&gt; SomeMethod(someArgument));
</pre>
<p>Alternatively:</p>
<pre class="brush: csharp">

WaitCallback waitCallback = new WaitCallback(callback =&gt; { x =&gt; x*x});

ThreadPool.QueueUserWorkItem(waitCallback);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.toadz.dk/2010/01/delegate-begininvoke-vs-threadpool-queueuserworkitem/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Remove .svn or _svn directories batch</title>
		<link>http://www.toadz.dk/2010/01/remove-svn-or-_svn-directories-batch/</link>
		<comments>http://www.toadz.dk/2010/01/remove-svn-or-_svn-directories-batch/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 10:46:38 +0000</pubDate>
		<dc:creator>toadz</dc:creator>
				<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://www.toadz.dk/?p=46</guid>
		<description><![CDATA[The following batch file will search for &#8220;_svn&#8221; directories, clean the out and remove them.
I put it in a file called cleansvndir.bat and ran &#8220;cleansvndir.bat &#62;&#62; result.txt&#8221; from the command prompt.

&#60;div id=&#34;_mcePaste&#34;&#62;@echo off&#60;/div&#62;
&#60;div id=&#34;_mcePaste&#34;&#62;pushd&#60;/div&#62;
&#60;div id=&#34;_mcePaste&#34;&#62;for /f &#34;usebackq tokens=*&#34; %%d in (`&#34;dir *_svn* /ad/b/s &#124; sort /R&#34;`) do (&#60;/div&#62;
&#60;div id=&#34;_mcePaste&#34;&#62;ECHO &#34;cd %%d&#34;&#60;/div&#62;
&#60;div id=&#34;_mcePaste&#34;&#62;pushd &#34;%%d&#34;&#60;/div&#62;
&#60;div id=&#34;_mcePaste&#34;&#62;attrib -r [...]]]></description>
			<content:encoded><![CDATA[<p>The following batch file will search for &#8220;_svn&#8221; directories, clean the out and remove them.</p>
<p>I put it in a file called cleansvndir.bat and ran &#8220;cleansvndir.bat &gt;&gt; result.txt&#8221; from the command prompt.</p>
<pre class="brush: c">
&lt;div id=&quot;_mcePaste&quot;&gt;@echo off&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;pushd&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;for /f &quot;usebackq tokens=*&quot; %%d in (`&quot;dir *_svn* /ad/b/s | sort /R&quot;`) do (&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;ECHO &quot;cd %%d&quot;&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;pushd &quot;%%d&quot;&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;attrib -r *.* /s&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;ECHO &quot;Deleting all in %%d&quot;&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;del *.* /q&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;for /f &quot;usebackq tokens=*&quot; %%e in (`&quot;dir /ad/b/s&quot;`) do (&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;ECHO &quot;cd %%e&quot;&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;pushd &quot;%%e&quot;&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;ECHO &quot;Deleting all in %%e&quot;&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;del *.* /q&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;popd&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;ECHO &quot;Removing dir %%e&quot;&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;rd &quot;%%e&quot;&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;)&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;popd&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;ECHO &quot;Removing %%d&quot;&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;rd &quot;%%d&quot;&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;)&lt;/div&gt;
@echo offpushd
for /f &quot;usebackq tokens=*&quot; %%d in (`&quot;dir *_svn* /ad/b/s | sort /R&quot;`) do (	ECHO &quot;cd %%d&quot;	pushd &quot;%%d&quot;	attrib -r *.* /s
ECHO &quot;Deleting all in %%d&quot;	del *.* /q
for /f &quot;usebackq tokens=*&quot; %%e in (`&quot;dir /ad/b/s&quot;`) do (			ECHO &quot;cd %%e&quot;			pushd &quot;%%e&quot;
ECHO &quot;Deleting all in %%e&quot;			del *.* /q
popd

ECHO &quot;Removing dir %%e&quot;			rd &quot;%%e&quot;		)	popd
ECHO &quot;Removing %%d&quot;	rd &quot;%%d&quot;)
</pre>
<p>Run twice!</p>
<p><a href="http://ss64.com/nt/for_f.html" target="_blank">Batch info</a>.</p>
<p>This suggests that the long filenames could be wrapped in double quotes (&#8220;&#8221;%%e&#8221;") instead of using the tokens=* parameter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toadz.dk/2010/01/remove-svn-or-_svn-directories-batch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CLR profiler for memory leaks</title>
		<link>http://www.toadz.dk/2009/12/clr-profiler-for-memory-leaks/</link>
		<comments>http://www.toadz.dk/2009/12/clr-profiler-for-memory-leaks/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 12:13:37 +0000</pubDate>
		<dc:creator>toadz</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.toadz.dk/?p=42</guid>
		<description><![CDATA[http://www.microsoft.com/downloads/details.aspx?familyid=86ce6052-d7f4-4aeb-9b7a-94635beebdda&#38;displaylang=en
]]></description>
			<content:encoded><![CDATA[<p>http://www.microsoft.com/downloads/details.aspx?familyid=86ce6052-d7f4-4aeb-9b7a-94635beebdda&amp;displaylang=en</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toadz.dk/2009/12/clr-profiler-for-memory-leaks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Labels in tables and figures not working</title>
		<link>http://www.toadz.dk/2009/12/labels-in-tables-and-figures-not-working/</link>
		<comments>http://www.toadz.dk/2009/12/labels-in-tables-and-figures-not-working/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 10:38:21 +0000</pubDate>
		<dc:creator>toadz</dc:creator>
				<category><![CDATA[LaTeX]]></category>

		<guid isPermaLink="false">http://www.toadz.dk/?p=37</guid>
		<description><![CDATA[Labels must always come after the caption!
Example:


\begin{table}[!h]
\sffamily{
\begin{tabularx}{\textwidth}{&#124;l&#124;X&#124;c&#124;}
text1 &#38; text2 \\
\end{tabularx}
}
\caption{Texts.}
\label{tab:texts}
\end{table}

]]></description>
			<content:encoded><![CDATA[<p>Labels must always come <strong>after</strong> the caption!</p>
<p>Example:</p>
<pre class="brush: latex">

\begin{table}[!h]
\sffamily{
\begin{tabularx}{\textwidth}{|l|X|c|}
text1 &amp; text2 \\
\end{tabularx}
}
\caption{Texts.}
\label{tab:texts}
\end{table}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.toadz.dk/2009/12/labels-in-tables-and-figures-not-working/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setup default.ctp layout and home.ctp contents</title>
		<link>http://www.toadz.dk/2009/10/setup-default-ctp-layout-and-home-ctp-contents/</link>
		<comments>http://www.toadz.dk/2009/10/setup-default-ctp-layout-and-home-ctp-contents/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 11:18:31 +0000</pubDate>
		<dc:creator>toadz</dc:creator>
				<category><![CDATA[CakePHP]]></category>

		<guid isPermaLink="false">http://www.toadz.dk/?p=34</guid>
		<description><![CDATA[The easy way:
Copy cake/libs/view/layouts/default.ctp to app/views/layouts/default.ctp and change it to suit your needs. The layout is the structure of your page contents.
Create the file app/views/pages/home.ctp (the pages directory does not exist by default, so create it first). This file will be rendered in the layout (default.ctp by default..) as the contents of your website when [...]]]></description>
			<content:encoded><![CDATA[<p>The easy way:</p>
<p>Copy <strong>cake/libs/view/layouts/default.ctp</strong> to <strong>app/views/layouts/default.ctp</strong> and change it to suit your needs. The layout is the structure of your page contents.</p>
<p>Create the file <strong>app/views/pages/home.ctp</strong> (the pages directory does not exist by default, so create it first). This file will be rendered in the layout (default.ctp by default..) as the contents of your website when users visit the front page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toadz.dk/2009/10/setup-default-ctp-layout-and-home-ctp-contents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>String concatenation optimization</title>
		<link>http://www.toadz.dk/2009/07/string-concatenation-optimization/</link>
		<comments>http://www.toadz.dk/2009/07/string-concatenation-optimization/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 13:15:23 +0000</pubDate>
		<dc:creator>toadz</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.toadz.dk/?p=28</guid>
		<description><![CDATA[A discussion on the performance of various ways of concatenating string in c#.
Conclusion seems to be StringBuilder provides better performance for larger concatenation iterations. String.Format does not.
]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://stackoverflow.com/questions/282468/string-operation-optimisation-in-c">discussion</a> on the performance of various ways of concatenating string in c#.</p>
<p>Conclusion seems to be StringBuilder provides better performance for larger concatenation iterations. String.Format does not.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toadz.dk/2009/07/string-concatenation-optimization/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Comparison of foreach and List.ForEach</title>
		<link>http://www.toadz.dk/2009/07/comparison-of-foreach-and-list-foreach/</link>
		<comments>http://www.toadz.dk/2009/07/comparison-of-foreach-and-list-foreach/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 09:59:49 +0000</pubDate>
		<dc:creator>toadz</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.toadz.dk/?p=21</guid>
		<description><![CDATA[Compared here http://diditwith.net/2006/10/05/PerformanceOfForeachVsListForEach.aspx
]]></description>
			<content:encoded><![CDATA[<p>Compared here <a href="http://diditwith.net/2006/10/05/PerformanceOfForeachVsListForEach.aspx">http://diditwith.net/2006/10/05/PerformanceOfForeachVsListForEach.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.toadz.dk/2009/07/comparison-of-foreach-and-list-foreach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sorting links</title>
		<link>http://www.toadz.dk/2009/07/sorting-links/</link>
		<comments>http://www.toadz.dk/2009/07/sorting-links/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 18:32:36 +0000</pubDate>
		<dc:creator>toadz</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Sorting]]></category>

		<guid isPermaLink="false">http://www.toadz.dk/?p=16</guid>
		<description><![CDATA[http://www.sorting-algorithms.com/ holds a nice overview of the most common sorting algorithms.
http://www.csharp411.com/c-stable-sort/show a demonstration of an insertion sort algorithm done in C#.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sorting-algorithms.com/">http://www.sorting-algorithms.com/</a> holds a nice overview of the most common sorting algorithms.</p>
<p><a href="http://www.csharp411.com/c-stable-sort/">http://www.csharp411.com/c-stable-sort/</a>show a demonstration of an insertion sort algorithm done in C#.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toadz.dk/2009/07/sorting-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing VirtualBox guest additions on Fedora 11 in Windows (and change the screen resolution)</title>
		<link>http://www.toadz.dk/2009/07/installing-virtualbox-guest-additions-on-fedora-11-in-windows/</link>
		<comments>http://www.toadz.dk/2009/07/installing-virtualbox-guest-additions-on-fedora-11-in-windows/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 13:35:02 +0000</pubDate>
		<dc:creator>toadz</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[guest additions]]></category>
		<category><![CDATA[virtual box]]></category>

		<guid isPermaLink="false">http://www.toadz.dk/?p=10</guid>
		<description><![CDATA[Once Fedora has been installed:

Unmount the CD-ROM from the VirtualBox toolbar &#8220;Devices &#62; Unmount CD/DVD-ROM&#8221;. This might require a restart of Fedora.
Click &#8220;Devices &#62; Install Guest Additions&#8221;, this will mount the guest additions CD.
Open a terminal window (ALT+F2: gnome-terminal).
Type su to switch to administrator mode. (Type the password when prompted).
Install GNU Compiler Collection. Type: yum [...]]]></description>
			<content:encoded><![CDATA[<p>Once Fedora has been installed:</p>
<ol>
<li>Unmount the CD-ROM from the VirtualBox toolbar &#8220;Devices &gt; Unmount CD/DVD-ROM&#8221;. This might require a restart of Fedora.</li>
<li>Click &#8220;Devices &gt; Install Guest Additions&#8221;, this will mount the guest additions CD.</li>
<li>Open a terminal window (ALT+F2: <strong>gnome-terminal</strong>).</li>
<li>Type <strong>su</strong> to switch to administrator mode. (Type the password when prompted).</li>
<li>Install GNU Compiler Collection. Type: <strong>yum install gcc</strong></li>
<li>Install the kernel develop:<strong> yum install kernel-devel</strong></li>
<li>Now type  <strong>cd /media</strong> followed by <strong>cd VB</strong> ([tab] to complete, name depends on version)</li>
<li>Type <strong>./VBoxLinuxAdditions-x86.run</strong> (replace x-86 with amd64 if you are running 64 bit OS, and yes it is case sensitive.)</li>
<li>Step 8 might fail because of version issues. You will be instructed to &#8220;install the build and header files for your current Linux kernel.&#8221; and you will be given the current kernel version. In my case this was 2.6.29.4-167.fc11.i586 so I did <strong>yum install kernel-devel-</strong><strong>2.6.29.4-167.fc11.i586</strong></li>
<li>Log out and log back in and you&#8217;re done.</li>
</ol>
<p>After installing you should get a higher screen resolution. However, it still might not be large enough to fit your screen fullscreen.</p>
<p>To resolve this follow these steps.</p>
<ol>
<li>Install the package system-config-display. Type <strong>yum install system-config-display</strong></li>
<li>While this installs the package, you will have to run <strong>system-config-display &#8211;noui &#8211;reconfigure</strong> before you can use it.</li>
<li>This will create the /etc/X11/xorg.conf which you will have to edit. Type <strong>gedit /etc/X11/xorg.conf</strong></li>
<li>Locate the section &#8220;Device&#8221; and add before &#8220;EndSection&#8221;: Modes &#8220;1024&#215;768&#8243; &#8220;1280&#215;1024_75.00&#8243; (Change the resolution to fit your screen settings. _75.00 means refresh rate of 75 Hz.)</li>
<li>Save the file. Log out and log back in.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.toadz.dk/2009/07/installing-virtualbox-guest-additions-on-fedora-11-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
