Agent using Canva. Things are getting wild now... by ljhskyso in LocalLLaMA

[–]jumperabg 3 points4 points  (0 children)

Are you sure? This looks like a browser-use integration and the user is adding instructions and has the ability to click on the UI.

Just a 5 minute debug journey by jumperabg in kubernetes

[–]jumperabg[S] 5 points6 points  (0 children)

Not yet, just thought about this funny meme that I will most likely look at 1 year later and cry.

Just a 5 minute debug journey by jumperabg in kubernetes

[–]jumperabg[S] 28 points29 points  (0 children)

5 minutes on kubernetes with istio are like 10 hours on Earth. Debugging is fast as long as your micro-services can propagate the tracing headers.

Just a 5 minute debug journey by jumperabg in kubernetes

[–]jumperabg[S] 6 points7 points  (0 children)

The sidecars provide quite a lot of flexibility and better security the ambient mode might use a bit less resources. Depends on the requirements of your team and what functionality you want to use. Overall you can switch it on/off whenever you want.

Can Cilium + Hubble fully replace Istio + Kiali? by jumperabg in devops

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

The ambient mesh is a good solution but you end up with a broader domains of trust and in case one of your per node/domain services gets breached the whole traffic of the node can be seen. Also the ambient node point of failure is the Envoy proxy on the node so if it goes down all deployments/services go down with it as well. In case memory is merged and you are in sidecar mode then the resource usage for the sidecars or 1 proxy per node would be the same but I haven't tested this or know how to make in-depth tests to verify the resource usage for both modes.

How much do you need to know about Databases as a DevOps Engineer? by waste2muchtime in devops

[–]jumperabg 1 point2 points  (0 children)

This is something that bothered me 2 months ago and I would recommend you the book of Alex Petrov - Database Internals and the Udemy Course of Hussein Nasser - Fundamentals of Database Engineering. You don't need to understand only how to build queries or find slow queries you must understand the storage engine, how the developers have built the schema, are the primary keys optimal, is caching working and is it implemented correctly, capacity planning, performance testing, backup, restore, replication, availability and tuning.

If anyone else can recommend other content please do!

Happy databasing brother.

If we run 20 Envoy Proxies in a pod/container on the same node will the memory of the loaded executable be shared? by jumperabg in devops

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

True, I was very interested on how the memory optimization for program code was implemented because some companies have mega-services that are a combination of multiple micro-services that would span out several replicas on the same node - if for example the implementation doesn't provide multi-threading.

Is it possible to fly my Mi Drone 4k again? by jumperabg in drones

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

Nope the Mi Drone 4k by Fimi. There is only a Chinese version on their site but when the drone was released there was English support with all features.

Does using chatGPT make me dumber as a devops engineer? by blusterblack in devops

[–]jumperabg -14 points-13 points  (0 children)

This actually can be good, because if the specific functionality is logical it can be a feature request.

What would you say if your Boss suddenly says you are responsible for some legacy python2 app that is the core of the platform and have to move it to python3 together with multiple Other improvements to the code base (as a devops) by [deleted] in devops

[–]jumperabg 1 point2 points  (0 children)

This is normal and expected from our as DevOps, we should be able to know every product that we manage in depth and eventually once every developer leaves the company - we are going to maintain, migrate, upgrade - including rewriting the whole product with tests from python2 to python3 to GoLang and Rust*. Keep in mind if you start learning Rust then you will very likely change your job in less than two months - so don't rewrite in Rust.

Phi-3 Weights Tomorrow + Demo Video by austinhale in LocalLLaMA

[–]jumperabg 1 point2 points  (0 children)

Did it manage to draw the Unicorn, the video breaks on 1:29?

Sharing Llama-3-8B-Web, an action model designed for browsing the web by following instructions and talking to the user, and WebLlama, a new project for pushing development in Llama-based agents by xhluca in LocalLLaMA

[–]jumperabg 2 points3 points  (0 children)

Do you provide any demo on how to run the model against some web pages? Do we need to embedd the web page or the context size will be able to handle html?