domingo, 26 de mayo de 2013

Stories in Malaga (Android App)



I would like to present here my first android application. This application was born of my interest for knowing something else about the places that I visited.



Have you ever wondered about what is the origin of each municipality or why some buildings were built on a particular style or even why they are located in their current location? If so, this application will help you, you will spend more and more hours of entertainment you will definitely awaken your curiosity.

Malaga stories helps to know each historical events of each town, showing you the places where they were as well. It also includes images of each point of interest with an audio-guide that will read the details of each item so you do not miss any details. Begin to see the sights from a historical perspective unencumbered by tourism trends.



This application has been translated into the following languages: Spanish, English, German and French.

The municipalities that have been studied in this work are:

- Antequera
Alameda, Almargen Antequera Archidona Ardales, Campillos, Cañete la Real, Cuevas Bajas, Cuevas de San Marcos, Fuente de Piedra, Calvary, Mollina, Sierra de Mares, Teba, Villanueva algae, Villanueva del Rosario, Villanueva del Trabuco, Villanueva de Tapia and Abdalajís Valley

- West Coast
Marbella, Benalmádena, Estepona, Estepona, Fuengirola, Mijas, Marbella, Mijas, Torremolinos

- The Axarquia
Alcaucín, Alfarnate, Viñuela, Algarrobo, Almáchar, Arenas, Benamargosa, Benamocarra, Canillas de Aceituno Canillas de Albaida, Colmenar, Comares, Competa, Frigiliana, Iznate, La Viñuela, Macharaviaya, Moclinejo, Nerja, Periana, Rincon de la Victoria, riogordo, salt flats, Sedella, Torrox, Velez-Malaga

- Malaga
Alhaurin de la Torre, Almogía, Casabermeja, Málaga

- Ronda
Algatocin, Alpandeire, flowerbed, Atajate Benadalid Benaoján, El Burgo, Cortes de la Frontera, Calf Caves, Faraj, Gaucin, Genalguacil, Igualeja, Jimera Líbar, Juzcar, Montejaque, Ronda



All information and images has been collected from internet and from there move my gratitude to all municipalities and other sources of information freely dispose of all materials. The signatures of the authors of the images have been kept out of respect for his authority.

Find it on Android Market here and enjoy!




domingo, 9 de diciembre de 2012

Inserting rows with schemas which have a required relationship with other schemas in MongoDB (NoSQL)


Inserting rows into a table that have a relationship with other tables using foreign keys, it is a very basic functionality in SQL. On the other hand, in NoSQL engines where the queries are managed in documents (or views) instead of a relational way, it is not very common, but it is still necessary to have.

domingo, 9 de septiembre de 2012

UDF Solution for MySQL in Windows 7


User-Defined functions (UDF) are functions in MySQL that behaves just like a native (included in the core) of MySQL, such as MAX() or SUM() functions. The main advantage is that UDFs are much faster than stored procedures and the usage is exactly the same. The disadvantage is that UDF are written in C or C++, so it is necessary to compile separately and then install it in MySql. This tutorial is about how to create a new solution for compiling UDFs in x64 and x86 machines and how to install it in MySQL.

jueves, 24 de mayo de 2012

Desarrollo ágil


Os dejo aquí unas transparencias muy interesantes y divertidas sobre desarrollo ágil como metodología de desarrollo (no solo de gestión).

En general, habla desde la motivación de cada uno de nosotros a los problemas que se encuentran a lo largo de un proyecto (Seguro que os sonarán algunos de ellos).

http://www.slideshare.net/jrramon/agiles-para-universitarios by Juan Ramón, ¡muchas gracias por tu trabajo!

Hay frases dignan de mencionar que seguro que despertarán vuestra curiosidad!

“Si quieres conocer a una persona, no le preguntes lo que piensa sino lo que ama”  San Agustín
“Felicidad no es hacer lo que uno quiere sino querer lo que uno hace” Jean Paul Sartre

Que lo disfrutéis!

miércoles, 21 de marzo de 2012

Esperanza y superación

Y es que no hay más que suspicacias

Llantos sin razón ni esperanza,
Que secan las cenizas sobre estas huellas.
Estampa de ahora. Y de las futuras nuevas…



Y es que siempre no fue así

Antes toda insinuación excusaba una sonrisa,
Cada respiro se encontraba con una caricia,
Y toda suerte coincidía en tu cercanía.



Y es que me siento acomplejado

Por todos estos golpes fortuitos
Que afligen al corazón hastiado
De embites con signos apocalipticos.



Y es que hay que despertar

Esas curvas siguen dibujando el mismo drama,
El sol te sigue recibiendo bien en la mañana,
Y cada despertar te regala esa nueva oportunidad.



Y es que somos responsables de nuestro éxito.

jueves, 8 de marzo de 2012

Building ASP.NET MVC Apps with EF Code First, HTML5, and jQuery


Some months ago, I started with a project built with the following features:

- In Client: HTML 5 with JQuery

I used JQuery in the past, then just I needed to refresh my mind. Anyway, I took the pleasure to learn more about HTML 5.

- In Server side: in ASP.NET MVC 3 with Razor engine

I knew ASP.NET MVC, but nothing of Razor engine which is an interesting and very powerful idea. Moreover, I focused to use AJAX because I was really interesed in dynamic sites.

- In Services layer: WCF with certificate token security. 

I used ASP.NET Membership in WCF services layer.

- In Data Access layer: Entity Framework Code First.

I played with Entity Framework Code first which helped me a lot to separate the logic of access to database using a decoupled architecture and repository patterns.


I definetely learnt very much along this task. If you like all this stuff, I found some days ago this interesting course where explain all above concepts in a overview way.

http://weblogs.asp.net/dwahlin/archive/2012/03/04/new-pluralsight-course-building-asp-net-mvc-apps-with-ef-code-first-html5-and-jquery.aspx

Regards,