Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
MapleWalnut
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
MapleWalnut
2y ago
Interesting that they did a major layoff on a US holiday (MLK Day).
2.
▲
by
MapleWalnut
2y ago
Spanner provides serializability. It seems like DSQL only guarantees "repeatable read". https://docs.aws.amazon.com/aurora-dsql/latest/userguide/wor...
3.
▲
by
MapleWalnut
2y ago
Sentry provides a great hosted service. You can self host if you like, but it’s nicer to let them do it
4.
▲
by
MapleWalnut
2y ago
The Sentry SDK is open source and easy to contribute to in my experience.
5.
▲
by
MapleWalnut
2y ago
It'll be hard to position this against Sentry. Sentry's a joy to use and their performance product is so helpful in debugging performance issues
6.
▲
by
MapleWalnut
3y ago
That’s true, but with ESPPs, you get a discount on the stock price, effectively guaranteeing a decent return that would be hard to beat.
7.
▲
by
MapleWalnut
3y ago
Yes, but that wasn't available when they did this migration
8.
▲
by
MapleWalnut
3y ago
I like that polar supports funding specific issues or pull requests. Seems like a nice way to help fund a project while also helping prioritize issues you care about.
9.
▲
by
MapleWalnut
3y ago
There is a lounge with seating, you just need a ticket
10.
▲
by
MapleWalnut
3y ago
It'd be great if there was an rss feed for your blog
11.
▲
by
MapleWalnut
3y ago
Not the most accurate title. They’re still using Typescript for type checking, they’re just using JSDoc type annotations instead of Typescript syntax
12.
▲
by
MapleWalnut
3y ago
Mypy is the most correct and flexible type checker I’ve found. Pyright is great for auto complete in VSCode though, so I use both. The Google and Facebook options aren’t well supported.
13.
▲
by
MapleWalnut
4y ago
I pay for Feedly even though I had access to a very generous free plan. Their product is reliable and I use it every day, so it only seems fair to pay.
14.
▲
by
MapleWalnut
4y ago
With the new GitHub code search, the first result is the DeleteView class: https://github.com/django/django/blob/bd366ca2aeffa869b7dbc0...
15.
▲
by
MapleWalnut
4y ago
One of the engineering leaders at my company was big on Retool and it was pushed out as a way for backend developers to write frontend code. Now 6 months later that leader is gone, developers realized applications in Retool are harder to ma
16.
▲
by
MapleWalnut
4y ago
WAL is reliable, but Publish/Notify isn't. You'll lose messages with Publish/Notify if you aren't listening for them.
17.
▲
by
MapleWalnut
4y ago
Your Python example has unnecessary type annotations. Python type checkers like mypy and Pylance can infer the type of `words` automatically. def main() -> None: words = ["Hello", "World"] for wo
18.
▲
by
MapleWalnut
4y ago
TIL that ContextVars can work in place of thread locals too. Thanks for pointing that out! I had mistakenly assumed ContextVars only worked for async code.
19.
▲
by
MapleWalnut
4y ago
Yeah, precommit isn’t my favorite thing out of personal preference. So it’s a shame prettier doesn’t have built in caching like other tools in the space.
20.
▲
by
MapleWalnut
4y ago
Prettier itself would feel much faster if it supported caching like other code formatters (Python's Black, Rust's rust-fmt)
21.
▲
by
MapleWalnut
4y ago
Dropbox support can rollback your Dropbox account to a previous point in time too.
22.
▲
by
MapleWalnut
5y ago
What about https://github.com/Roblox/luau ? It gives Typescript-like annotations.
23.
▲
by
MapleWalnut
5y ago
I'm encountering issues with the GitHub API too.
24.
▲
by
MapleWalnut
5y ago
I wish there was something this good for Golang.
25.
▲
by
MapleWalnut
5y ago
PlanetScale branching only copies the schema, not the data. from their docs: > Note: Data from the main database is not copied to development branches. https://docs.planetscale.com/concepts/branching
26.
▲
by
MapleWalnut
5y ago
They're pretty similar. The auto complete alone is worth adding type annotations. Both have type stubs for third party packages that can make it easier to get coverage for your project. My organization gradually migrated a ~300k line P
27.
▲
by
MapleWalnut
5y ago
Mypy provides a server to help with this called dmypy: https://mypy.readthedocs.io/en/stable/mypy_daemon.html
28.
▲
LiveGraph: Real-time data fetching at Figma
(figma.com)
17 points
by
MapleWalnut
5y ago
|
0 comments
29.
▲
by
MapleWalnut
5y ago
From what I understand, they only branch the schema. They don't copy the data.
30.
▲
by
MapleWalnut
5y ago
Scoring results in Postgres requires scanning all matches, which is slow if you have a lot of results. Elastic search and other search solutions don’t have this problem.
More ›