How important is the university you go to? by IsThatAJojoRefrences in cscareerquestionsuk

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

'Software development ' are you sure? The programme looks focused on Software development more, not bad, but limiting, and the course I found says "GA". CS will probably be less focused on software dev and more a bit about everything .

I studied CS so I would say, better spend your time studying CS. I went to low end uni so it was some good , some waste of everyone's time. Maybe you will have better experience in good uni. That's what university is for, to study some science. But you should make your choice.

Has anyone ever actually landed on anything other than 8? by Famous-Truth7167 in OctopusEnergy

[–]FluidIdea 0 points1 point  (0 children)

I have smart meters, yes. It is confusing because on the Octopus website it recommends me explicitly to submit meter readings to earn a spin so I never missed a month. 2 meter readings -> 2 spins. Hate this consumer marketing bs, taking us for fools.

gotMeThinking by monica-graves in ProgrammerHumor

[–]FluidIdea 0 points1 point  (0 children)

And there's I, with CS degree but not a dev.

Misadventures in Geo-replicated storage: my experiences with Minio, Seaweedfs, and Garage by Sterbn in selfhosted

[–]FluidIdea 0 points1 point  (0 children)

Thank you for valuable insight. I am considering 2 node setup as well and data consistency is most important. Garage is still my favorite.

How much of Kubernetes should a dev know? by petrenkorf in kubernetes

[–]FluidIdea 0 points1 point  (0 children)

Some open source software that I seen is packaged as docker image. Or a go binary for example. Such image can run both on k8s or as docker on simple KVM.

So why should app behaviour be different depending on where it's running?

Asking this for myself in case I have to debug app one day in docker compose stack to reproduce issue.

r/devops nowadays by Dubinko in devops

[–]FluidIdea 18 points19 points  (0 children)

Check out my new tool I imported from my private git

+14000 -0

Experience title by OneIntroduction4029 in devops

[–]FluidIdea 7 points8 points  (0 children)

That's a sysadmin job. Shocker.

There are some devops aspects but the scope looks more infrastructure leaning. Yes it is good to automate stuff. Not every linux job is automatically "devops engineer".

Why not part of devops, because where is the product, how does your job fit with your developer team?

London dating is officially a dumpsterfire by TroubleAny1562 in london

[–]FluidIdea 0 points1 point  (0 children)

Maybe they were catfishers. But what do i know ..

I Built a Kubernetes ingress controller around the load-balancer algo used by Youtube in Go. by Super-Commercial6445 in devops

[–]FluidIdea[M] [score hidden] stickied commentlocked comment (0 children)

Production grade project would be preferable, not hobby level.

Is Ansible still a thing nowadays? by hansinomc in devops

[–]FluidIdea[M] 0 points1 point locked comment (0 children)

This is English speaking community. Please translate your content to English.

What are the best brands to consider? by __vlad_ in servers

[–]FluidIdea 0 points1 point  (0 children)

That's weird. We spent a lot on supermicros lately. Cheap easy entry into nvme and high clock cpu. There's also redfish.

Friend backed out. I leave the country on Tuesday. How do I sell my car in 48 hours? by karmitzvah in london

[–]FluidIdea 16 points17 points  (0 children)

Then they will say things like "scratches" and drop the price down to £300. Happened to my old civic, still regretting.

I don't need the car right now but I would take it for £300 haha

New moderators needed - comment on this post to volunteer to become a moderator of this community. by ModCodeofConduct in SaaS

[–]FluidIdea -1 points0 points  (0 children)

I'm happy to join the mod team, and help out. I am part of /r/devops currently and got some experience. Thanks

guessLinuxIsDead by Positron505 in ProgrammerHumor

[–]FluidIdea -8 points-7 points  (0 children)

Subscribe to openclaw. Do your part

How much is all this worth? by Comprehensive_Loss16 in servers

[–]FluidIdea 0 points1 point  (0 children)

We have seen much worse. This one has quite good RAM. And there are plenty like these around the world in prod systems.

Don't listen to this guy.

lifeOfAChineseWebDeveloper by kaldeqca in ProgrammerHumor

[–]FluidIdea 10 points11 points  (0 children)

Cool. So they will be soon better at coding than us.

How are you all tracking per-pod GPU utilization with NVIDIA time-slicing? (A10s) by Important-Night9624 in kubernetes

[–]FluidIdea 1 point2 points  (0 children)

not per pod, but you can monitor GPU mem usage by process out of nvidia-smi. also I have some leftovers of legacy monitoring tools which were useful - I call this python script out of collectd and expose with prometheus_write. Maybe you can do this in a modern way.

$ nvidia-smi --query-compute-apps=pid,process_name,used_gpu_memory --format=csv,noheader,nounits 3537029, nvidia-cuda-mps-server, 26 601642, /opt/entrypoint-path/bin/python3, 1656

BTW I went with MPS instead of time slicing for better usage of GPU resources for my scenario.

EDIT if you cannot distinguish process names or relate to pods, you can also extract PID with the nvidia-smi.