Viewing profile — jcusch
jcusch
HN member- Joined
- Fri, Nov 26, 2021, 11:35 PM UTC
- HN karma
- 185
- Public activity
- 44 items
- HN profile
- View on Hacker News ↗
About jcusch
No profile information was provided.
Recent public activity
-
comment
Comment #44834980
Fair enough, I thought what I'd originally written for that section was too wordy, so I asked Claude to rewrite it. I'll go a bit lighter on the AI editing next time. Here's most o…
-
comment
Comment #44834303
It looks like I was missing a www subdomain CNAME for the underlying github pages site. I think it's fixed now.
-
comment
Comment #44834063
An ad for what? I'm not associated with any of the projects mentioned.
- story
-
comment
Comment #44479370
Thanks for the feedback, I like the idea of the multiplayer mode
-
comment
Comment #44479363
Thanks, I'm glad you enjoyed it, I hope your friends have a good time too
-
story
Show HN: Quotatious – A Wordle and hangman inspired game
Hey All, My wife loves word games like Wordle and Connections, she had an idea for a similar game inspired by Hangman and asked me to build it. Here it is, flaws and all. Any feedb…
- story
-
comment
Comment #41739475
This is great, I've been wanting to do something like this after finding an old series about making games in the terminal ( https://www.youtube.com/watch?v=xW8skO7MFYw ). I'll need…
- story
-
comment
Comment #41644642
Thanks! That's not harsh at all, it's exactly what Tim and I are looking for. It's honest detailed feedback with great reasoning. I appreciate you taking the time to provide so muc…
-
comment
Comment #41279164
The reason for the abstractions is that the behavior of equivalent services from different clouds is functionally the same, but offered through subtly different APIs. If you think …
-
comment
Comment #41272051
Common denominator implies you're restricted to some subset of the cloud's features. I'm curious what restriction you see, since nothing about nitric limits combining nitric code w…
-
comment
Comment #41271123
How you're describing iOS is similar to how nitric works. Developers indicate in code "I'm reading from this bucket", it's a request not an order, they're not actually configuring …
-
comment
Comment #41271018
Nitric is a layer on top of Pulumi/Terraform. It also supports Python, Go and Dart. Other language support is also possible. The Ops side of nitric (the providers) can be written i…
-
comment
Comment #41270968
I'm curious what designs you use to avoid the issues. For example, if your code needs to access a resource (e.g. making a call to send an event to a cloudwatch event bus or SNS top…
-
comment
Comment #41270754
The application is agnostic to that with nitric, more so than usual. It could be worth reading the docs on how it works, I don't think you got it.
-
comment
Comment #41270735
I'm curious what you think wouldn't work. Nitric doesn't cover every use case, but in those cases you just continue to do what you would have already.
-
comment
Comment #41270716
We really like CDKTF and Pulumi, they're two options nitric uses for deployments, but it's also a layer on top that helps decouple application code from the target cloud(s).
-
comment
Comment #41270697
Software built with nitric ends up with considerably less cloud related code in the application. The bulk of it is split into the provider, enabling separation of concerns. For exa…
-
comment
Comment #41270673
That's essentially the idea with nitric, you ask for cloud resources in an abstracted request. How that request is fulfilled is determined by the provider used. What "read" access …
-
comment
Comment #41270659
That's actually something nitric helps with, it provides an API for deployments, separating it from application code. Those other teams like devops/sre/etc. are free to customize t…
-
comment
Comment #39821904
I can definitely see your point, but we don't think cloud development has hit up agaist the limits of inherent complexity. It's still needlessly complex in many cases. Projects usi…
-
comment
Comment #39821770
Thanks Junto, for function deployment we use matched files as the entrypoint for containers rather than exported functions or something similar. This lets you group many message co…
-
comment
Comment #39821733
Thanks, that's the way we see it too. We think people mistake "separate files" for "separation of concerns", but many applications have inherent coupling to their infrastructure.