• 0 Posts
  • 328 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle
  • Taiwan is a natural fortress as well. Even if the mainland invaded the guerilla fighting in the mountains would be a new Afghanistan for the occupying force.

    All for the political victory of “we did it!”

    Taiwan has few natural resources that China doesn’t already have. They mostly have high tech industry… Which would be annihilated by an invasion. No way chip fabs survive: either they get bombed while softening up a landing or they get sabotaged as a spoiling action.












  • Hi! Professional android dev here who has done some work on migrating an app to foldable:

    Apps don’t guess. If they’re using XML they make specific layouts for a given width of screen.

    If they’re using compose it’s even easier: the entire UI library is built for adaptive layouts. The main issue is a lot of apps are not in compose UI (or not entirely) - and material 3 has excellent components but it’s even less widely used.

    Tldr: tech debt

    A potential cause of the wonkiness is explicitly setting resizeableActivity="false" in the app manifest.




  • Theory is fine but in the real world I’ve never used a REST API that adhered to the stateless standard, but everyone will still call it REST. Regardless of if you want it or not REST is no longer the same as it’s original definition, the same way nobody pronounces gif as “jif” unless they’re being deliberately transgressive.

    403 can be thrown for all of those reasons - I just grabbed that from Wikipedia because I was too lazy to dig into our prod code to actually map out specifics.

    Looking at production code I see 13 different variations on 422, 2 different variations of 429…


  • 403 is a category, not a code. Yes I know they’re called http codes but REST calls are more complex than they were in 2001. There are hundreds of reasons you might not be authorized.

    Is it insufficient permissions? Authentication required? Blocked by security? Too many users concurrently active?

    I’d argue the minimum for modern services is:

    403 category
    Code for front end error displays
    Message as default front end code interpretation

    As json usually but if you’re all using protobuf, go off King.