Preferences

zacwest
Joined 1,472 karma
https://zacwe.st

zacwest@^^domain^^


  1. Cal Academy released their own press release[1] about this, which included a nice gallery of photos and videos[2].

    [1]: https://www.calacademy.org/press/releases/claude-the-albino-... [2]: https://www.dropbox.com/scl/fo/i447nodpnda2agq00ekw1/AIhVA36...

  2. They are working on an SDK, which they will use for their own Linux client: https://proton.me/blog/proton-drive-sdk-preview
  3. If you want to get location accuracy lower than 500m without significantly impacting battery life, you can use region monitoring. There's two paths:

    1. Set up a region around the user's current location. If they exit it, note the location and set up another one around that location. This will give you around 100m accuracy, which is the minimum diameter of the monitored region.

    2. Set up regions in various cardinal directions that nearly-or-just-barely overlap. If they enter one of those regions, note the location and set up another set around the current location. This can give you something closer to 50m accuracy.

    For (2), this is how I did it in the Home Assistant iOS app, largely for zones that people wish to monitor which are smaller than 100m. You can find some of the annoying math here[1] (and there's tests all over for it), the logic for setting up regions here[2], and computing them here[3].

    [1]: https://github.com/home-assistant/iOS/blob/master/Sources/Sh... [2]: https://github.com/home-assistant/iOS/tree/master/Sources/Ap... [3]: https://github.com/home-assistant/iOS/blob/2dfbe3c0e52a30417...

  4. You then use `restic` telling it to use rclone like...

        restic ... --option=rclone.program="ssh -i <identity> user@host" --repo=rclone:
    
    which has it use the rclone backend over ssh.

    I've been doing this on rsync.net since at least February; works great!

  5. These are the changes that Apple was forced to make, specifically referencing 3.1.3 (Other Purchase Methods) and 3.1.3(a) (“Reader” Apps):

    > 3.1.3: The prohibition on encouraging users to use a purchasing method other than in-app purchase does not apply on the United States storefront.

    > 3.1.3(a): The External Link Account entitlement is not required for apps on the United States storefront to include buttons, external links, or other calls to action.

    The bit about the (formerly required in the US) entitlement is:

    > Reader app developers may apply for the External Link Account Entitlement to provide an informational link in their app to a web site the developer owns or maintains responsibility for in order to create or manage an account.

    They required you use a trackingless, generic URL that was unvarying per user, so you probably didn't run into it super often. Offhand, the Kobo app did use it.

  6. Except for 'reader apps' (those that sell digital content, basically) which Amazon is. Plus, Apple's rules are applied unevenly; Amazon is a giant WebView on Apple TV but it's disallowed for everybody else.
  7. I've used Podlet <https://github.com/containers/podlet> somewhat successfully for this.
  8. You can do non-root systemd units, including Quadlets. See <https://docs.podman.io/en/latest/markdown/podman-systemd.uni...> under "Podman rootless unit search path."
  9. I like the `rdap` cli from https://www.openrdap.org (in Brew, too: https://formulae.brew.sh/formula/rdap#default). Very clean, concise output.
  10. Knowing focus status and being told live when it changes are public API. I think other apps just choose not to do it. Sample project: https://developer.apple.com/documentation/usernotifications/...
  11. This doesn't change the search engine, it attempts to redirect from whatever one is configured in the settings. It's very much an unreliable hack.
  12. Facebook never federated so their implementation was just an API they couldn't control to them:

    > Facebook Messages are evolving to allow people to share rich content beyond text: photos, videos, audio and even stickers. We want to ensure the best possible send and receive experience where all these rich forms of content are reliably and consistently available on every platform. XMPP doesn't support all these (and future) content types, and it's difficult to ensure an XMPP client is rendering them appropriately. As such we've decided to sunset the XMPP Chat API.

  13. They've started work on a Linux version, too.
  14. I think this is a pretty great step in the direction of not being wholly dependent on one platform; makes you start thinking about your website as the source and the social media networks as just a representation.

    https://micro.blog has a good implementation of this for both the Fediverse and Bluesky. A random example of mine that has an array of 'em if you want an example: https://zacwe.st/2025/02/12/amazon-is-removing-the-ability.h...

  15. Fish is such a great shell. More often than not it reads my mind about what to do (e.g. with its fantastic history autocomplete), but I’m really excited for this minor breaking change note:

    > alt-left and alt-right will now move by one argument (which may contain quoted spaces), not just one word like ctrl-left and ctrl-right do.

  16. Paze (https://www.paze.com/) feels to me like the collective banks’ attempt to wrestle back control here. You could imagine a world where it’s a separate side channel for payment for the same credit card accounts but without the rent-seeking intermediaries.
  17. Probably the first step would be a good, non-regular-expression (IIRC, URLs are not regular) based link parser that's ported to every possible language on the planet.
  18. You can somewhat work around this using Karabiner Elements. I map caps lock to esc (when tapped) and ctrl (when held) with a 'complex modification' rule that looks like:

        {
          "description": "caps_lock to left_control or escape",
          "manipulators": [
            {
              "from": {
                "key_code": "caps_lock",
                "modifiers": {
                  "optional": ["any"]
                }
              },
              "to": [
                {
                  "key_code": "left_control"
                }
              ],
              "to_if_alone": [
                {
                  "key_code": "escape"
                }
              ],
              "type": "basic"
            }
          ]
        }
  19. "Communications of the ACM" (https://cacm.acm.org/) is a great source for a variety of topics. It recently went digital-only and is included in an ACM membership.
  20. I agree some of the stations are somewhat repetitive, especially those stuck intentionally in an older genre like Lithium or one of the decades channels. I think the mix tends to still be less than surface level in those. They also have DJ-hosted segments; I think Tom Morello has a lot more flexibility in what he's playing, for example. It's still their superpower compared to the algorithmic track selections.
  21. I love SirusXM. They are a truly unique offer in the modern music landscape of algorithm-driven music listening experiences. The human curation of shows and stations is why I listen. That said, they have a lot of problems: I have to complain yearly to keep my $8/mo rate, and they seem to be slowly moving toward wanting more algorithmic content with their Pandora merger.

    I wish they'd focus more on growing their technology (e.g. a macOS app). They just did a big rewrite on all the platforms, seemingly toward this goal; I hope they keep going down that path.

    If the government forces them to adopt more modern subscription practices, I think _more_ people would use their platform, not less.

This user hasn’t submitted anything.

Keyboard Shortcuts

Story Lists

j
Next story
k
Previous story
Shift+j
Last story
Shift+k
First story
o Enter
Go to story URL
c
Go to comments
u
Go to author

Navigation

Shift+t
Go to top stories
Shift+n
Go to new stories
Shift+b
Go to best stories
Shift+a
Go to Ask HN
Shift+s
Go to Show HN

Miscellaneous

?
Show this modal