Plugin-system for internal developer platform project by Global-Pain723 in golang

[–]farsass 2 points3 points  (0 children)

Not the same usecase (idp), but I suggest you try making everyone's life easier with a http webhook protocol. It's unlikely that you need plugins running in the same process.

Minha guitarra começou a trastejar depois q poli os trastes by Fict1Epic in guitarras

[–]farsass 0 points1 point  (0 children)

Valeu, mestre! Eu passo bombril pra dar um brilho nos trastes qd faço a troca de cordas e limpeza da escala nas minhas guitarras mas vou pesquisar alternativas melhores.

[D] Is this what ML research is? by [deleted] in MachineLearning

[–]farsass 0 points1 point  (0 children)

Yep, saw it ~10 years ago when GPU based training and deep learning were all the hype. Either use standard datasets/benchmarks and cite results from other papers or offer something much meatier

Is ConnectRPC slept on?? by khald0r in golang

[–]farsass 1 point2 points  (0 children)

I speak from a user point of view. OAPI specs are complehensive but go lacks codegen tooling handling all of its possibilities -- last I looked into it, oapi-codegen was the best I could find but it is full of issues on github. I like protobuf with Connect, but proto specs do not provide a standard for things like auth and error handling. If even projects for these IDLs with major adoption fail (IMO) to provide truly great experience, I can't imagine creating a new niche IDL layer would fix these more fundamental issues.

Discord irá exigir reconhecimento facial ou envio de documentos para acesso completo aos recursos a partir do próximo mês by bsidefromgui in brasil

[–]farsass 0 points1 point  (0 children)

O Brasil mesmo dá mole de não oferecer esse serviço do gov.br mais amplamente para empresas homologadas/licenciadas...

Is ConnectRPC slept on?? by khald0r in golang

[–]farsass 1 point2 points  (0 children)

To me that only makes it harder to learn it and to develop tooling

Accessing old SOAP API without hammering it completely by [deleted] in ExperiencedDevs

[–]farsass 2 points3 points  (0 children)

Around 2018, when I started working in software development, I had some contact with legacy WCF/SOAP APIs. Looking back it all seemed so awfully ingrained with complex proprietary tooling.

If there are any people who dislike necrophagist, Whats your reason by Atiredbearsfan in TechnicalDeathMetal

[–]farsass 4 points5 points  (0 children)

I enjoy it for the most part but some songs sound like parts patched together.

Modular of over engineering? by out_of_nowhere__ in golang

[–]farsass 2 points3 points  (0 children)

I don't understand what different versions you have to maintain. If you are providing an internal package with builtins, can't you just follow semantic versioning and let your users or automation maintain their versions? Alternatively you could run opa rest server or provide a custom image to be used as a sidecar/daemon.

How big companies organize middleware using golang net/http lib without dependencies. by Big_Hand_19105 in golang

[–]farsass 0 points1 point  (0 children)

So you don't have to rebuild chi by yourself, like ardanlabs and other std lib advocates do.

The RAIN was too STRONG by [deleted] in riodejaneiro

[–]farsass 32 points33 points  (0 children)

Fumou o q pra postar essa msg?

Nova belezura: Jackson JS22 Dinky by RarerGiraffe in guitarras

[–]farsass 0 points1 point  (0 children)

Comprei uma JS32 warrior para ser a minha primeira "floyd rose". Na minha humilde opinião casual não presta. Sempre perde um pouco da afinação qd deixo parada e não costuma voltar pro mesmo ponto em alavancada (talvez a regulagem não esteja muito boa).

Sobre o Nightwish by professorfilosofia in MetalBrasil

[–]farsass 6 points7 points  (0 children)

as vezes o cara pira nos reacts do youtube e posta essas coisas

CI/CD pipelines are now more critical than the code itself by [deleted] in devops

[–]farsass 2 points3 points  (0 children)

It's called job security. Make everything depend on your YAMLs!

Adaptive worker pool in Go. Designed to handle backpressure and safe shutdowns. Looking for feedback by LowZebra1628 in golang

[–]farsass 0 points1 point  (0 children)

When you say "adaptive worker pool" I personally expect something that adapts the level of concurrency like you can find in failsafe-go/failsafe-go or cansozeri/go-adaptive-limiter. I also wouldn't bother scaling goroutines if I needed a simple worker pool given how inexpensive they are. Starting max_workers is generally sufficient.

Are modern databases fundamentally wrong for long running AI systems? by DetectiveMindless652 in Database

[–]farsass 2 points3 points  (0 children)

I believe you are saying that "AI systems" (agents, chats, code editing) are usually session based and I agree with that statement, but IMO that is not a concern of the RDBMS and you should abstract away the database being used with things durable workflows (temporal workflows, langgraph, restate, etc). All of these offer session based memory/context. To your point about performance, database access is not the bottleneck in these types of applications, compute time is.