Tag: tips
All the articles with the tag "tips".
驴La primera semana lo dice todo? Claves para saber si un trabajo es tu lugar
Published:聽at聽10:45 AMHace poco le铆 un art铆culo muy interesante que hablaba de algo que a muchos nos ha pasado, 驴cu谩nto tiempo necesitas para saber si un nuevo trabajo es el adecuado para ti? La verdad es que la respuesta del autor ha dado vueltas en mi cabeza y, es que a veces, la intuici贸n nos dice m谩s de lo que pensamos.
Aspectos no t茅cnicos claves en un proceso de selecci贸n tech
Published:聽at聽10:44 AMCuando pensamos en un proceso de selecci贸n para un puesto tech solemos enfocarnos en las habilidades t茅cnicas, lenguajes de programaci贸n, algoritmos, estructuras de datos, etc. Sin embargo, las empresas valoran cada vez m谩s los aspectos no t茅cnicos, ya que pueden ser determinantes para el 茅xito dentro del equipo y la organizaci贸n.
How to slice or get symbols from a unicode string with emojis in JavaScript? Lets learn how JavaScript represent strings
Published:聽at聽09:13 AMEverybody loves JavaScript (or not)! It's easy, powerful and fun (or not) but then one day you found something weird that makes you learn something new and that's fine (or not). If you don't know why `"馃槃".charAt(0)` returns `锟絗 or why `"馃實".length` is equal 2 then this article if for you. Do you really know how to handle strings in JavaScript?
How to update a column's type (in PostgreSQL)
Published:聽at聽04:01 PMSo, you have a table and you need to modify a column's type. The problem arise when the column is filled and the type change is incompatible, for example, from string to integer, so **how we can update the type and recompute the filled values to the new type?**