I can't remember what my terminal was like before this. It's so fast, seamless and part of my day to day workflow. Solid open source project.
Wouldn't there be latency overhead between the workers (edge) and Postgresql? I guess the post alludes to relying on caching on the edge to mitigate such roundtrips. But I suppose that as long as you are dealing with…
+1 for this. The great thing is you still have the option to incrementally opt for SSR and/or enriching statically generated pages with build-time data.
Is my understanding correct in that a "Pane" is essentially a UI component? And I am assuming there are tests to catch cases where a new pane is defined in the backend, but not in the SDK (or I suppose, how do you deal…
I'm quite curious about your scale / size of your team. Most of the moving parts for k8s are easily handled if you go for a managed service. Using Nomad alone is fine, but with Consul in the mix, it requires quite a bit…
Agree on all points (and definitely, a mostly happy customer too). (3) was the cause of numerous production incidents for us. We had to contact support to have it scaled up, and sometimes they'd take up to 3 working…
> The functions take about 10s-15s to execute on cold start This may be a bit of an exaggeration, and may vary depending on your deployment (from experience, it takes up to 5s at most), but I agree. There is a very…
I'm quite curious about the URL service when deploying the server onto Kubernetes. How is the public `waypoint.run` able to access deployments in a Kubernetes cluster? I know it uses Horizon. But, are the requests…
What you have described is quite similar to what Lyft's Flyte is trying to accomplish https://flyte.org/ A lot of Tensorflow inspired DAGs approaches the described node processing in the same way.
You raised a pretty good point about being able to review the BPMN. I did not immediately think of this, but now that you have mentioned it... 1. It was good for communicating the engine room I remember demo'ing the…
I've used Conductor, Zeebe, and Cadence all in close to production capacity. This is just my personal experience. Conductor's JSON DSL was a bit of a nightmare to work with in my opinion. But otherwise, it did the job…
> after several attempts to cancel the contract, I cancelled the direct debit. They did do that. But, the issue is if it accumulates without a resolution, it'll reflect badly on your credit score.
They will be doing an AMA on Reddit again soon according to https://youtu.be/y4xBFHjkUvw?t=674
There's a relatively new one by Camunda (https://zeebe.io/) that also works quite well in cloud native environments.
We are currently experimenting with workflow engines for orchestrating different components, e.g. data ingestion, data preprocessing, feature engineering, scoring, automated decision making / escalation. Namely, Argo…
Interestingly, Googling `ProjectedVolumeTokens` yields this very post. I think that says something about its maturity.
A pretty simple, and configurable one: https://github.com/casbin/casbin
Hey! And congrats, hope you're well :) The company I was previously working for is still using Commento, great job!
Wow, never thought someone would pay attention to that! I was the original contributor (https://github.com/adtac/commento/pull/109) for that change, so happy to answer any questions.
This might be a very specific question, but any plans to include packages in the Go runtime for headless Chrome? I know it is already available in Node.js.
BTW, I think it might be worth including "commands" in the usecases, and repository (looking quickly at the code on GitHub). At the moment, the only usecase is fetching data.
I've recently also come across https://pydantic-docs.helpmanual.io/ which appears to be useful for enforcing simple constraints on domain entities.
Awesome. I've always been curious over examples of clean architecture in Python. I had a cursory glance. As a suggestion, I think the `Room` domain model could be improved with dataclasses…
I've been using a similar one: https://github.com/gopasspw/gopass. Only problem is getting non-technical people to use it is hard. And it is not super intuitive to get it working on mobile.
This is akin to the other "codemod" facilities Facebook already uses for large-scale refactoring in busy codebases (particularly, their JS codebases), but for Python (https://github.com/facebook/codemod,…
I can't remember what my terminal was like before this. It's so fast, seamless and part of my day to day workflow. Solid open source project.
Wouldn't there be latency overhead between the workers (edge) and Postgresql? I guess the post alludes to relying on caching on the edge to mitigate such roundtrips. But I suppose that as long as you are dealing with…
+1 for this. The great thing is you still have the option to incrementally opt for SSR and/or enriching statically generated pages with build-time data.
Is my understanding correct in that a "Pane" is essentially a UI component? And I am assuming there are tests to catch cases where a new pane is defined in the backend, but not in the SDK (or I suppose, how do you deal…
I'm quite curious about your scale / size of your team. Most of the moving parts for k8s are easily handled if you go for a managed service. Using Nomad alone is fine, but with Consul in the mix, it requires quite a bit…
Agree on all points (and definitely, a mostly happy customer too). (3) was the cause of numerous production incidents for us. We had to contact support to have it scaled up, and sometimes they'd take up to 3 working…
> The functions take about 10s-15s to execute on cold start This may be a bit of an exaggeration, and may vary depending on your deployment (from experience, it takes up to 5s at most), but I agree. There is a very…
I'm quite curious about the URL service when deploying the server onto Kubernetes. How is the public `waypoint.run` able to access deployments in a Kubernetes cluster? I know it uses Horizon. But, are the requests…
What you have described is quite similar to what Lyft's Flyte is trying to accomplish https://flyte.org/ A lot of Tensorflow inspired DAGs approaches the described node processing in the same way.
You raised a pretty good point about being able to review the BPMN. I did not immediately think of this, but now that you have mentioned it... 1. It was good for communicating the engine room I remember demo'ing the…
I've used Conductor, Zeebe, and Cadence all in close to production capacity. This is just my personal experience. Conductor's JSON DSL was a bit of a nightmare to work with in my opinion. But otherwise, it did the job…
> after several attempts to cancel the contract, I cancelled the direct debit. They did do that. But, the issue is if it accumulates without a resolution, it'll reflect badly on your credit score.
They will be doing an AMA on Reddit again soon according to https://youtu.be/y4xBFHjkUvw?t=674
There's a relatively new one by Camunda (https://zeebe.io/) that also works quite well in cloud native environments.
We are currently experimenting with workflow engines for orchestrating different components, e.g. data ingestion, data preprocessing, feature engineering, scoring, automated decision making / escalation. Namely, Argo…
Interestingly, Googling `ProjectedVolumeTokens` yields this very post. I think that says something about its maturity.
A pretty simple, and configurable one: https://github.com/casbin/casbin
Hey! And congrats, hope you're well :) The company I was previously working for is still using Commento, great job!
Wow, never thought someone would pay attention to that! I was the original contributor (https://github.com/adtac/commento/pull/109) for that change, so happy to answer any questions.
This might be a very specific question, but any plans to include packages in the Go runtime for headless Chrome? I know it is already available in Node.js.
BTW, I think it might be worth including "commands" in the usecases, and repository (looking quickly at the code on GitHub). At the moment, the only usecase is fetching data.
I've recently also come across https://pydantic-docs.helpmanual.io/ which appears to be useful for enforcing simple constraints on domain entities.
Awesome. I've always been curious over examples of clean architecture in Python. I had a cursory glance. As a suggestion, I think the `Room` domain model could be improved with dataclasses…
I've been using a similar one: https://github.com/gopasspw/gopass. Only problem is getting non-technical people to use it is hard. And it is not super intuitive to get it working on mobile.
This is akin to the other "codemod" facilities Facebook already uses for large-scale refactoring in busy codebases (particularly, their JS codebases), but for Python (https://github.com/facebook/codemod,…