domingo, 27 de octubre de 2019

Ethical Reflection on Ready Player One

Halliday quotes deal with a complicated issue. Today we are in a transition to the digital era that is advancing rapidly, we are letting computers, personal assistants, platforms and other technological advances do the work for us, but they are also influencing the way we interact. From social networks that allow us to connect with people we know (such as Facebook or Instagram) to those that allow us to meet new people (Linkedin for the work environment, Tinder for social).
In the past it was impossible to think about meeting people if we did not agree with them somewhere, a party, meeting, work, concert, etc ... However today it has become something completely normal. Now, OASIS poses a digital world in which we can become completely other people, change our physical aspects and pretend to be people we are not. What does that tell us? That we are allowed to give appearances, stop being authentic to fit with society.
I believe that if OASIS existed in reality we would be going through a crisis like the one mentioned by Halliday in the book, a lack of personal relationships, empathy, knowledge of oneself and the other. Although, of course, it would give us many advantages such as eliminating the need for transportation, reducing pollution and increasing effective time, increasing the number of people with whom we can relate, facilitating access to information and providing a safe place in The one to share with others. Finally, it would end with a total degradation of the physiognomy by remaining so long connected to a machine without even giving us the sun, we would be sedentary beings.
I fully agree with Halliday's idea, it may be a way of escaping reality for a while, but eventually we realize that this is not life, it is not reality, and as human beings we require physical contact and personal relationships full that allow us to develop. I do not consider that the benefits of a system like OASIS offset the damages.

domingo, 20 de octubre de 2019

Hidden Figures

I had already had the opportunity to see the trailer of this movie a couple of months ago, although I had not had the opportunity to see it. Personally I think that it is not one but several important issues in today's society that, as much as we have worked, we have not managed to solve: racism, labor exploitation, credit theft, underestimation, machismo, education, etc.
I consider myself a person who actively works to make a change in society, in addition to the social practices we do in the Tec I have had the opportunity to work on other social projects with AIESEC to attack, more specifically, education problems and inequality of opportunities .
In the film we can see, very clearly, that girls are trained, intelligent, dedicated, honest, but their crime is to be women and, above all, to be black. But why should this make a difference? We have seen over the years that people with different qualities are those who provide the best ideas, who achieve the best things. And I want to clarify that with "different qualities" I don't mean to be black, gay or autistic, but to be something different from what society expects us to be, and that's not bad at all.
I think this diversity of people is what allows the world to keep moving. We see it at work and at school, a multidisciplinary team with different backgrounds, different ways of thinking, different opportunities, different stories, always generate better results than a group of people who have the same characteristics, why? Because they are teams that have more to work with, more to discuss. And from discussion, from questioning, knowledge is born.
I consider this a film to reflect on what each of us is doing to change this situation, to realize if we are part of the problem, if we are the ones who discriminate and underestimate people because of prejudices that were instilled in us. This and other films will allow us to question ourselves about the attitudes that we should encourage, those that we should change and those that we should eliminate to become better people, with morals and ethics.

domingo, 13 de octubre de 2019

The 4+1 View Model

The 4 + 1 model proposes an interesting vision on how to design the architecture of a system. It is not the first time that I hear the analogy (although with a different context) of an object that is visualized with different perspectives (and senses) causing a completely different understanding, but which together give a better panorama of reality.
During my career I participated in the development of multiple systems, from the simplest to the most complex, and in all of us we have always encountered the question of what should we do? and how are we going to do it? The first question is always complex because, well ... our client never knows what he wants, but after asking questions, prototypes, making mistakes again and again, we believe that we understand what he wants. Now comes the complicated part: How are we going to do it?
Ah, because the team may have understood what the customer needs, but each of us has a different perspective and, therefore, we try to attack the problem differently. The important thing here now is communication. I think that in the videos and in the article there is not much talk about this important point, because it is of no use to have a multidisciplinary team with high technical capacity and reasoning if they do not know how to communicate.
Once we sit at a round table and start to share what everyone understood and try to express our point of view we come to something similar to what the 4 + 1 model mentions, talk about the same system, but from their different visualizations
We have already applied this model during the race, although we probably did not know that we did it, making the diagrams from these different points of view will always allow us to have a better perspective and, therefore, make better decisions in the analysis and design of the architecture of a system.

domingo, 6 de octubre de 2019

Understanding the SOLID principles

SOLID principles are a very simple way to remember the good practices that any object-oriented programmer should consider. Each of the principles attacks a specific point that affects the way in which a programmer defines the objects within a program, how they will interact, how they can be used, their capabilities, and so on.
I consider that both the acronym is very consistent with what it refers to because the idea is to create robust, resistant to change, robust applications.
The 5 SOLID principles are:
- Simple Responsibility: That refers to a class or object should only attend a specific task, it is the decision of each programmer how specific these activities should be, but intentions should not be mixed.
- Open / Closed: It means that classes or objects must be open to extension, but closed for modification, so that the behavior of a defined class cannot be altered.
- Liskov Substitution: It means that a class that inherits from another must be interchangeable for a function that requires the base class, that is, it can be substituted.
- Interface Segregation: It means that the interfaces must be simple and simple, not have more than necessary. In case an interface becomes very complex, it must be divided so that the classes that implement them do not have empty methods that are not used.
- Dependency Inversion: Refers to avoid dependence between 2 classes from the implementation of an interface instead of a class when it is required to use.
Taking these principles into account when programming the systems will allow for greater ease of maintenance of the applications and will make them scalar without having to pay too much work to the people who do this maintenance. It is important to consider the principles not only because they are good practices, but because they will make the systems of higher quality, reusable and scalable.