<?xml version="1.0" encoding="ISO-8859-1"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xml:lang="en-US">
	<title>Alkampfer&amp;#039;s Place</title>
	<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php" />
	<modified>2012-02-04T11:00:27Z</modified>
	<author>
		<name>Ricci Gian Maria (a.k.a. Alkampfer)</name>
	</author>
	<copyright>Copyright 2012, Ricci Gian Maria (a.k.a. Alkampfer)</copyright>
	<generator url="http://www.sourceforge.net/projects/sphpblog" version="0.4.8">SPHPBLOG</generator>
	<entry>
		<title>Nuovo blog</title>
		<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070503-034949" />
		<content type="text/html" mode="escaped"><![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.]]></content>
		<id>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070503-034949</id>
		<issued>2007-05-03T00:00:00Z</issued>
		<modified>2007-05-03T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Terzo screencast pubblicato.</title>
		<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070131-111000" />
		<content type="text/html" mode="escaped"><![CDATA[Nella sezione multimedia di dotnetmarche ho pubblicato il mio terzo screencast, a chi interessa sa dove si trova :P<br /><br />Alk.]]></content>
		<id>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070131-111000</id>
		<issued>2007-01-31T00:00:00Z</issued>
		<modified>2007-01-31T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Are you searching for Spring.Services.WindowsServices.Installer.exe ??</title>
		<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070131-083057" />
		<content type="text/html" mode="escaped"><![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 /> ]]></content>
		<id>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070131-083057</id>
		<issued>2007-01-31T00:00:00Z</issued>
		<modified>2007-01-31T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Nuovo articolo in DotNetMarche</title>
		<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070129-093523" />
		<content type="text/html" mode="escaped"><![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>.]]></content>
		<id>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070129-093523</id>
		<issued>2007-01-29T00:00:00Z</issued>
		<modified>2007-01-29T00:00:00Z</modified>
	</entry>
	<entry>
		<title>La mancanza di tempo</title>
		<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070118-092411" />
		<content type="text/html" mode="escaped"><![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.]]></content>
		<id>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070118-092411</id>
		<issued>2007-01-18T00:00:00Z</issued>
		<modified>2007-01-18T00:00:00Z</modified>
	</entry>
	<entry>
		<title>YAVL</title>
		<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070105-123703" />
		<content type="text/html" mode="escaped"><![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.]]></content>
		<id>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry070105-123703</id>
		<issued>2007-01-05T00:00:00Z</issued>
		<modified>2007-01-05T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Secondo screencast attivato</title>
		<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061229-153707" />
		<content type="text/html" mode="escaped"><![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.]]></content>
		<id>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061229-153707</id>
		<issued>2006-12-29T00:00:00Z</issued>
		<modified>2006-12-29T00:00:00Z</modified>
	</entry>
	<entry>
		<title>VTbook, lavorare con un portatile e 4 monitor :P</title>
		<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061228-131912" />
		<content type="text/html" mode="escaped"><![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.]]></content>
		<id>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061228-131912</id>
		<issued>2006-12-28T00:00:00Z</issued>
		<modified>2006-12-28T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Buon Natale</title>
		<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061224-073523" />
		<content type="text/html" mode="escaped"><![CDATA[Tanti auguri di buon Natale ai lettori del mio Blog.<br /><br />Alk.]]></content>
		<id>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061224-073523</id>
		<issued>2006-12-24T00:00:00Z</issued>
		<modified>2006-12-24T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Una serie di blog su CC.NET</title>
		<link rel="alternate" type="text/html" href="http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061220-101440" />
		<content type="text/html" mode="escaped"><![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.

]]></content>
		<id>http://www.nablasoft.com/public/alkampfer/index.php?entry=entry061220-101440</id>
		<issued>2006-12-20T00:00:00Z</issued>
		<modified>2006-12-20T00:00:00Z</modified>
	</entry>
</feed>

Failed loading C:\aspcomponents\ioncube_loader_win_4.4.dll
Failed loading C:\Program Files\Zend_Optimizer-3.2.6\lib\ZendExtensionManager.dll

