<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>Alkampfer&#039;s Place</title>
		<link>http://www.nablasoft.com/public/alkampfer/index.php</link>
		<description><![CDATA[Nablasoft]]></description>
		<copyright>Copyright 2012, Ricci Gian Maria (a.k.a. Alkampfer)</copyright>
		<managingEditor>Ricci Gian Maria (a.k.a. Alkampfer)</managingEditor>
		<language>en-US</language>
		<generator>SPHPBLOG 0.4.8</generator>
		<item>
			<title>Nuovo blog</title>
			<link>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070503-034949</link>
			<description><![CDATA[Riflettendo è assolutamente inutile tenere due blog, visto che il mio blog principale è sempre stato quello di ugi, ma volevo comunque tenere un blog su nablasoft.<br />Questo blog è un simplephpblog, nessuna richiesta di database, ma poche funzionalità, per cui ora che abbiamo cambiato hosting passando da aruba ad uno che ci costa il triplo, ma che ci offre molto di più, ho deciso di fare il grande passo...cercare di scrivere in inglese :|.<br /><br />Per cui ho spostato il blog all&#039;indirizzo <a href="http://www.nablasoft.com/alkampfer" target="_blank" >http://www.nablasoft.com/alkampfer</a>, ho utilizzato wordpress e ho iniziato a bloggare in inglese con word 2007 che mi aiuta come correttore ortografico.<br /><br />Speriamo di non scrivere castronerie, correggetemi senza pietà<br /><br />Alk.]]></description>
			<category>General</category>
			<guid isPermaLink="true">http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070503-034949</guid>
			<author>Ricci Gian Maria (a.k.a. Alkampfer)</author>
			<pubDate>Thu, 03 May 2007 08:49:49 GMT</pubDate>
			<comments>http://www.nablasoft.com/public/alkampfer/comments.php?y=07&amp;m=05&amp;entry=entry070503-034949</comments>
		</item>
		<item>
			<title>Terzo screencast pubblicato.</title>
			<link>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070131-111000</link>
			<description><![CDATA[Nella sezione multimedia di dotnetmarche ho pubblicato il mio terzo screencast, a chi interessa sa dove si trova :P<br /><br />Alk.]]></description>
			<category>.NET</category>
			<guid isPermaLink="true">http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070131-111000</guid>
			<author>Ricci Gian Maria (a.k.a. Alkampfer)</author>
			<pubDate>Wed, 31 Jan 2007 10:10:00 GMT</pubDate>
			<comments>http://www.nablasoft.com/public/alkampfer/comments.php?y=07&amp;m=01&amp;entry=entry070131-111000</comments>
		</item>
		<item>
			<title>Are you searching for Spring.Services.WindowsServices.Installer.exe ??</title>
			<link>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070131-083057</link>
			<description><![CDATA[If you, after read chapter 23 of spring.net documentation, are surprised that <strong>Spring.Services.WindowsServices.Installer.exe</strong> program, needed to install windows.services part of Spring.Net, is missing. <br /><br />Where is missing file Spring.Services.WindowsService.Installer.exe ???<br /><br />Here it is my steps to build it, but maybe spring documentation could be clearer  :grr: .<br /><br />1) Download and install CVS client for windows. (CVSNT)<br />2) grab latest source of Spring .NET with the following two dos command (The first one will prompt you for a password, simply press enter without writing any char)<br /><br />cvs -d:pserver:anonymous@springnet.cvs.sourceforge.net:/cvsroot/springnet login <br /> <br />cvs -z3 -d:pserver:anonymous@springnet.cvs.sourceforge.net:/cvsroot/springnet co -P Spring.Net<br /><br />3) Download and install NANT and NANT contrib. Version 0.85 was fine for me, you can try with older version too.<br />4) Open Spring.Build file, locate the target &quot;compile-net-2.0&quot;. Here you find that the part related to Spring.Windows.Services is commented out. Uncomment it, but also move it to the end of the target, just before the &lt;/if&gt; tag.<br />5) Compile everything with the dos command  <strong>nant daily-build-2.0</strong>  <br /><br />enjoy the library.<br /><br />This is my modified target if you like<br /><br /> <code><br />  &lt;target name=&quot;compile-net-2.0&quot; description=&quot;Builds .NET Framework 2.0 version&quot;<br />          depends=&quot;set-net-2.0-runtime-configuration, check-spring-basedir, clean-current-bin-dir, TestInit&quot;&gt;<br />    &lt;property name=&quot;temp.build.skip&quot; value=&quot;false&quot;/&gt;<br />    &lt;call target=&quot;copykeys&quot;/&gt;<br />    &lt;if test=&quot;${not temp.build.skip}&quot;&gt;<br />      &lt;property name=&quot;lib.dir&quot;<br />                value=&quot;${spring.basedir}/lib/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}&quot;/&gt;<br />      &lt;call target=&quot;copylibs&quot;/&gt;<br />      &lt;nant buildfile=&quot;src/Spring/Spring.Core/Spring.Core.build&quot; target=&quot;build&quot;/&gt;<br />      &lt;nant buildfile=&quot;src/Spring/Spring.Aop/Spring.Aop.build&quot; target=&quot;build&quot; if=&quot;${build-aop}&quot;/&gt;<br />      &lt;nant buildfile=&quot;src/Spring/Spring.Web/Spring.Web.build&quot; target=&quot;build&quot; if=&quot;${build-web}&quot;/&gt;<br />      &lt;nant buildfile=&quot;src/Spring/Spring.Data/Spring.Data.build&quot; target=&quot;build&quot; if=&quot;${build-data}&quot;/&gt;<br />      &lt;nant buildfile=&quot;src/Spring/Spring.Services/Spring.Services.build&quot; target=&quot;build&quot; if=&quot;${build-services}&quot;/&gt;<br />      &lt;nant buildfile=&quot;src/Spring/Spring.Testing/Spring.Testing.build&quot; target=&quot;build&quot; if=&quot;${build-testing}&quot;/&gt; <br /><br />      &lt;nant buildfile=&quot;examples/Spring/Spring.Examples.build&quot; target=&quot;build&quot;&gt;<br />        &lt;!-- over ride setting --&gt;<br />        &lt;properties&gt;<br />	  &lt;!-- TODO some compile errors... ignore for now.  --&gt;<br />          &lt;property name=&quot;build-web&quot; value=&quot;false&quot;/&gt;<br />        &lt;/properties&gt;<br />      &lt;/nant&gt;<br /><br />      &lt;nant buildfile=&quot;sandbox/Spring.Sandbox.build&quot; target=&quot;build&quot; if=&quot;${build-sandbox}&quot;&gt;<br />        &lt;!-- over ride setting --&gt;<br />        &lt;properties&gt;<br />	  &lt;!-- TODO some compile errors... ignore for now.  --&gt;<br />          &lt;property name=&quot;build-data&quot; value=&quot;false&quot;/&gt;<br />	  &lt;property name=&quot;nowarn.numbers&quot; value=&quot;${nowarn.numbers},0419&quot;/&gt;<br />        &lt;/properties&gt;<br />      &lt;/nant&gt;<br /><br /><br />      &lt;nant buildfile=&quot;test/Spring/Spring.Core.Tests/Spring.Core.Tests.build&quot; target=&quot;test&quot;/&gt;<br />      &lt;nant buildfile=&quot;test/Spring/Spring.Aop.Tests/Spring.Aop.Tests.build&quot; target=&quot;test&quot; if=&quot;${build-aop}&quot;/&gt;<br />      &lt;nant buildfile=&quot;test/Spring/Spring.Data.Tests/Spring.Data.Tests.build&quot; target=&quot;test&quot; if=&quot;${build-data}&quot;/&gt;<br />      &lt;nant buildfile=&quot;test/Spring/Spring.Data.Integration.Tests/Spring.Data.Integration.Tests.build&quot; target=&quot;test&quot; if=&quot;${build-data}&quot;/&gt;<br /><br />	&lt;!--<br />      &lt;nant buildfile=&quot;test/Spring/Spring.Services.Tests/Spring.Services.Tests.build&quot; target=&quot;test&quot; if=&quot;${build-services}&quot;/&gt;<br />	--&gt;<br /><br />      &lt;nant buildfile=&quot;test/Spring/Spring.Web.Tests/Spring.Web.Tests.build&quot; target=&quot;test&quot; if=&quot;${build-web}&quot;/&gt;<br /><br />      &lt;nant buildfile=&quot;sandbox/Spring.Sandbox.build&quot; target=&quot;test&quot; if=&quot;${build-sandbox}&quot;&gt;<br />        &lt;!-- over ride setting --&gt;<br />        &lt;properties&gt;<br />	  &lt;!-- TODO some compile errors... ignore for now.  --&gt;<br />          &lt;property name=&quot;build-data&quot; value=&quot;false&quot;/&gt;<br />	  &lt;property name=&quot;nowarn.numbers.test&quot; value=&quot;${nowarn.numbers.test},1718&quot;/&gt;<br />        &lt;/properties&gt;<br />      &lt;/nant&gt;<br /><br />		 &lt;!-- has dependencies on sandbox Spring.Threading....--&gt;<br />		 &lt;nant buildfile=&quot;src/Spring/Spring.Services/Spring.Services.WindowsService.Common.build&quot; target=&quot;build&quot;<br />						 if=&quot;${build-winservices}&quot;/&gt;<br />		 &lt;nant buildfile=&quot;src/Spring/Spring.Services/Spring.Services.WindowsService.Process.build&quot; target=&quot;build&quot;<br />						 if=&quot;${build-winservices}&quot;/&gt;<br />		 &lt;nant buildfile=&quot;src/Spring/Spring.Services/Spring.Services.WindowsService.Gui.build&quot; target=&quot;build&quot;<br />						 if=&quot;${build-winservices}&quot;/&gt;<br />		 &lt;nant buildfile=&quot;src/Spring/Spring.Services/Spring.Services.WindowsService.Installer.build&quot; target=&quot;build&quot;<br />						 if=&quot;${build-winservices}&quot;/&gt;<br />    &lt;/if&gt;<br />  &lt;/target&gt;<br /></code> <br /> ]]></description>
			<category>.NET</category>
			<guid isPermaLink="true">http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070131-083057</guid>
			<author>Ricci Gian Maria (a.k.a. Alkampfer)</author>
			<pubDate>Wed, 31 Jan 2007 07:30:57 GMT</pubDate>
			<comments>http://www.nablasoft.com/public/alkampfer/comments.php?y=07&amp;m=01&amp;entry=entry070131-083057</comments>
		</item>
		<item>
			<title>Nuovo articolo in DotNetMarche</title>
			<link>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070129-093523</link>
			<description><![CDATA[Ho appena pubblicato la seconda parte dell&#039;articolo sui plugin su dotnetmarche, potete leggerlo <A href="http://dotnetmarche.org/blogs/article/default.aspx">quì</A>.]]></description>
			<category>.NET</category>
			<guid isPermaLink="true">http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070129-093523</guid>
			<author>Ricci Gian Maria (a.k.a. Alkampfer)</author>
			<pubDate>Mon, 29 Jan 2007 08:35:23 GMT</pubDate>
			<comments>http://www.nablasoft.com/public/alkampfer/comments.php?y=07&amp;m=01&amp;entry=entry070129-093523</comments>
		</item>
		<item>
			<title>La mancanza di tempo</title>
			<link>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070118-092411</link>
			<description><![CDATA[Purtroppo questi ultimi giorni soffro veramente di mancanza di tempo, di contro sono contento perché sto ritagliando del tempo per vedere nhibernate che sicuramente è un orm di tutto rispetto. Mi spiace solamente di non avere tempo di  proseguire il tuttorial su CC.NET come vorrei.<br /><br />Alk.]]></description>
			<category>Programmazione Generale</category>
			<guid isPermaLink="true">http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070118-092411</guid>
			<author>Ricci Gian Maria (a.k.a. Alkampfer)</author>
			<pubDate>Thu, 18 Jan 2007 08:24:11 GMT</pubDate>
			<comments>http://www.nablasoft.com/public/alkampfer/comments.php?y=07&amp;m=01&amp;entry=entry070118-092411</comments>
		</item>
		<item>
			<title>YAVL</title>
			<link>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070105-123703</link>
			<description><![CDATA[Per provare le funzionalità di codeplex ho aperto un progettino stupido stupido chiamato <a href="http://www.codeplex.com/yavl/." target="_blank" >http://www.codeplex.com/yavl/.</a><br />Debbo dire che le funzionalità e la responsività del source control sono decisamente carine.<br /><br />Alk.]]></description>
			<category>.NET</category>
			<guid isPermaLink="true">http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070105-123703</guid>
			<author>Ricci Gian Maria (a.k.a. Alkampfer)</author>
			<pubDate>Fri, 05 Jan 2007 11:37:03 GMT</pubDate>
			<comments>http://www.nablasoft.com/public/alkampfer/comments.php?y=07&amp;m=01&amp;entry=entry070105-123703</comments>
		</item>
		<item>
			<title>Secondo screencast attivato</title>
			<link>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061229-153707</link>
			<description><![CDATA[Nella apposita sezione <A href="http://dotnetmarche.org/blogs/multimedia/default.aspx">multimedia</A> di dotnetmarche ho pubblicato il mio secondo screencast, a breve il terzo sempre sul clr profiler.<br /><br />Alk.]]></description>
			<category>.NET</category>
			<guid isPermaLink="true">http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061229-153707</guid>
			<author>Ricci Gian Maria (a.k.a. Alkampfer)</author>
			<pubDate>Fri, 29 Dec 2006 14:37:07 GMT</pubDate>
			<comments>http://www.nablasoft.com/public/alkampfer/comments.php?y=06&amp;m=12&amp;entry=entry061229-153707</comments>
		</item>
		<item>
			<title>VTbook, lavorare con un portatile e 4 monitor :P</title>
			<link>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061228-131912</link>
			<description><![CDATA[Debbo dire che lavorare con i portatili non mi ha mai entusiasmato, soprattutto perchè con il fisso sono abituato a lavorare con due monitor. Visto che per esigenze forse sono costretto a cambiare il portatile e non il fisso vorrei comunque poter utilizzare entrambi i miei monitor 17&#039;&#039; LCD assieme a quello del portatile per avere così ben 3 monitor :P<br /><br />Dopo avere girato un po per internet ho trovato alla fine <A href="http://www.ilmac.net/recensioni/vtbook.htm">VTBook</A> il cui rapporto qualità/prezzo sembra veramente interessante. Indubbiamente se mi farò un portatile sarà una spesa preventivata.<br /><br />Alk.]]></description>
			<category>General</category>
			<guid isPermaLink="true">http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061228-131912</guid>
			<author>Ricci Gian Maria (a.k.a. Alkampfer)</author>
			<pubDate>Thu, 28 Dec 2006 12:19:12 GMT</pubDate>
			<comments>http://www.nablasoft.com/public/alkampfer/comments.php?y=06&amp;m=12&amp;entry=entry061228-131912</comments>
		</item>
		<item>
			<title>Buon Natale</title>
			<link>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061224-073523</link>
			<description><![CDATA[Tanti auguri di buon Natale ai lettori del mio Blog.<br /><br />Alk.]]></description>
			<category>General</category>
			<guid isPermaLink="true">http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061224-073523</guid>
			<author>Ricci Gian Maria (a.k.a. Alkampfer)</author>
			<pubDate>Sun, 24 Dec 2006 06:35:23 GMT</pubDate>
			<comments>http://www.nablasoft.com/public/alkampfer/comments.php?y=06&amp;m=12&amp;entry=entry061224-073523</comments>
		</item>
		<item>
			<title>Una serie di blog su CC.NET</title>
			<link>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061220-101440</link>
			<description><![CDATA[

Per chi fosse interessato, visto che sto spendendo tempo su Cruise Control .NET ho iniziato a mettere nel mio <A href="http://blogs.ugidotnet.org/rgm/category/2405.aspx">blog su UGI.NET</A> una serie di post sui miei progressi, penso che possano interessare qualcuno, e comunque costituiscono un buon reminder per me quando dovrò fare un&#039;altra istallazione :P.

]]></description>
			<category>CruiseControl.NET</category>
			<guid isPermaLink="true">http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061220-101440</guid>
			<author>Ricci Gian Maria (a.k.a. Alkampfer)</author>
			<pubDate>Wed, 20 Dec 2006 09:14:40 GMT</pubDate>
			<comments>http://www.nablasoft.com/public/alkampfer/comments.php?y=06&amp;m=12&amp;entry=entry061220-101440</comments>
		</item>
	</channel>
</rss>

Failed loading C:\aspcomponents\ioncube_loader_win_4.4.dll
Failed loading C:\Program Files\Zend_Optimizer-3.2.6\lib\ZendExtensionManager.dll

