cypressious's comments

cypressious | 2 years ago | on: Push notifications – What to push, what not to push, and how often

Android forces app developers to categorize notifications (the API is called notification channels). Each channel can be muted individually in the system settings. Though it's up to the app makers to correctly categorize their notifications, in my experience most apps do this.

Whenever I see a spam notification, I immediatelly go mute the channel and the problem never repeats itself.

cypressious | 2 years ago | on: Orion Browser by Kagi

It has become better in the last year or so. I used to have the same setup but currently Meet on FF works without issues for me.

cypressious | 3 years ago | on: Virtual Threads: New Foundations for High-Scale Java Applications

Does you library use any of the JDK's blocking APIs like Thread.sleep, Socket or FileInputStream directly or transitively? If so, it is already compatible. The only thing you should check is if you're using monitors for synchronization which are currently causing the carrier thread to get pinned. The recommendation is to use locks instead.

cypressious | 4 years ago | on: The architecture behind a one-person tech startup

You can always add Cloudflare to the mix to cache static assets. This change is additive meaning you can start with a single Heroku deployment and if static asset traffic becomes an issue, you can create a Cloudflare account, configure DNS and be done.
page 1