Juegos gratis para Windows Mobile
Software May 17th, 2009
Luego de que mi Mamá me pidió que le agregue a su iPaq ese juego tan lindo que ella usa en su laptop (toda una geek mi Viejita). Me puse a buscar sitios web de donde bajarlo gratuitamente, acá les dejo una recopilación de direcciones:
- 10+ free Windows Mobile games: Una lista de recomendaciones
- Acá algunos juegos gratuitos, otros de pago.
- Pocket PC Freeware: Muchos programas y juegos freeware.
- FreeCell: Una versión Open Source de este juego de cartas.
- Kevtris: Un clon gratuito de Tetris.
Tags: Games, iPaq, Juegos, Pocket PC, Software, Windows Mobile
Use Drupal installation’s base URL on theme/template
Drupal, Web May 6th, 2009
To be able to use base URL (server URL and subdirectory where Drupal is installed if any, like http://mydomain.com/drupal) on themes or content templates, $base_url scope must be modified before it can be used. Before your theme code, you should write:
< ?php global $base_url; (rest of theme/template code) ?>
Tags: Drupal 6, Drupal Themes, PHP, URL
SQL Server’s nvarchar(max) on Castle ActiveRecord
Programming, SQL May 6th, 2009
I’m using the new SQL Server 2005′s data type nvarchar(max) on a .Net project (ntext has been deprecated in this version) in conjuction with Castle ActiveRecord. For a complete integration (including schema creation), ActiveRecord property should looks like this:
[Property("description", ColumnType = "StringClob", SqlType = "nvarchar(MAX)")]
ColumnType = “StringClob” avoids text to be truncated if it gets too long. SqlType = “nvarchar(MAX)” forces the field to be created as that data type, otherwise, it will be created as nvarchar(255).
A more detailed explanation can be found here and here.
Tags: .Net, ActiveRecord, Castle, Hibernate, NHibernate, nvarchar, nvarchar(max), SQL Server
About