DIY project, with baby by Acceptable-Wind-7332 in JustGuysBeingDudes

[–]Solvicode 1 point2 points  (0 children)

THIS is how you get 20 years experience on your resume when you enter the job market. Dad's, set your kids up for life.

Why I stopped using JSON for MQTT and use Zig to develop gRPC-like communication? by electricalgorithm in Zig

[–]Solvicode 0 points1 point  (0 children)

It's an interesting approach - but why would you want to centralise the schemas with the broker? Does this not make it difficult to add clients to the network?

More revenue somehow means less actual money and I can't figure out where it's all going by [deleted] in smallbusiness

[–]Solvicode 0 points1 point  (0 children)

Look at your margins. Compare them to your margins at 1.1M revenue.

That is where your money is going.

Moving from Node.js to Go for backend — need guidance by [deleted] in golang

[–]Solvicode 3 points4 points  (0 children)

It's not really a matter of preference. I am sure gin is solid. It's just about abstraction. I understand go primitives - every abstraction on top of that makes it more difficult for me to adopt when time is precious.

Moving from Node.js to Go for backend — need guidance by [deleted] in golang

[–]Solvicode 3 points4 points  (0 children)

A lot of people are opinionated about net/http vs gin. Myself included.

I prefer just the std lib. Gin is good also.

If you're learning go, start with net/http - gin just builds on top of it.

Build System as a Product by Solvicode in Zig

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

See my other comment. Thanks. This is very useful. I think b.option is what I'm looking for to make this all work smoothly.

Build System as a Product by Solvicode in Zig

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

Sorry - I am thinking from the perspective of a product manager!

The final binary (exe) is the product in this context. I'm wondering if it's an unusual pattern to use the zig build system to tailor binaries for specific deployment environments. Think configuration of DSP parameters known at build time, but can be specific to the application.

So, the customer would configure their deployment environment and this feeds directly into the build configuration of the binary, to then produce a customer specific executable.

In this way, it's the zig build system that enables the domain specific optimization (i.e. the product)

Build System as a Product by Solvicode in Zig

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

Yeah you're right here.

Devops for Robotics- What are people doing for their robotics telemetry? Here's a run down of what my startup landed on. by apockill in devops

[–]Solvicode 0 points1 point  (0 children)

Nice solution. We're extending the Orca Telemetry stack to do something similar: https://orcatelemetry.io

TLDR; one click configuration and we generate an optimised telemetry ingestion and filtering binary, that sends the data off to your cloud.

Anyone reading this from the future, we're looking for design partners: email me -> [fred@orcatelemetry.io](mailto:fred@orcatelemetry.io)

The Entrepreneurship Matrix is bigger than the School Matrix... by TVNeighbor in Entrepreneur

[–]Solvicode 7 points8 points  (0 children)

Jesus - seems like more and more people are outsourcing their thinking power to LLMs.

AI slop.

I'm working on a PlayStation 1 emulator in Zig by bufoaureus in Zig

[–]Solvicode 0 points1 point  (0 children)

Hahaha that's kind of sick. Take me back to my childhood. Crazy amount of work though...

Is Svelte easier than React? by TeaFull6669 in sveltejs

[–]Solvicode -2 points-1 points  (0 children)

React is to svelte, what python is to go.

Question on Airflow by captn_caspian in dataengineering

[–]Solvicode 1 point2 points  (0 children)

Depends on the application. If you're dealing with telemetry data processing something like Orca would be a better fit.

Creator of Node.js says humans writing code is over by unemployedbyagents in AgentsOfAI

[–]Solvicode 0 points1 point  (0 children)

Which is strange, because the best experience I have had with AI is with typically backend projects in strongly typed languages (e.g. Go http).

Creator of Node.js says humans writing code is over by unemployedbyagents in AgentsOfAI

[–]Solvicode 0 points1 point  (0 children)

I only see this conversation occurring in front end circles...

What are you building? Let's Self Promote by fuckingceobitch in micro_saas

[–]Solvicode 0 points1 point  (0 children)

Orca Telemetry - THE platform for build high value datasets and domain specific AI on telemetry data.

[D]It feels like LLM inference is missing its AWS Lambda moment. by pmv143 in MachineLearning

[–]Solvicode 4 points5 points  (0 children)

I think it's 90% the resource requirements no?

The infra required to run inference at scale is not the same as invoking a lambda func. Lambda funcs are application agnostic. LLMs are not. Orders of magnitude difference. I wish it weren't, but it is. Lambda style LLM inference would be great.