Viewing profile — cirego
cirego
HN member- Joined
- Fri, Jul 24, 2020, 5:14 AM UTC
- HN karma
- 84
- Public activity
- 25 items
- HN profile
- View on Hacker News ↗
About cirego
No profile information was provided.
Recent public activity
-
comment
Comment #47502539
I've noticed that there's another problem with microservices as well. People tend to tie microservices and multi-repo into the same strategy. Multi-repo appears to make teams faste…
-
comment
Comment #47502022
First thing I noticed too.
-
comment
Comment #43889302
It sounds like this framework is susceptible to head of line blocking. In my experience, that significantly reduces the utility of any applications written choosing this framework.…
-
comment
Comment #43888621
I noticed the same thing. I would have expected an Arc > or something similar for safe concurrency. Not sure what value is delivered by a single threaded, blocking web server.
-
comment
Comment #43811750
You bring up an interesting question -- I think Tilt works best for those that find themselves in an environment where product is delivered using a service-oriented architecture de…
-
comment
Comment #43807745
I think Tilt Extensions highlights the combined power and composability that using Starlarks brings to Tilt: https://docs.tilt.dev/extensions.html . Want to create a Kubernetes sec…
-
comment
Comment #43807684
Thank you for sharing this! I think your Tiltfile just showed me how to solve something that's been bugging me for a while! I see that you also have docker-compose files -- are tho…
-
comment
Comment #43807644
I've always appreciated that Tilt chose Starlark instead of YAML. Makes things so much cleaner!
-
comment
Comment #43807630
I think that's a fair point -- you're making a tradeoff. And the best part is that you don't need to choose one or the other. In my case, I find that I prefer having higher fidelit…
-
comment
Comment #43807390
My understanding is that dev containers are more about configuring your development environment with the right toolchains to build and run services. Tilt is a monitor process that …
-
comment
Comment #43807366
Yes, Tilt really shines when you’re testing interactions with Kubernetes, such a APIs. But also things like your services’ ingress configuration and metrics scraping. By default, T…
-
comment
Comment #43807349
Tilt can also help validate things like: - Service discovery - Volume mounts - Ingress and Certificates - Metrics scraping and configuration - Dashboards It’s really quite powerful…
-
comment
Comment #43806943
Interesting to see this pop up here! I’ve been using Tilt for multiple years now but the pace of development seems to have slowed down after the Docker acquisition. I love how Tilt…
-
comment
Comment #43535270
Sorry, I should have added my second thought. Your original comment about isolating MCP servers is also good! These are tools where the AI may tell you it’s doing one thing and the…
-
comment
Comment #43534607
I believe echoangle’s concern is about the security and privacy of the LLM using the data, not the MCP server itself.
-
comment
Comment #43025588
I think you might be off by a factor of 10. Alphanumeric would be at least 36 characters, which would imply 2.8 trillion combininations (36 ^ 8).
-
comment
Comment #26911295
At the moment, we are focused on scaling up with a single instance. While there are a couple of strategies for scaling out, none of our current methods support scaling a single vie…
-
comment
Comment #26911019
You are correct! Updates are a expressed as a retraction and an insert that happen within the same timestamp. An example may not be necessary but it might also help clarify. Assumi…
-
comment
Comment #26905428
> In the simplest case, I'm talking about regular SQL non-materialized views which are essentially inlined. I see that now -- makes sense! > Wish we had some better database primit…
-
comment
Comment #26904576
> Yep. I meant it was easy to do it the inefficient way where you just refresh the entire query when any table mentioned in the query changes. You would just have to also check if …
-
comment
Comment #26902098
Disclaimer: I work at Materialize. This is the exact problem that we are solving here at Materialize! I wrote an example blogpost that details to how to subscribe to a SQL query in…
- story
- story
-
comment
Comment #25348322
My understanding is that ksqlDB is a read-only interface on top of streams and only helps people write better consumers. The problems mentioned in the blog post relate to producers…
-
comment
Comment #24655124
Please do!