Eduardo Zepeda's latests posts
How to create a secure password?
- linux and devops
One of my friends worked as an IT security auditor for a company whose name I will not mention for obvious reasons. Eventually our conversion got to the topic of his day to day work life, I asked him about his duties at the company and he replied that his job consisted mainly of ...
Read more
Design Patterns In Software
- python
- algorithms
Design patterns are common solutions to common problems, represented by entities and the relationships between them in programming, among them you have probably already heard of some such as: singleton, MVC or MTV, observer, among others. But that explanation of design patterns i...
Read more
Uncle Bob Clean Code And The Clean Code Paradigms
- linux and devops
- opinions
There are two types of programmers, those who hate Clean Code and those who love it. This book sparks heated discussions on the internet; some consider it a bible that prophesies better times with clean and tidy code, others consider it an outdated manual written by a self-procla...
Read more
The best Django book, Two Scoops of Django review
- django
This post is a review of Two scoops of Django, what I consider the best Django book. It's a total must-have book if you're into application development using Django. You've probably already heard of it, as it's a pretty popular book among English-speaking ...
Read more
Django for Professionals' review
- django
Some time ago, while searching for information about Django on the internet I came across a very good weekly podcast called Django chats . The author, named William S. Vincent, talks about Django and interviews developers related to this web development framework. Besides running...
Read more
The definitive guide to Django
- django
Django is my favorite web development framework, it is mature, its documentation and community are excellent. When I wrote about the advantages and disadvantages of Django I explained you how to go from an idea to a working prototype in a very short time and without writing almos...
Read more
How to program an automatic wallpaper changer in Python?
- python
In the previous post we made an automatic wallpaper changer in Python In this entry we are going to use Cron to program the periodic execution of this script and that it is in charge of changing the wallpaper every certain time, automatically, every hour, two hours, every day, ev...
Read more
How to create a wallpaper changer using Python in Gnome?
- python
In this post we are going to create an automatic, random and minimalistic wallpaper changer for GNU/Linux using Python. With no extra functions, super lightweight and totally homemade, its only function will be to randomly select an image and set it as wallpaper. I will explain t...
Read more
Program periodic tasks easily in Linux with Cron and Crontab
- linux and devops
In this post I'll teach you how to program tasks to be executed every certain amount of time, it could be as complex as you want, just by modifying a simple file, the crontab file, which is available in every popular Linux distribution, if not all of them.Many times we...
Read more
You are misusing console.log in javascript
- javascript
I bet you have ever used console.log() to debug errors when programming in javascript. But you may not know that console has other useful methods besides log(). In this post I am going to place some of the most useful methods that I have found on the web. In this entry I am going...
Read more