¿Cuanto vale tu web?

Filed Under (Internet) by admin on 14-07-2009

Tagged Under : , ,

Te has preguntado alguna vez que valor puede tener tu web simplemente por la relevancia que tiene en internet.

dnScoop te da una estimación bastante aproximada: http://www.dnscoop.com/

Saludos¡¡

CoPilot Live para Android, al fin un buen GPS

Filed Under (Android) by admin on 02-07-2009

Tagged Under : , ,

Con el lanzamiento de iPhone OS 3.0 se anunció que diversas aplicaciones de navegación GPS llegarían para el terminal de Apple. También los poseedores de un teléfono con Android podrán disfrutar de esta funcionalidad, pues se acaba de presentar CoPilot Live para Android

Este software de navegación GPS permite no solo convertir nuestro móvil en un navegador convenciional, sino que aprovecha la conectividad de este para añadir funciones adicionales. Así, por ejemplo, podemos recibir información del tráfico, previsiones del tiempo o ver la localización de nuestros contactos.
CoPilot Live para Android ofrece navegación guiada por voz con mapas en 2D y 3D. También incorpora funciones adicionales como asistente de carril, alertas de velocidad y de radares o carteles de dirección realistas. Se integra con las funciones del teléfono, permitiendo realizar llamadas a los puntos de interés, navegar a nuestros contactos o compartir nuestra localización por SMS.

Está disponible en el Android Market y la versión con mapas de España y Portugal tiene un precio de 26 libras, mientras que la versión con mapas de toda Europa cuesta 60 libras.

Linq to SQL Debug Visualizer, depura facilmente tus consultas LINQ to SQL

Filed Under (.Net, LINQ, SQLServer) by admin on 01-07-2009

Tagged Under : , ,

Using the LINQ to SQL Debug Visualizer

One of the nice development features that LINQ to SQL supports is the ability to use a “debug visualizer” to hover over a LINQ expression while in the VS 2008 debugger and inspect the raw SQL that the ORM will ultimately execute at runtime when evaluating the LINQ query expression.

For example, assume we write the below LINQ query expression code against a set of data model classes:

We could then use the VS 2008 debugger to hover over the “products” variable after the query expression has been assigned:

And if we click the small magnifying glass in the expression above, we can launch the LINQ to SQL debug visualizer to inspect the raw SQL that the ORM will execute based on that LINQ query:

If you click the “Execute” button, you can even test out the SQL query and see the raw returned results that will be returned from the database:

This obviously makes it super easy to see precisely what SQL query logic LINQ to SQL ORM is doing for you. 

You can learn even more about how all this works by reading the Part 3: Querying our Database segment in my LINQ to SQL series above.

How to Install the LINQ to SQL Debug Visualizer

The LINQ to SQL Debug Visualizer isn’t built-in to VS 2008 – instead it is an add-in that you need to download to use.  You can download a copy of it here.

The download contains both a binary .dll assembly version of the visualizer (within the \bin\debug directory below), as well as all of the source code for the visualizer:

To install the LINQ to SQL debug visualizer, follow the below steps:

1) Shutdown all running versions of Visual Studio 2008

2) Copy the SqlServerQueryVisualizer.dll assembly from the \bin\debug\ directory in the .zip download above into your local \Program Files\Microsoft Visual Studio 9.0\Common7\Packages\Debugger\Visualizers\ directory:

3) Start up Visual Studio 2008 again.  Now when you use the debugger with LINQ to SQL you should be able to hover over LINQ query expressions and inspect their raw SQL (no extra registration is required).