[rails] LightWindowHelper [plugin helper]

Visto che per colpa di Davide D’Agostino (DAddYE) mi sono avvicinato a Rails (http://rubyonrails.org/) e sto cercando di creare per l’azienda dove lavoro, una piccola applicazione web per uso interno, ho deciso di farla in rails :D L’ intenzione era di usare il js Ligh Window 2.0 (http://www.stickmanlabs.com/lightwindow/) che mi piace molto, ho deciso di fare un piccolo helper per poter “aggirare” un problema che ho pure io (ovviamente :P:P:P) (http://railsforum.com/viewtopic.php?pid=46594) ...

December 11, 2007 · 2 min · Carlo Bertini [WaYdotNET]
#Uncategorized

Dati disconnessi... questi sconosciuti :D

Ciao a tutti, volevo avere delle informazioni. La mia idea è realizzare un piccolo software da utilizzare con i vari portatili, e che in comune hanno un db (sqlexpress x ora) su di un server centrale. Fino a che sono tutti connessi alla lan, ok, ma se un portatile è in “giro” x il mondo ??? (e nn ci sta connettività) come faccio ???? Ho pensato a Offline application block , fermo al .net 1.0 :D, e poi ho visto ideable che ha questa funzione (costo $2,495 / developer). ...

October 23, 2007 · 1 min · Carlo Bertini [WaYdotNET]
#Uncategorized

Hero

Anche io come Gian Maria non mi piace come personaggio …. ma tanto :P:P:P

October 5, 2007 · 1 min · Carlo Bertini [WaYdotNET]
#Uncategorized

[OT-IT] Terranet Free local wireless calls, free texting, and long distance VoIP calls

Leggendo Punto informatico, come al solito, scopre delle notizie che veramente fanno pensare bene al benessere di tutti…. TERRANET , società svedese dal sito di terranet.se Free local wireless calls, free texting, and long distance VoIP calls. TerraNet technology provides all this through peer-to-peer wireless networking and with absolutely no need for base stations, antenna installations or infrastructure. You can call and text anyone within two kilometres, or up to 20 kilometres in a mesh network. What’s more, you can call and text anyone in the world through a TerraNet wireless Internet access point. With TerraNet technology integrated any type of handheld device transforms into a wireless communicator. ...

September 12, 2007 · 2 min · Carlo Bertini [WaYdotNET]
#Uncategorized

Simpons anche mi :D

La panzetta è venuta uguale :D:D:D:D Technorati Tags: WaYdotNET, Simpson

September 5, 2007 · 1 min · Carlo Bertini [WaYdotNET]
#Uncategorized

NHibernate Templates for Smart Code Generator

Introduction To learn more about Smart Code please read the next article, by clicking here. The sample code and templates, are based in the next article NHibernate Best Practices with ASP.NET . In this excellent article, Billy McCafferty, describes best practices for leveraging the benefits of NHibernate 1.2, ASP.NET. For this article we’ll try to be original…..and we’ll use the Northwind database as sample, but these examples will work with any database ...

August 3, 2007 · 2 min · Carlo Bertini [WaYdotNET]
#Uncategorized

[OT-SPAM] Pubblicità Ottica di mia morosa :D

Non volevo intasare il muro, ma se non lo faccio rischio la pelle :D:D:D:D:D:D Siccome l ottica di mia morosa presenta la sfilata in spiaggia questa domenica ( a Cattolica) , ecco l invito (ovviamente non serve per entrare ma solo come pubblicità) perando di vedre qualche volto conosciuto al DotNETMarche ciao a tutti e scusate lo spam !!!!!

July 13, 2007 · 1 min · Carlo Bertini [WaYdotNET]
#OpenOttica

How to Generate NHibernate Configuration Using ActiveWriter

Preview 3 has this functionality, but there are a few things to mention. ActiveWriter use ActiveRecord assembly to generate NHibernate config files. So you’ll need Castle.ActiveRecord.dll, NHibernate.dll and all necessary dependincies to make it work. Set the target to **NHibernate **This way, AW will generate .hbm.xml files for each entity in your model. Set the Assembly Path to where Castle.ActiveRecord.dll, NHibernate.dll and all necessary dependincies reside. The design decision was that, I didn’t want to package these assemblies with AW. Rather than that, I thought user will most probably have them so they can choose whatever version they want to generate the configuration. If you don’t supply the path, AW (VS, actually) will look for them in GAc and then {Your VS Path}Common7IDECastle.ActiveRecord.dll, so if you have them in one of those places, it should be fine. One other quirk is, if you first try to generate with the wrong path, setti ng the correct one later won’t work until you restart Visual Studio. This is the framework’s limitation, once you try to load an assembly and get an error, the result will be cached for subsequent tries. So VS appdomain should be restarted to make it work. I’ll have a possible soliton for this for a future version of ActiveWriter (will try to load in a dummy appdomain, then in the VS appdomain) You may use the fully qualified assembly names for Active Record Assembly Name and NHibernate Assembly Name to target a specific version in the GAC, if you have more than one in there. When you save the model, AW will generate configuration. I’ll prepare a better documentation in the wiki. Have fun. Update: AW does not work with release version of Castle assemblies (RC2?) for NHibernate generation, it works with the trunk (or with recently compiled assemblies). You can use the latest bits from the build server: http://builds.castleproject.org/cruise/index.castle ...

June 20, 2007 · 2 min · Carlo Bertini [WaYdotNET]
#Uncategorized

How to Generate NHibernate Configuration Using ActiveWriter

Preview 3 has this functionality, but there are a few things to mention. ActiveWriter use ActiveRecord assembly to generate NHibernate config files. So you’ll need Castle.ActiveRecord.dll, NHibernate.dll and all necessary dependincies to make it work. Set the target to **NHibernate **This way, AW will generate .hbm.xml files for each entity in your model. Set the Assembly Path to where Castle.ActiveRecord.dll, NHibernate.dll and all necessary dependincies reside. The design decision was that, I didn’t want to package these assemblies with AW. Rather than that, I thought user will most probably have them so they can choose whatever version they want to generate the configuration. If you don’t supply the path, AW (VS, actually) will look for them in GAc and then {Your VS Path}Common7IDECastle.ActiveRecord.dll, so if you have them in one of those places, it should be fine. One other quirk is, if you first try to generate with the wrong path, setti ng the correct one later won’t work until you restart Visual Studio. This is the framework’s limitation, once you try to load an assembly and get an error, the result will be cached for subsequent tries. So VS appdomain should be restarted to make it work. I’ll have a possible soliton for this for a future version of ActiveWriter (will try to load in a dummy appdomain, then in the VS appdomain) You may use the fully qualified assembly names for Active Record Assembly Name and NHibernate Assembly Name to target a specific version in the GAC, if you have more than one in there. When you save the model, AW will generate configuration. I’ll prepare a better documentation in the wiki. Have fun. Update: AW does not work with release version of Castle assemblies (RC2?) for NHibernate generation, it works with the trunk (or with recently compiled assemblies). You can use the latest bits from the build server: http://builds.castleproject.org/cruise/index.castle ...

June 20, 2007 · 2 min · Carlo Bertini [WaYdotNET]
#Uncategorized

4° Workshop "Introduzione al Domain-Driven Design (DDD)"

4° Workshop “Introduzione al Domain-Driven Design (DDD)” Venerdì 6 Luglio 2007 Sede Casa Cecchi - Centro Creativo Ambientale Urbano Via della Paleotta, 11- 61032 Fano (PU) In questo appuntamento parleremo di Domain Driven Design (DDD), una metodologia costituita da una serie di principi e tecniche di progettazione, utile nella realizzazione di software in cui il dominio dell’applicazione ha una certa complessità. Questo tema si ricollega al workshop su NHibernate, in quanto gli ORM danno il meglio di sé quando vengono utilizzati per applicazioni la cui progettazione è orientata al domain model: non a caso, uno degli speaker sarà nuovamente Giancarlo Sudano, che già ci aveva parlato di NHibernate. ...

June 15, 2007 · 2 min · Carlo Bertini [WaYdotNET]
#Uncategorized