El lado oscuro de SQLite en Android (Spanish)
Article written in spanish, as exported from my old spanish blog. All new published articles are in english, as is the main language of the blog.La verdad es que no nos podemos quejar de la...
View ArticleIntroducción a MongoDB y NoSQL en C# (Spanish)
Article written in spanish, as exported from my old spanish blog. All new published articles are in english, as is the main language of the blog.Este artículo no pretende ser ninguna guía definitiva...
View ArticleClean Architecture (Spanish)
Article written in spanish, as exported from my old spanish blog. All new published articles are in english, as is the main language of the blog.Este artículo es una mera interpretación del original...
View ArticleDelightful persistence on Android
Please let me begin this article with a quote of Bruce Lee, one of my favorites martial artists:Before I studied the art, a punch to me was just like a punch, a kick just like a kick. After I learned...
View ArticleMastering tools namespace on Android
You probably saw in lots of XML layout examples provided by Google, that sometimes appears the tools namespace. This namespace is useful when developing and doesn’t affect the user experience. Are just...
View ArticleClean Java immutability
An immutable class is just a simple class whose instances cannot be modified. You provide all field values when creating the instance and they cannot be changed for the lifetime of the object. As you...
View ArticleEl lado oscuro de SQLite en Android (Spanish)
Article written in spanish, as exported from my old spanish blog. All new published articles are in english, as is the main language of the blog.La verdad es que no nos podemos quejar de la...
View ArticleIntroducción a MongoDB y NoSQL en C# (Spanish)
Article written in spanish, as exported from my old spanish blog. All new published articles are in english, as is the main language of the blog.Este artículo no pretende ser ninguna guía definitiva...
View ArticleClean Architecture (Spanish)
Article written in spanish, as exported from my old spanish blog. All new published articles are in english, as is the main language of the blog.Este artículo es una mera interpretación del original...
View ArticleDelightful persistence on Android
Please let me begin this article with a quote of Bruce Lee, one of my favorites martial artists:Before I studied the art, a punch to me was just like a punch, a kick just like a kick. After I learned...
View ArticleMastering tools namespace on Android
You probably saw in lots of XML layout examples provided by Google, that sometimes appears the tools namespace. This namespace is useful when developing and doesn’t affect the user experience. Are just...
View ArticleClean Java immutability
An immutable class is just a simple class whose instances cannot be modified. You provide all field values when creating the instance and they cannot be changed for the lifetime of the object. As you...
View ArticleDesign patterns series
A simple and practical series about Design Paterrns. Examples are mostly written in Java.In this simple and practical series about Design Patterns, I will go through all GoF (Gang of Four) patterns in...
View ArticleSingleton design pattern
The article you’re about to read is part of a bigger series about software design patterns implemented on languages using the JVM, mostly Java. In this one the Singleton pattern is presented.Table of...
View ArticleObserver design pattern
The article you’re about to read is part of a bigger series about software design patterns implemented on languages using the JVM, mostly Java. In this one the Observer pattern is presented. Please...
View ArticleProxy design pattern
The article you’re about to read is part of a bigger series about software design patterns implemented on languages using the JVM, mostly Java. In this one the Proxy pattern is presented.Table of...
View ArticleDecorator design pattern
The article you’re about to read is part of a bigger series about software design patterns implemented on languages using the JVM, mostly Java. In this one the Decorator pattern is presented.Table of...
View Article