Hello World!

  • 2 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle








  • That would only really work well if you had an equal number / frequency of posts coming in on your ‘Everything’ and ‘Subscription’ feeds. Otherwise the posts from your subscriptions could pretty easily get ‘overwhelmed’.

    I think the idea is, see almost everything you are subscribed to, but also don’t miss any very popular posts. Ideally I’d love to be able to specify the ratio even. Something like “show me 5 posts from my subscriptions, followed by 1 post from another feed (e.g. Everything)”.





  • Thanks for your work on converting Sync to use Lemmy! I’ve tried just about every App for Lemmy, and Sync seems to certainly be the most feature-filled one so far.

    As far as pricing goes, I don’t see a problem with experimenting on price and seeing what people are willing to pay. To the people saying $20 is too much… we are talking about removing the main source of revenue in the app, forever. That’s a pretty tough thing to figure out the ‘right’ price for, and might take some experimentation. If I was the developer, you can bet I’d start the price high though, rather than too low.



  • Interesting article, thanks for sharing!

    I’ve run a (nowhere near as popular) public API for just about 10 years now. Definitely relate to the bit where he mentions people simply retrying the same request when they get an error. 😂

    I get a lot of students using the API for learning projects, which is great! But it also means my rate limiting is more often protecting my server from accidental infinite loops, rather than anything purposely abusive.



  • ArmoredCavalry@lemmy.worldtoSelfhosted@lemmy.worldSecure Access and Android Apps
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    edit-2
    1 year ago

    You can use Service Tokens with Cloudflare Zero Trust (Access). Unfortunately, the companion App then has to support setting custom request headers, in order to send the token. Not many support this in my experience.

    The only other option would be to use Basic Authentication, instead of Cloudflare Access. This isn’t as secure, but would be supported by most Apps (since you can simply inline user:password in the API URL). You can even setup a Cloudflare Worker to add basic auth to any Route you want.

    Ideally, would love some hybrid of these approaches, where I can keep Access enabled, but override with basic auth for ‘legacy’ apps. Don’t know of a way to do this though.

    Edit: Forgot to mention a third option, if you just want access while home, you can setup a bypass in Cloudflare Access policies for your home IP address. Then if you really need access when remote, you could also use VPN, but not as seamless of course.