Live data from Hacker News

Postman which I thought worked locally on my computer, is down

status.postman.com

101–110 of 300 posts

Re: Postman which I thought worked locally on my computer, is down

#101
In the beginning, there was Postman, and we used it, and it was good. Then, Postman became enshittified, so we switched to Insomnia. Then, Insomnia became enshittified, so we switched to Bruno. Then, Bruno became enshittified, so now it's Yaak.

Let's see how long it takes for one of these programs to break the cycle.

Re: Postman which I thought worked locally on my computer, is down

#102
post #58

Earlier quoted context omitted.

Curious to know more about the commercial licensing scheme for Yaak: if i’ve read correctly, purchasing a pro license if based on « good faith » as the features are exactly the same as the MIT licensed Hobby version? Sincere question, been studying lots of OSS commercial licensing and always wonder what works in which context

This is a conscious bet I'm making. Yes, it's a good-faith license. The license doesn't even apply to the OSS version (only prebuilt binaries). The bet is that super fans will pay for it in the early days and, as it gets adopted by larger companies, they will pay in order to comply with the legalities of commercial use. So far, it's working! The largest company so far is 34 seats, with a couple more in the pipe!

I was going to gripe about the price but $50/dev/year is actually pretty reasonable! Nice!

Re: Postman which I thought worked locally on my computer, is down

#103
post #21

This is exactly why I made Yaak [1]. It's fully offline, no telemetry, open source, and can even sync with Git. https://yaak.app

Hey thanks, this looks great. I'm still on Paw but I've been looking for something new since it's been languishing as "RapidAPI" for years.

Re: Postman which I thought worked locally on my computer, is down

#104

I'm looking at alternatives that are guarantee to work locally and only found the following: Posting.sh -> Postman imports are experimental which makes it a non-starter for people like myself with large Postman collections. TUI only also makes it harder to switch. Insomnia -> Owned by another large tech company. Yaak -> Made by the same guy who created AND SOLD Insomnia above. Not exactly comforting to switch over fo…

I use a simple bash script:

    #!/bin/bash -x

    TOK="my-jwt-tok"

    case "$1" in
        get-foo)
            curl -H "header: bearer $TOK" "http://www.example.com/foo" | jq .
            ;;

        post-bar)
            curl \
              -H "header: bearer $TOK" "http://www.example.com/bar" \
              -H "content-type: application/json" \
              --data-raw '{"baz":"bap"}'

            ;;  
        *)
            ;;  

    esac
used like:

    ./example.bash get-foo

I know it doesn't have the functionality of postman, but this is how I build up interactions with a new API.

Re: Postman which I thought worked locally on my computer, is down

#105

I remember when one of the "Core Goals" of Postman was "Complete control over your data - Keep simple JSON based data formats which can be exported and shared as per user needs". https://web.archive.org/web/20140604204111/http://www.getpos...

not possible once you sign away your allegiance to a VC

sign in, you mean.

sign away means getting rid of vcs.

Re: Postman which I thought worked locally on my computer, is down

#106
I ditched Postman for Insomnia (Open source) after Postman refused to adhere to customers to disable auto-updates for 6 years+. I checked on their GitHub issue tracker and it turns out, the solution was to upgrade to their "Enterprise plan".

https://github.com/postmanlabs/postman-app-support/issues/69...

So, I said fuck it and switched to a real, open source alternative, Insomnia, instead:

https://insomnia.rest

Re: Postman which I thought worked locally on my computer, is down

#107
post #71
post #21

This is exactly why I made Yaak [1]. It's fully offline, no telemetry, open source, and can even sync with Git. https://yaak.app

You're already going down the path Postman did. No way I'm using that.

you use it until he fucks it up and then switch to the next guy.

These api clients are rocket science, the barrier for entry is very low.

Re: Postman which I thought worked locally on my computer, is down

#108

Earlier quoted context omitted.

not possible once you sign away your allegiance to a VC

sign in, you mean. sign away means getting rid of vcs.

I read that as "sign your allegiances away from their current counterparts (e.g. the user) and towards the VCs instead".

Re: Postman which I thought worked locally on my computer, is down

#110

I remember when one of the "Core Goals" of Postman was "Complete control over your data - Keep simple JSON based data formats which can be exported and shared as per user needs". https://web.archive.org/web/20140604204111/http://www.getpos...

One of the things I've thought about for startups are things with the general theme of "complete control over your data", how could I write something like this into the articles of incorporation (or similar) to make some of those values at least somewhat irrevocable?
Post reply on HN