giovedì 19 gennaio 2012
Visual Studio Achievements è l’ultima intuizione di Microsoft per incoraggiare i programmatori a sviluppare in C# o Visual Basic. L’estensione è gratuita per Visual Studio, l’ambiente di sviluppo distribuito da Microsoft: applica il concetto della cd. “gamification” alla programmazione. In pratica, la trasforma in un gioco a premi.
Mentre si scrive il sorgente per un’applicazione in C# o Visual Basic, Visual Studio Achievements analizza il codice e attribuisce al programmatore un badge sulla base delle funzioni utilizzate. L’avvenuta acquisizione dei badge può essere mostrata su Microsoft Developer Network (MSDN) e sui social network — ad esempio, su Facebook.
Prescindendo dall’aspetto ludico, Visual Studio Achievements può essere un riferimento attendibile per certificare le proprie capacità in merito alla programmazione in C# e Visual Basic. Mozilla, infatti, utilizza lo stesso meccanismo per l’attribuzione di quelle competenze che non abbiano un sistema di certificazione tradizionale.
Diego
giovedì 16 aprile 2009
Pronounced "Sharp Architecture," this is a solid architectural foundation for rapidly building maintainable web applications leveraging the ASP.NET MVC framework with NHibernate. The primary advantage to be sought in using any architectural framework is to decrease the code one has to write while increasing the quality of the end product. A framework should enable developers to spend little time on infrastructure details while allowing them to focus their attentions on the domain and user experience. Accordingly, S#arp Architecture adheres to the following key principles:
- Focused on Domain Driven Design
- Loosely Coupled
- Preconfigured Infrastructure
- Open Ended Presentation
The overall goal of this is to allow developers to worry less about application "plumbing" and to spend most of their time on adding value for the client by focusing on the business logic and developing a rich user experience.
Good background material reading includes http://www.codeproject.com/KB/architecture/NHibernateBestPractices.aspx. Although there are major infrastructural changes from this article in the current architecture, the general structure is very similar and the background reading is very helpful in understanding many of the ideas behind this architecture. S#arp Architecture documentation is included along side the current release.
S#arp Architecture and the preceding article have been referenced in NHibernate in Action by Pierre Henri Kuate, Windows Developer Power Tools by James Avery and Pro LINQ Object Relational Mapping in C# 2008 by Vijay P. Mehta.
Billy McCafferty
Project homepage
lunedì 6 aprile 2009
http://www.stimator.com/
Questo è il valore di UGIdotNET :-)
site value
mercoledì 5 novembre 2008
Tired of querying in antiquated SQL?
Well, you don't have to! LINQPad lets you interactively query SQL databases
in a modern query language: LINQ. Kiss goodbye to SQL Management
Studio!
LINQPad supports everything in C# 3.0 and Framework 3.5:
- LINQ to SQL
- LINQ to Objects
- LINQ to XML
LINQPad is also a great way to learn LINQ: it comes preloaded with 200 examples
from my book, C# 3.0 in a Nutshell.
There's no better way to experience the coolness of LINQ and functional programming.
And LINQPad is more than just a LINQ query tool: it's a code snippet IDE.
Instantly execute any C# 3 or VB 9 expression or statement block!
Best of all, LINQPad is free and needs no installation: just download and
run. The executable is only 2MB and is self-updating.
www.linqpad.net
Linq, Query
martedì 21 ottobre 2008
Interessante articolo di Scott Hanselman con alcuni tip per liberare spazio su Vista
Diego
Vista Free Disk Space
venerdì 3 ottobre 2008
Interessante serie di screencast su NHibernate
http://www.summerofnhibernate.com/Diego
mercoledì 2 luglio 2008
Per i fortunati possessori di HTC Diamond è appena stato rilasciato l'aggiornamento tanto atteso.
Ora dovrebbe essere più reattivo, corro a provarlo... :-)
http://www.htcblog.com/2008/07/01/ufficializzata-la-rom-update-in-italiano-per-htc-touch-diamond-p3700/
DiegoTag Technorati:
HTC Diamond
venerdì 11 aprile 2008
Problema
Trasformare un resultset generico in una lista tipizzata di DTO (quindi non una entity del Domain Model).
Soluzione
Utilizzare ResultTransformer di NHibernate.
Quest'interfaccia consente di specificare una classe di output sulla quale verrà "mappatio" il resultset.
Esempio
File di mapping
-
<sql-query name="GetCashFlowMainData">
-
-
<return-scalar column="Id" type="Int32" />
-
<return-scalar column="ReportType" type="Int32" />
-
<return-scalar column="RepGroup1" type="Int32" />
-
<return-scalar column="RepGroup2" type="Int32" />
-
.......
-
Snippet codice
-
IQuery query = ((IUnitOfWorkExtended)UnitOfWork).GetNamedQuery("GetCashFlowMainData");
-
-
query.SetInt32("IdReport", idReport);
-
query.SetInt32("DayFrequency", dayFrequency);
- query.SetDateTime("StartDate", startDate);
-
query.SetInt32("PeriodNumber", periodNumber);
-
-
query.
SetResultTransformer(Transformers.
AliasToBean(typeof (CFRptCashFlowDTO
)));
-
- IList<ICFRptCashFlowDTO> result = quey.List<ICFRptCashFlowDTO>();
Diego
venerdì 4 aprile 2008
Vuoi abbellire l'aspetto delle pagine di Google?
Non c'è problema, basta scaricare
questa estensione per FireFox ed associargli un bello stile tipo
questo
Qui sotto un'anteprima
Diego
giovedì 3 aprile 2008