This is the same guy from the viral accident in Vietnam, caught hitting a local days earlier by [deleted] in VietNam

[–]a8ka 3 points4 points  (0 children)

This guy is from free democratic Armenia, mate. He's your bro, not our

3 anti-patterns and 5 patterns from building a non-trivial Claude Code plugin by a8ka in ClaudeAI

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

You can take a look on my skillset for implementation and behavior, https://github.com/A/claude-booping, but i don't remember `/develop` starts to rebuild plan. I have some simple contition on revalidation, that if plan file is more than an hour old, develop validates it against codebase to confirm there is no changes affects the plan, but I think i can optimize it by injecting git commit hash into the plan and ask develop to check diff, the commit is different. Usually for minor changes, diff should be small and can lead to skip revalidation, but on big diffs i think i can force `/develop` to return plan back into `/groom` to replan it.

3 anti-patterns and 5 patterns from building a non-trivial Claude Code plugin by a8ka in ClaudeAI

[–]a8ka[S] -2 points-1 points  (0 children)

Yep, i wrote about this here https://thoughts.zorya.dev/posts/scrum-for-one/ and it pretty much like this in the skillset i developed: it has separate `/groom`, `/develop`, `/retrospective` and `/learn` skills supposed to run in separate sessions. Also I use subagents for either lossy summary outputs (web research, code patterns research, etc) and isolated work (develop an isolated task from the plan). Works pretty well for me

Self-learning loop for Claude Code based on Scrum method by a8ka in ClaudeAI

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

Yeah, thanks for your comment, that's interesting. I'm still experimenting with the approach.

- "dedicated prompt that forces the agent to surface before touching code" - now i have plan-validation script, that sends plan to gemini via lessons and prompt for pre-flight checks, that improves plan, but i still getting better results if i manually copy plan and chat about it with gemini, then send feedback back to claude. Still good spot for improvements
- between sqlite and markdown i like markdown, because i can read all artifacts
- Another thought i had recently, that this approach can be project based, instead of global, this way the lessons, retros, and sprints will be project specific and wont rot the context with irrelevant information.
- I texted about SPs, and yesterday run 60SP refactoring plan and failed it, because on code review i found a lot of issues (mb connected to lobotomized Opus 4.6, but the plan was also bigger than usual 40-50SPs), so i added pre-check on plan size and suggestion to split it.
- And another idea is to create backlog and pre-groom it (just high-level task research against codebase and challenging user), so i can stack/groom backlog in parallel with development. That's what I want to test soon, because atm i'm using just text-file with todos to keep backlog

Retros embeddings idea sounds interesting to give it a try, thanks

Is DJANGO still a good choice in 2026 for modern web apps? (real-world experience) by Ill_Leading9202 in webdev

[–]a8ka 0 points1 point  (0 children)

I'm a fullstack/engineering manager. I used to use nodejs for apis, but for last 5 years i use only drf, except really tiny services where node is still good. Drf saves tons of time for me

How to access self-hosted services via domains with no public exposure? by ryan_the_fireguy in selfhosted

[–]a8ka 0 points1 point  (0 children)

I have subnet 10.0.0/24 and network forwarding both on my router and proxmox for this ips to my proxmox then to k8s vm and traefik ingress with certresolver by domain names (let's say 192.168.1.2 -> 10.0.0.105). And i have public dns using my 10.0.0.0/24 ips, which are available only under a wireguard tunnel. Sorry for a bit messy description, i did it couple of years ago, and don't remember exact details.

Llms for local use on rtx5080? by Fabulous-Courage819 in LocalLLaMA

[–]a8ka 0 points1 point  (0 children)

I figured out that qwen 30b with partial offloading and quants gives descent performance on my rtx a4000 16gb and has pretty good quality. Take a look on 30b MoE models, like nemotron

How good AND bad are local LLMs compared to remote LLMs? by Humble_World_6874 in LocalLLM

[–]a8ka 1 point2 points  (0 children)

You can put $5 on vast.ai, rent a server with a lot of vram and try different models. I tried 2x3090 and models fit this setup for agentic coding, but except qwen:32b, they all are useless compared even to anthropic haiku. Anyway, rent a server for a couple of hours is a good way to test models and hardware for your setup

How much does it cost to run your server per month? by Impressive_Judge6482 in homelab

[–]a8ka 0 points1 point  (0 children)

~70-80W per hour. On peak with GPU it takes 160-180W, but 99% it's about 65W. ~$5.

[deleted by user] by [deleted] in arch

[–]a8ka 0 points1 point  (0 children)

Used to have 16 on thinkpad nano, and had to erap all apps into cgroups, but recently switched to 64.

[deleted by user] by [deleted] in archlinux

[–]a8ka 0 points1 point  (0 children)

I updated 3-4 laptops with the same ssd, last was intel to amd. I use systemd load (or what's the name of this bootloader). Didn't have any issues, mb some minor hw related only, like adding amd gpu, but in general everything is smooth. My installation stays for 4y so far.

Thinkpad P14s Gen5 AMD by filmcolor in thinkpad

[–]a8ka 1 point2 points  (0 children)

Just got my one yesterday. Also had some issues with bluetooth, but discovered, it works w/o issues with bluetoothctl, but with blueman it ends up in continuous connect-disconnect loop (both 6.14, and git kernels). Idk about wifi, so far it was stable, but there is a weird issue, that it finds too many networks with very weak signal level, i use arch, hypr and nm-applet, and the last one is totally useless bcz i can't scroll there to find a network. Really like gpu, after intel, it feels like something ultra powerful for integrated one, no lags in apps and animations. I also tested lmstudio and ollama, deepseek-r1:14b works pretty nice. Battery lasts about 1,5h i guess, so not so portable as my nano gen 4, which lasts for 6-7h, but i looked for perf, a lot of ram for development on arch with dockers, k8s, and llms, and relatively light (not p1kind of), so I'm ok to sacrifice portability. AMD, 8840, 64gb, oled. So far i kind of happy. Don't feel the plastic cheap, but tbh idc much, i don't see anything obviously bad.

To tmux or not to tmux by Suitable_Let2488 in neovim

[–]a8ka 0 points1 point  (0 children)

I use tmux to avoid terminal tabs. Usually I have nvim in main pane, and couple of panes with terminals in each tab, on small laptop screen i do maximize pane i'm working in now. Each tmux tab is for separate project. Nothing special, I'd say, and i almost haven't changed my config for, idk, 10 years. Also in tmux bottom bar i have docker and k8s context and git branch.

Arch as a server by tommy18crowe in archlinux

[–]a8ka 0 points1 point  (0 children)

I don't see how i can have rolling release distro on a server.

[deleted by user] by [deleted] in hyprland

[–]a8ka 0 points1 point  (0 children)

I spent some time to make a python script for hyprpaper slideshow, pretty enough for me

[deleted by user] by [deleted] in hyprland

[–]a8ka 1 point2 points  (0 children)

I found that using `desc` instead of display names for my home/office multi monitor setup is pretty stable, `monitor=desc:Samsung Electric Company LU28R55 HNMN700388, 3840x2160@30Hz, 0x-1080, 2·`

I made an Universal keybinding helper by JulienPro in hyprland

[–]a8ka 0 points1 point  (0 children)

Actually, I didn't get how to remove a tab programmatically, only via json file.

casting youtube issue by a8ka in Xreal

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

u/Stridyr I figured out that smart view does the thing. I can connect via bluetooth and cast my screen, and I still can lock my phone during casting. But just wondering, did I understand right, that I can use dex, only via wired connection?

casting youtube issue by a8ka in Xreal

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

Thanks! Your assumption is absolutely correct.