Eduardo Zepeda's latests posts
Azure AZ-900 Certification Exam: My Experience
- software architecture
- opinions
On Saturday, August 6, 2022 I sat for and approved my Microsoft Azure AZ-900 certification exam.
What does AZ-900 certification consist of? The AZ-900 Fundamentals certification ensures that a person knows all the basic services that Microsoft’s cloud, Azure, and its en...
Read more
Dynamic sitemap with django
- django
A sitemap is an xml file that functions as a map to navigate your site. Hence the name; Site-map. Search engines, such as google, bing, yahoo and others, use the sitemap of a site as a starting point to analyze its content and include it in their search results.
A sitemap is ...
Read more
Logging with the standard library in Go
- go
As you probably already know, you should not use prints for debugging. The standard go logging library is much more versatile, it adds dates, filenames and other information, plus you can redirect the logs to standard output, to a file or wherever you want. This can make your deb...
Read more
How Does a Docker Container Work Internally?
- docker
- linux and devops
- go
Containers, especially Docker containers, are used everywhere, we tend to see them as small isolated operating systems that are inside our system. Using the Docker commands we can modify them, create them, delete them and even get inside them and run commands, but have you ever w...
Read more
Autocomplete, Suggestions and Related Content: Solr and Django
- django
- linux and devops
Solr, together with Lucene, is an outstanding search engine that allows you to perform searches with advanced features. In this post I bring you a summary of some of the most interesting features of Solr and Django Haystack.
I assume you already have a configured django app w...
Read more
How to implement Solr for searches or queries in Django?
- django
- linux and devops
Previously I explained you how to implement full text search in Django and trigrams-and-search-rank using Postgres. Solr comes to offer us something better, a robust, stable and feature-rich search engine, ready to use, in exchange for a little more complexity, more dependencies ...
Read more
Understand How Git Submodules Works and its Workflow
- git
- linux and devops
A git submodule is a record within a git repository that points to a commit in an external repository. They are handled exactly as you would with a repository, they even have a .git file that points to the location where a changelog is kept.
Simplified outline of git submodul...
Read more
Top 5 Favorite Algorithm Problems at Codewars
- opinions
- algorithms
What is codewars? Codewars is a social network of programmers who get together to challenge each other to solve code challenges. Codewars is one of the best websites for practicing algorithms and solving Katas. Katas? Yes, as in Karate.
What are katas in codewars? In the spir...
Read more
REST API: Best practices and design
- software architecture
- opinions
How do I design a REST API? How many levels should I nest my related resources? Relative or full URLs? This post is a compilation of some recommendations about some good REST API design practices that I have found in books and articles on the internet. I leave the sources at the ...
Read more
REST API basic characteristics and recommendations
- software architecture
- opinions
This publication is a minimal guide of practical tips on REST API design, I don’t go too deep into the theory. On top of that, I may oversimplify many concepts in order to keep the text as short and simple as possible.
In the next post I will talk about some more subjec...
Read more