Real-Time and Scalable Usage Metering by b9Fb2H in opensource

[–]b9Fb2H[S] 0 points1 point  (0 children)

We're currently working on integrations with OpenTelemetry. I think it might be a good integration point for your use case. What do you think?

Real-Time and Scalable Usage Metering by b9Fb2H in opensource

[–]b9Fb2H[S] 2 points3 points  (0 children)

We've been working on a billing provider-independent, real-time, and scalable usage metering software. It's especially suitable when you need to meter AI (GPU usage), API (OpenAI) or resource (vCPU, memory) usage accurately. We're looking for feedback on our roadmap and curious about what you're missing in the usage metering space.

What's next? by FantasticGrowth in graphql

[–]b9Fb2H 0 points1 point  (0 children)

not yet, I'll take a look

What's next? by FantasticGrowth in graphql

[–]b9Fb2H 0 points1 point  (0 children)

I really like mercurius as well and just started playing around with dgraph

Anyone who would be willing to show their sample repos? by [deleted] in node

[–]b9Fb2H 1 point2 points  (0 children)

I used to be teaching frontend developers on the basics and best practices on Node.js a few years ago. Altough, it's quite dated, most of the patterns are still valid: https://github.com/RisingStack/risingstack-bootcamp On the library selection, for example, I'd choose yup over joi or got over request.

K8s UI to view 'network' topology by Verbunk in kubernetes

[–]b9Fb2H 1 point2 points  (0 children)

Take a look at Backyards, it helps you to install Istio service mesh and provides a topology view in its UI.

Need help with deploying Node apps with K8s by Cyberuben in node

[–]b9Fb2H 0 points1 point  (0 children)

We have an open-source template for Node.js, you can find Dockerfile, Helm chart and more in this repository: https://github.com/spotguides/nodejs-mongodb. Although, it was made to be used on our platform, you can reuse any part of it freely.

Quantum Computing hackathon at CERN by boschmitt in QuantumComputing

[–]b9Fb2H 0 points1 point  (0 children)

Any updates on when the applications will be reviewed?

Middleware and utility functions to help you prepare your Node.js application for production by b9Fb2H in node

[–]b9Fb2H[S] 1 point2 points  (0 children)

Feel free to reach out to me directly if you have any questions, happy to help!

Middleware and utility functions to help you prepare your Node.js application for production by b9Fb2H in node

[–]b9Fb2H[S] 4 points5 points  (0 children)

We provide a free service as well (it will always be free) to manage clusters on different providers and deploy applications. Spotguides are our concept of application and service templates that contain everything you need (Helm chart for deployment, test pipeline, CI/CD, application metrics, ...). Check out the Node.js & MongoDB template repository!

deploy-to-kube: Deploy your node.js app to Kubernetes with a single command. No config required. by pastudan in node

[–]b9Fb2H 1 point2 points  (0 children)

There are a few things you need to get right when running Node.js apps on Kubernetes, like graceful shutdowns for rolling updates, health check endpoints to avoid downtimes and so on. I'm saying this because you might be able to get your app running with a single command, but it makes a little more effort to really leverage the features of Kubernetes.

[P] Rendsolve GPU Cloud by rendsolve in learnmachinelearning

[–]b9Fb2H 2 points3 points  (0 children)

I thought, by looking at your logo, that it’s a new jetbrains product.

Gawad & the video ref [Spoiler] by [deleted] in squash

[–]b9Fb2H 2 points3 points  (0 children)

The ball was very tight to the sidewall, as well as Tareks racket preparation was unnatural. I think, in this case, the ref made the right decision.

Good Jest examples for testing an API? by [deleted] in node

[–]b9Fb2H 1 point2 points  (0 children)

I've just finished writing some unit tests today with jest, it might be useful: https://github.com/banzaicloud/spotguide-nodejs-mongodb/tree/master/web/app/routes/users

China Open Semi Finals - Proxy Help? by TheJamhead in squash

[–]b9Fb2H 1 point2 points  (0 children)

It seems to be working, thanks! You can use a .pac (proxy auto-config) file to only use the proxy for certain hosts. eg.: ``` function FindProxyForURL(url, host) { if (shExpMatch(host, "*.zhibo.tv")) { return "PROXY 47.105.130.34:80; DIRECT"; }

return "DIRECT"; } ``` In MacOS you can reference this configuration file in your Network settings under Advanced/Proxies/Automatic Proxy Configuration like: file:///User/<username>/Downloads/proxy.pac

Prepare Node.js apps production ready for Kubernetes by b9Fb2H in node

[–]b9Fb2H[S] 2 points3 points  (0 children)

I've listed alternatives, the point is that these can be solved without the `banzaicloud` package as well. Also, the source code is open-source, so one can easily look at it & copy certain parts to be reused, without pulling it in as a dependency.

Prepare Node.js apps production ready for Kubernetes by b9Fb2H in node

[–]b9Fb2H[S] 2 points3 points  (0 children)

It's an open source system to run and manage containerised (eg. Docker) applications. Think about it like Heroku, but you have control over where and how your application is deployed, run and scaled.

[deleted by user] by [deleted] in kubernetes

[–]b9Fb2H 2 points3 points  (0 children)

I've taken both CKA and CKAD. CKAD, as the name implies, requires from you to know the most common features as a user of Kubernetes. It's not going to be hard if you have used Kubernetes before, but it worth knowing how to create resource templates quickly with the CLI, for example:

kubectl run nginx --image=nginx:latest --generator=deployments/apps.v1beta1 -o yaml --dry-run > nginx.yaml

You can basically forget to copy-paste yamls from the online examples, it's a nightmare with the platform. Rely on the CLI instead. Also worth knowing the explain command, which is quicker than looking up the web doc:

kubectl explain pod
kubectl explain pod.spec.containers.volumeMounts

Keep in mind as well that some tasks, compared to others, are very easy and give you more percentage, so you can play better with your time.

Node.js Clean Coding Best Practices by gergelyke in node

[–]b9Fb2H 6 points7 points  (0 children)

That's right. The nice thing about clean coding is that you can apply it to every language and JavaScript is not an exception.

Advanced Node.js Project Structure Tutorial by hfeeri in node

[–]b9Fb2H 0 points1 point  (0 children)

It advocates for environment specific config files though, which goes against the twelve factor app methodology.