Welcome to blastcoding.com
This is my personal blog about programming, I hope you as a visitor enjoy it as I createing new content. The following are the principal categories in this blog.
Original content is in spanish so if you are searching and you not find it its probably in spanish you can turn to spanish clicking on the spanish flag
- PHP
- Laravel
- Javascript
- Mysql
Latest Posts

In this section, we’ll explore how to use if and else statements in Go. Imagine an if statement as a way to say:“If this condition is true, then do this.” It’s like a simple decision-making tool in code. Let’s look at an example written in Go: /* In this case, 'elementos' will be 0 because […]

When we use switch in Go, we’re evaluating a condition and defining different outcomes for each case. It’s like writing multiple if-else statements using the same variable as the condition. Let’s try a simple example: day := "monday" switch day { case "monday": fmt.Println("es lunes") case "tuesday": fmt.Println("es martes") case "wednesday": fmt.Println("es miercoles") case "thursday": […]

Creating WordPress Block Themes is a very broad topic, and this post is not a typical post but rather something that will expand over time. It is also not specifically intended for you, the reader, but for internal reasons related to this site—although it may still be useful to you. In this post, we will […]

WordPress block themes have a series of predefined styles. These styles are added by default when creating the different sections of your theme in WordPress. While it might not seem important to know, it’s good to keep in mind that they exist outside of the graphical context we use (GUI – Graphical User Interface). Blocks […]

In this entry, I will create a basic guide to Tmux. The topics covered will include: What is Tmux? Why might it be useful for you? And its basic commands.