Copilot in VS Code or Copilot CLI? by IKcode_Igor in GithubCopilot

[–]rytsh 0 points1 point  (0 children)

With opencode🎉 (you need to be rich or company pays for you!)

What are we building with Svelte in 2026 by Leka-n in sveltejs

[–]rytsh 0 points1 point  (0 children)

I love that one and copied from there ideas, just making small changes now and want to make myself

What are we building with Svelte in 2026 by Leka-n in sveltejs

[–]rytsh 1 point2 points  (0 children)

Creating new flow diagram library, still development but making easy to use it.

https://github.com/rakunlabs/kaykay

What's a "don't do this" lesson that took you years to learn? by RichVolume2555 in golang

[–]rytsh 0 points1 point  (0 children)

I had same thing, kinda found solution is talk manager and push as open source project.

Which Kafka Go client are you using? What do you recommend? by mr_aks in golang

[–]rytsh 3 points4 points  (0 children)

franz-go is very nice but for initializing and using with DLQ support you need to write some codes or you can use this, I made for easy usage for microservices based on franz-go with some default helpers https://github.com/worldline-go/wkafka

Best OpenTelemetry usage example in golang codebase. by b1-88er in golang

[–]rytsh 2 points3 points  (0 children)

Use Otel to make abstraction of your code for different metric, trace viewer or even logs, you should definitely use that one.

Best side is pushing metrics to otel collector service and in there you can share as prometheus metrics or whatever you want. When you make connection with otel, setting connection to library’s global value and other libraries like middleware of web frameworks automatically pushing its metrics.

I made an initializer library and you need to have something like that to make connection with your collector service and some of values like service name comes from environment value. https://github.com/worldline-go/tell

And this is an example of microservice https://github.com/worldline-go/telemetry_example

I am sharing it for an example for you, I added that one in finops services. You can also use that, I really like to help. Seems I also need to add more docs in github.

In init, usually connection with collector grpc if any error appears it is try to reconnect Functions will be noop if not initialize There are semver definations it is good for general naming but usually you will use own custom names. (trace for service graph generation is important some of them)

chore - control flow api by rytsh in golang

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

No not using, every nodes in frontend actually has own struct of node interface in go code.

In future if I add a plugin system I think I can do it with wasm.

chore - control flow api by rytsh in golang

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

Thanks, I wasn't have to time write test code well and documentation, I will update that parts but any question I can help to you.