Abe Estrada

Tranco: A Research-Oriented Top Sites Ranking Hardened Against Manipulation

An alternative to Alexa top 1 million websites

I like AWS Amplify, but the size of the build was too big, TIL that they have modular imports, and I was able to reduce the size 2MB, while I wait for AWS SDK v3

Before:

import { Auth } from "aws-amplify";

After (better):

import Auth from "@aws-amplify/auth";

🔗 Aeropress Go →

Hace un tiempo armé mi kit portátil para preparar café para cuando salgo de viaje.

El día de hoy me entero que Aeropress ha creado un kit para el mismo propósito. El kit se llama Aeropress Go y resuelve los problemas que pueden suceder cuando se quiere prepapar café fuera de casa.

Me gusta que empiezan por crear un sistema el cual ocupa poco espacio, actualmente mi kit ocupa mucho espacio, por lo cual este kit de Aeropress lleva un punto extra.

Entre los accesorios me gusta que incluyen la taza o recipiente para tomar el café, punto clave.

El kit tiene un precio muy econĂłmico de $31.95 y esta disponible apartir de Octubre 2019.

Dark mode all the things! #iOS13

Now I don’t like all the apps that are white or doesn’t have dark mode support

I’m using Laravel for a project, it is like learning a new language

While learning DynamoDB, after a ton of tutorials and documentation, the moment it made click was when I saw the next table in the AWS SDK source code:

|             JavaScript Type           | DynamoDB AttributeValue |
|:-------------------------------------:|-------------------------|
| String                                | S                       |
| Number                                | N                       |
| Boolean                               | BOOL                    |
| null                                  | NULL                    |
| Array                                 | L                       |
| Object                                | M                       |
| Buffer, File, Blob, ArrayBuffer,      | B                       |
| DataView, and JavaScript typed arrays |                         |