HackerTrans
热门最新趋势评论往期问答秀出招聘

brosciencecode

no profile record

提交

Rippling Introduces AI-Based Tool to Evaluate Employee Performance

bloomberg.com
2 分·作者 brosciencecode·2年前·0 评论

Google Authenticator now backs up OTPs to the cloud

androidpolice.com
1 分·作者 brosciencecode·3年前·0 评论

A $500M term sheet in 12 hours: how Rippling struck a deal as SVB was melting

techcrunch.com
6 分·作者 brosciencecode·3年前·0 评论

评论

brosciencecode
·2年前·讨论
Sam is very clearly in the wrong here, but is your argument for why he sucks seriously that he said “we should not brand people as heretics for disagreeing with my point of view?”
brosciencecode
·2年前·讨论
I get the feeling you may not have gone 0-1 on an API before. In general, you have 1 consumer when you're starting off, and if you're lucky your API gathers more consumers over time.

In that initial implementation period, it's more time-consuming to have to update a spec nobody uses. Maintaining specs separately from your actual code is also a great way to get into situations where your map != your territory.

I'd instead ask: support and use API frameworks that allow you to automatically generate OpenAPI specs, or make a lot of noise to get frameworks that don't support generating specs to support that feature. Don't try to maintain OpenAPI specs without automation :)
brosciencecode
·2年前·讨论
We’re working under the assumption that “memory safe languages” can’t be unsafe themselves, which isn’t the case.
brosciencecode
·2年前·讨论
In other news: crimes should not be committed, and car accidents are outlawed
brosciencecode
·2年前·讨论
"Use high effort; only tell the user that you were not able to find anything as a last resort. Keep trying instead of giving up."

Lol - it looks like they got hit by the recent laziness of GPT-4 too.
brosciencecode
·3年前·讨论
This looks like an interesting take on serverless Postgres! Is this type of multi tenant separation enough for the kinds of users who care about it? I’d imagine a lot of the concerns around multi-tenant would be related to potential application layer bugs that can co-mingle data.
brosciencecode
·3年前·讨论
Are you mistaking POST for PATCH? What I've been working with is:

- POST creates

- PUT replaces (i.e. edit, but you need to provide the whole resource)

- PATCH edits (i.e. you can only provide some fields)

APIs rarely implement all these properly in practice but that's my understanding of the theory.
brosciencecode
·3年前·讨论
Out of curiosity, what makes it unreadable to you?