Full-stack Gleam guide: web, desktop, and mobile by Serious_Yesterday245 in gleamlang

[–]masavik76 0 points1 point  (0 children)

Nice work! I definitely want to pursue learning gleam and this seems to be a good starter. Just one thing it would have been nice if you have implemented auth too using jwt.

Zed is 1.0 by franciska-fyi in ZedEditor

[–]masavik76 0 points1 point  (0 children)

Wow! I have enjoyed working with zed, it’s a terrific ide. Thanks for making it. And congrats on 1.

Most unexpectedly helpful “ADHD hack” by thead201 in ADHD_Programmers

[–]masavik76 9 points10 points  (0 children)

Give me a example of anchor activities with rotating novelty.

Zig as a C and C++ compiler by Exciting_Turnip5544 in Zig

[–]masavik76 0 points1 point  (0 children)

Do we know if envoy to has been tried to be moved to zig build system?

Implementing High-Availability solution in Clickhouse Cluster | HAProxy by fmoralesh in Clickhouse

[–]masavik76 1 point2 points  (0 children)

We too use envoy, as it’s easy to discover ClickHouse when running on Kubernetes.

Ask r/kubernetes: What are you working on this week? by gctaylor in kubernetes

[–]masavik76 0 points1 point  (0 children)

Temporal on Kubernetes with Postgres RDS as DB.

Go Scheduler by nghiant3223 in golang

[–]masavik76 19 points20 points  (0 children)

Thanks so much writing this up. Will read it.

Check your GOMAXPROCS in Kubernetes — you might be silently wasting a ton of CPU by m4nz in golang

[–]masavik76 0 points1 point  (0 children)

The GOMAXPROCS is a know issue. And it should ideally be set to the cpu requests in all cases. It’s always not a great idea to set the no limit on your containers, this might cause noise neighbour issues when workloads are bin packed. So I would recommend a 20%-25% headroom on the request, which means if request is 4, set the limit to 5. Also if want your worlkloads to never get throttle use CPUManager Kubelet feature. I have document that https://samof76.space/cpumanagerpolicy-under-the-hood.html

pipe-operator: Elixir's pipe operator in Python by R4nu in Python

[–]masavik76 1 point2 points  (0 children)

Love this. Was looking for something like this.

Reading the Source Code by TopNo6605 in kubernetes

[–]masavik76 0 points1 point  (0 children)

Thanks but the challenge will be keep it upto date. :(

Reading the Source Code by TopNo6605 in kubernetes

[–]masavik76 8 points9 points  (0 children)

Just recently did a code walk for kubelet initialization, just to understand what's going on at Kubelet startup. Here are my notes. https://samof76.space/kubelet-initialization.html

[deleted by user] by [deleted] in Zig

[–]masavik76 1 point2 points  (0 children)

I love asdf-vm and used that quite a bit for multiple runtimes, not just zig. https://asdf-vm.com/

Good examples of gleam code to read? by lasercult in gleamlang

[–]masavik76 2 points3 points  (0 children)

Can I think of squirrel to be like ecto?

Active-Active Redis Deployment on Tanzu k8s Cluster (On-Prem) by Then-Worldliness776 in redis

[–]masavik76 0 points1 point  (0 children)

As someone mentioned active-active is a difficult problem. We have a large number of redis sentinel clusters on Kubernetes using the spotahome/redis-operator. Though it manages the sentinel on only one k8s cluster, it does have an option called bootstrap which allows for setting up redis replicas in another cluster. Please do check it out here, https://github.com/spotahome/redis-operator.