Hace unas 3 semanas publiqué una nota personal para implementar «cosstoin» en Bash: cointoss() { # Probability is $1/$2, for example, cointoss 3 5 # will hit 60% of the time. Defaults to 1/2 if no # arguments are supplied. … Sigue leyendo
Archivo de la categoría: Computación
cointoss() { # Probability is $1/$2, for example, cointoss 3 5 # will hit 60% of the time. Defaults to 1/2 if no # arguments are supplied. [ $((RANDOM % ${2-2})) -lt ${1-1} ]; } … Sigue leyendo
En PostgreSQL, supongamos que queremos generar todos los períodos mensuales entre ‘2015-09-12 23:50:00’ y ‘2015-11-22 00:20:00’ con corte al inicio del día 8.
En una interesante discusión en el grupo de Facebook de la Comunidad .NET Tijuana surgió el tema de las microoptimizaciones, en particular el uso de evaluación en corto circuito y el ahorro de ifs «que son muy costosos al CPU». … Sigue leyendo
I wrote a small-and-quick tutorial for using LibreOffice Styles. It is intended to quickly let you understand (and hopefully grasp) the concepts behind the use of Styles without having to go through an entire manual. It briefly covers and exemplifies the … Sigue leyendo