Skip to main content

Command Palette

Search for a command to run...

Til 2025-03-30

Updated
1 min read
S

Enthusiasm for building products with less code but more reliable.

  • Cloudinary upload_large does not allow files bigger than 100MB unless I explicitly set async: true

      await cloudinary.uploader.upload_large(videoUrl, {
        resource_type: 'video',
        async: true, // this is CRUCIAL
      });
    

    And response I got

      {
        "status": "pending"
        "resource_type": "video"
        "type": "upload"
        "public_id": "PUBLIC_ID_FROM_INPUT"
        "batch_id": "SUPER_LONG_ID_FROM_CLOUDINARY"
      }
    

    It seems I can’t find official docs including in the code base a way to check the status from batch_id.

  • Typed-Japanese is a tool that we can learn Japanese via TypeScript, which is so cool.

  • AI products come a lot every day, which makes me believe learning the fundamentals is the right way to go, rather than following too much on trend. Trending is never a good thing.