Ciao a tutti, vi chiedo una cortesia, se avete un cellulare wind o tre o vodafone potreste votare i miei amici al seguente link?
http://zerolimits.vodafone.it/docs/DOC-1517
Grazie ciao
Ciao a tutti, vi chiedo una cortesia, se avete un cellulare wind o tre o vodafone potreste votare i miei amici al seguente link?
http://zerolimits.vodafone.it/docs/DOC-1517
Grazie ciao
Posted in Uncategorized
I’ve just installed my new Q9550 that will take the place of my loved E8400. The batch is L832B, idle temperatures are cool 30°C, 29°C, 27°C, 28°C just testing it at 3,4Ghz… post new news in a short…
Posted in Uncategorized | Tags: Q9550 Overclock
Ciao a tutti,
stasera sono andato a ritirare la mia moto da Vigna Moto ad Asti, mi avevano chiesto telefonicamente 100€ e me ne hanno fatti pagare 85€, sono stati molto corretti e ho risparmiato quasi il doppio rispetto ad Alessandria… Complimenti alla concessionaria Vigna Moto per la loro serietà
Posted in Uncategorized | Tags: Vigna moto serietà
Ciao a tutti,
questa mattina ho chiamato diverse officine per far fare il tagliando al mio Monster 695… il prezzo del tagliando (mini, quello dei 6000 dove ti cambiano olio motore, grassano la catena, controllano bulloni della testa e eventualmente cambiano filtro aria) intorno ai 100-120€. Un officina di Alessandria, che è famosa ad Alessandria per vendere Ducati mi ha sparato dai 150€ ai 200€… ho chiesto il perchè di cosi tanta differenza rispetto agli altri e mi trovato scuse assurde, tipo che si smontare mezza moto, saranno 2/3 ore di lavoro… risultato? la porto martedi sera ad Asti dove ho acquistato la moto e vado a riprenderla giovedì sera (contro il dopo pasqua di Alessandria)… Non trovo giusto che visto che sono l’unica officina in Alessandria città facciano cartello in questo modo… cmq pazienza, hanno perso sicuramente un cliente
Posted in Uncategorized | Tags: ducati alessandria officina
If you need to connect on a SQL Server on a non standard port [ i.e. 7000 instead of 1433] you’ve to use the ‘,’ to specifiy the port.
I got a bit stucked, i tried ‘:’ and ‘ ‘ but nothing …
so for example you’ve to do “servername, 7000″
Posted in Uncategorized | Tags: different 1433, non standard port, SQL Server Management Studio

Posted in Uncategorized
It’s coool!
Here you can download IE 8 : http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=79154fb4-c610-4a1e-811d-dfe0f1dd84d1
Installing it rigth now!
Posted in Uncategorized
Ho fatto un pò di domande all’oracolo di msn sul mio futuro, la più bella è stata questa :

Posted in Uncategorized
Hello to everybody,
it has been a long time since my last post about coding and I excuse for this… I hope you find the piece of code I’m gonna to write quite usefull….. consider this scenario :
If you’re facing all this points and you’re using .NET Framework 3.5… here’s the solution for you with a simple extension method :
He’re the PageExtension.cs code
public static class PageExtension
{
public static object GetLocalResourceEnhanced(this System.Web.UI.Page page, string resource)
{
object result = HttpContext.GetLocalResourceObject(page.AppRelativeVirtualPath, resource);
return result ?? resource;
}
}
and here’s the .aspx file :
<form id=”form1″ runat=”server”>
<div>
<label><% =this.GetLocalResourceEnhanced(“gino”)%></label>
</div>
</form>
With this if you put you label in uppercase as for example LBLWELLCOMETEXT you’ll see immediatly when some string are not present inside your .resx.
Hope it helped
Bests
Posted in Uncategorized | Tags: .net extension method, .resx, GetLocalResourceEnhanced, null