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:

Tags: , , , , ,

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: , , ,

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: , , , , , , ,

  • Facebook
  • Google+
  • LinkedIn
  • Twitter
  • Flickr