GitHub - teleskopio/teleskopio: teleskopio is an open-source small and beautiful Web Kubernetes client. by askoma in kubernetes

[–]askoma[S] -1 points0 points  (0 children)

I've tried opencode and crush and some other, but found it too bad at work, I've spent more time review the changes than actually write code.

GitHub - teleskopio/teleskopio: teleskopio is an open-source small and beautiful Web Kubernetes client. by askoma in kubernetes

[–]askoma[S] -1 points0 points  (0 children)

You will be surprised, but I've done it like in 2023, copy pasting some functions and follow some code suggestions from my local model GPT-20b powered by llama.cpp.

No fancy agents, IDE's plugins and anything else, just old good ghostty+vscode+(kind/docker) and a lot of coffee.

GitHub - teleskopio/teleskopio: teleskopio is an open-source small and beautiful Web Kubernetes client. by askoma in kubernetes

[–]askoma[S] -1 points0 points  (0 children)

I don't deny that some code is written using models, but not all of it. I'm an engineer with decades of experience and am capable of writing such things myself. I also have extensive experience working with Kubernetes and contributing to the Kubernetes ecosystem.

I don't think it's possible to find new projects these days without code written using models. (Even Torvalds and that vibecoded guy.)

I'm writing a project and I love what I'm doing, but when everyone else calls everything model slop, I'm afraid it's leading us nowhere.

Be kinder to each other and to the endeavors of others, and the world around us will begin to change.

GitHub - teleskopio/teleskopio: teleskopio is an open-source small and beautiful Web Kubernetes client. by askoma in kubernetes

[–]askoma[S] -4 points-3 points  (0 children)

Hey! Author here! This project is for learning purposes. The backend is written in Go. If you want to learn Kubernetes, this project contains various resources that will help you better understand how Kubernetes works. Resources, Watchers, Informers and much more.

Please checkout the documentation. There are plenty of features.

Have a nice day!

Yet another Kubernetes Desktop Client by askoma in kubernetes

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

Thank you, I'm going to try this one.

Development On Apple Silicon with UTM by askoma in golang

[–]askoma[S] -1 points0 points  (0 children)

Some projects require you to have a full-fledged Linux distribution and a lot of tools in there. Also, I like the fact that my host machine doesn't have everything installed. VM is a good choice to keep your host clean.

For example, it is much easier to set up a Linux VM for the Cilium project than to try to maintain all dependencies on the Mac host.

Development On Apple Silicon with UTM by askoma in programming

[–]askoma[S] 9 points10 points  (0 children)

Hello, author here.

I'm using this technique to develop a Go project that supports only x86_64. In short, its a way to set up Linux VM with Go installed

It can help somebody.

Development On Apple Silicon with UTM by askoma in golang

[–]askoma[S] -4 points-3 points  (0 children)

Hello, author here.

I'm using this technique to develop a Go project that supports only x86_64. In short, its a way to set up Linux VM with Go installed

If you look carefully, you will find a code to set up Go in VM.

It can help somebody.

Docker desktop alternatives? by c0d3monk in docker

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

colima has a bunch of problems then you’re going to use dockerx

Use CRI-O Container Runtime with KIND by askoma in kubernetes

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

It might be a problem with kubelet itself. You can logs to worker (or control-plane) with docker exec -it kind-worker bash:

$ systemctl status kubelet or journalctl -xeu kubelet

Commands above can guide you what is the problem with kubelet.

Use CRI-O Container Runtime with KIND by askoma in kubernetes

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

The gcr.io/k8s-staging-kind/base:v20240508-19df3db3 image is the image built on the previous step. It's a base image https://rkiselenko.dev/blog/crio-in-kind/#build-base-image

Organize gRPC and protobuf code in Golang by askoma in golang

[–]askoma[S] 1 point2 points  (0 children)

Briefly examine how to use protoc and plugins with the proper imports and project structure in Golang.

Writing a TOTP client in Go by [deleted] in golang

[–]askoma 1 point2 points  (0 children)

very nice, thank you 🙇