Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
drabinowitz
searching PlanetScale…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
4 ms
·
1.
▲
by
drabinowitz
7mo ago
I’ve been using Claude and https://sprites.dev/ to build bespoke learning exercises for my kids. It’s been remarkably easy to put together games and practice problems with very little guidance and I can tailor the apps to a
2.
▲
KRO Open source Kubernetes resource manager from GCP, AWS, Azure
(cloud.google.com)
3 points
by
drabinowitz
2y ago
|
0 comments
3.
▲
by
drabinowitz
3y ago
Yeah if I have multiple terraform projects in one repo it would be helpful to have a UI show deployments for each project with a list of rollouts so I can see which one I want to go back to. For SREs it might not be as helpful but if you de
4.
▲
by
drabinowitz
3y ago
I was really hoping this would come with rollback support for deployments. That, to me, would be the big advantage of having gcp manage the tfstate. It doesn’t look like that’s currently supported, but maybe that’s coming in the future.
5.
▲
by
drabinowitz
7y ago
You can include a locked_at field and have your update query be for not_started rows and started rows where locked_at is older than the job timeout
6.
▲
by
drabinowitz
7y ago
That's an interesting dataset and it aligns with my gut reaction: TDD (and testing in general) are ideal for bug fixes and code refactoring, which would be less useful when the software is going to be sold at a specific point in time (
7.
▲
by
drabinowitz
7y ago
I've been considering building a pwa and using a webview as a pseudo native app I know iOS support isn't great but it seems to be improving and iOS push notifications could be built separately in the meantime. How's anyone tr
8.
▲
by
drabinowitz
8y ago
Type guards also allow you to use Array.prototype.filter to modify the type of an array ie const maybePets: Array<Pet | undefined> = [...] const pets: Array<Pet> = maybePets.filter((v: Pet | undefined): v is Pet => v !=
9.
▲
by
drabinowitz
8y ago
Ah that's fair about flaw #7
10.
▲
by
drabinowitz
8y ago
I wonder if it would makes sense to enforce hooks being called through a top level React function. To make some of the ordering more explicit function MyReactComponent() { const [ [width, setWidth], [name, setName],
11.
▲
by
drabinowitz
12y ago
This is a really cool implementation! I'm wondering if it wouldn't be possible to handle optimistic updates by submitting a request to the server and then submitting an optimistic response from the client to itself. Then, when the
12.
▲
by
drabinowitz
12y ago
Thanks so much for letting us know we will take a look first chance we get.
13.
▲
by
drabinowitz
12y ago
Currently we have been focusing on a purely client side implementation, that being said our features are largely built to extend React and Flux and that should put us in a strong position to work with Isomorphic apps down the line.
14.
▲
by
drabinowitz
12y ago
Yeah I apologize for that we are still working on a mobile friendly version of the site.
15.
▲
Tuxedo.js – A Framework Built on React and Flux
(tuxedojs.org)
168 points
by
drabinowitz
12y ago
|
82 comments