Velocidad de Escape

How to Stand Out in an Interview

In my previous job, I had the chance to be part of the tech screeners team, I helped the HR team interviewing candidates for different positions in UI/Front-end. I learned a lot from candidates, and also I learned a lot how to stand out in job interviews (more focused in IT positions). So, here my tips, are not a global rule, but some of them are really useful. ## Prepare your introduction An introduction is the first cover letter, it needs to be short, needs to be simple, but at the same time it needs to be shocking. Should include personal information. And in short, talk about the most...

Personal

Styling markdown posts with Tailwind CSS in GatsbyJS

When I decided to create this blog, I was very clear that I wanted to do it in the easiest way possible, I didn't want to have to deal with databases, CMS, etc. I had already seen some other blogs and knew that it was possible to create them using markdown to write a full post. I also didn't want to deal with CSS, so I looked for <a class="hover:no-underline text-blue underline" href="https://tailwindcss.com/" target="_blank" rel="noreferrer">Tailwind CSS</a> as an option. Also I wanted to have my syntax highlighting in my posts, so, I found <a class="hover:no-underline text-blue underline"...

CSS

TailwindCSS

Are computer generated random numbers really random?

This morning I couldn't sleep, so I remembered something interesting, computer generated random numbers are not really random numbers, or not strictly speaking. But first, let's talk about **Deterministic Systems** versus **Stochastic Systems**. > In mathematics, computer science and physics, a deterministic system is a system in which no randomness is involved in the development of future states of the system. A deterministic model will thus always produce the same output from a given starting condition or initial state. So how does this affect or why do I say that computer generated...

CS

Object-Oriented Programming in Javascript

The first and very important question, is JavaScript really an object-oriented programming (OOP) language? In my personal opinion, I will say: NO at all; JavaScript, emulates object classes via constructor functions. But first, what is Object-Oriented Programming? A programming **paradigm** centered around **objects** rathen than functions. Mosh is one of the best tutors I have ever met, and I don't want to copy a ton of text, and I personally don't want to explain and transcribe a lot of content that can be better understood through a video. <iframe width="560" height="315"...

JavaScript