Eduardo Zepeda's latests posts
Go: functions, arguments and the fmt package
- go
This entry will discuss the basic syntax of Go functions. If you know absolutely nothing about go visit my entry go: introduction to programming language, variables and data types to start from the beginning of this tutorial series. Hey! did you know that I wrote a com...
Read more
Go, coding language, introduction to variables and data types
- go
Golang, also known as go, is a compiled programming language developed by Google. It is a language quite appreciated according to the latest Stackoverflow surveys (2023), as you can see in my python vs go post, where I also compare the good, the bad and the ugly of this language....
Read more
Django channels: channel layers, groups and users
- django
Channel layers allow you to interact and share information with different consumers in django channels. This allows each consumer to communicate with the rest. For example, when in a chat a user sends a message, everyone can read the message, when a user leaves a room, everyone c...
Read more
Django channels: consumers, environments and events
- django
Why Django channels? Because Django does not allow us to create applications with real-time communication natively. Django channels gives Django the ability to handle protocols that require a persistent connection, such as WebSockets, MQTT, chatbots, while keeping intact its inte...
Read more
Python vs Go Which is the Best Programming Language in 2025?
- go
- python
These last few months I have been learning go. How did it all start? Well, it started in a rather superficial way; I loved their mascot, yes, thats really what it was all about. So after a brief mental debate, I decided to give the language a try. My first impression of it is tha...
Read more
How To Create a Graphql API In Django Rapidly Using Graphene
- django
In this post I will explain how Graphene allows you to speed up the process of creating a GraphQL API if you are using the Django Framework, as well as take advantage of the models you have already defined to perform queries or mutations.Normally graphql is used in conjunction wi...
Read more
What Types to use for React components with children
- react
- typescript
- javascript
If youre struggling about what types to use for React components that have children in Typescript, so you can inherit them correctly and avoid errors, then this is the post you need to read, I explain you three different approaches you can save and use as a part of your typescrip...
Read more
How to measure requests per second with locust in python?
- python
There are quite simple to use tools that allow us to audit the number of requests per second (rps) that a website supports, locust is one of them, it is made with Python and with a minimal configuration allows us to process information and obtain graphs instantly, and in real tim...
Read more
Facebook's plugin chat how to decrease its impact?
- javascript
The facebook chat plugin allows you to add a page button that connects to the chat of a facebook fanpage. But, as you know, facebook is monopolistic and the default installation loads the plugin first, making your website slower and affecting the web vitals indicators of the page...
Read more
Minimal Pytesseract tutorial OCR with Python
- python
- artificial intelligence
Python is super versatile, it has a giant community with libraries that allow you to create neural networks from scracth, fine-tune a LLM or use Optical Character Recognition (OCR). For the latter you just need to install tesseract and python bindings, known as pytesseract and yo...
Read more