HackerTrans
TopNewTrendsCommentsPastAskShowJobs

proxysna

no profile record

comments

proxysna
·14 gün önce·discuss
Deploying and building OpenTTD if my favourite exercise when i am trying to learn new CI tool or orchestrator or packaging format. Simple enough, yet fun.
proxysna
·24 gün önce·discuss
Nice. Thanks for the insight!
proxysna
·24 gün önce·discuss
I've been using deepseek for some development at home and it is really good for the price. It is at the point where i am ok with using it as a tool that i can rely on and not an expensive gadget with flaky uptimes.
proxysna
·24 gün önce·discuss
I'd would assume that this is not a monolithic cluster of 40k vm's but at least tens of clusters. Which puts it in the realm of capabilities of Proxmox.
proxysna
·24 gün önce·discuss
Great time to migrate off VMware. All the migration paths are well-trodden by now, but goddamn 40k vm's. A lot of work ahead.
proxysna
·geçen ay·discuss
Alpine is my go-to nowadays for everything in my homelab except desktop (I use Void btw), because of how dirty the setup to make GPU's work with musl kernel.
proxysna
·geçen ay·discuss
Looks really nice, but 10 fps in Firefox.
proxysna
·geçen ay·discuss
It's just a DGX spark with faster memory and a windows boot?
proxysna
·geçen ay·discuss
There is a docker registry under the same name. https://zotregistry.dev
proxysna
·2 ay önce·discuss
I think hashicorp still have an implementation for vaults seal/unseal process. Unless something changed ofc
proxysna
·2 ay önce·discuss
Feels about right.

I've launched an internal demo of Claude Code and Deepseek on the same day and we burned through our monthly allowance for Claude in just over a week, with more than a half of that budget being spent in one day. With DS people are unable to go through that same amount of money in a month, not even close.

With that Claude feels like an expensive toy, while DS is a shovel, purely because developers do not feel like they are eating into a precious resource while using it. Also it does not feel like there is much of a difference in capability between Claude and DS-pro. DS-pro and flash do feel like sonnet/opus and haiku, but flash is still very-very capable.
proxysna
·2 ay önce·discuss
“Expert” that does not know what a Terraform is. lol, lmao even
proxysna
·2 ay önce·discuss
Cool, i am mostly a plumber for these things, but do you have any sort of reading that i can go through to wrap my head around it to some degree?
proxysna
·3 ay önce·discuss
I've used only Qwen3.5 so far for work and was, after initial struggles, successful with GPU setup, no mlx. Ngl the fact that they are using `presence_penalty: 0` and no `max_tokens` is weird after that exact setup caused me "initial struggles", but i've set up a simple docker-compose with vllm and qwen3.6 right now to test it out and it worked perfectly fine for me.

Gist with the compose and example of an output. https://gist.github.com/meaty-popsicle/f883f4a118ff345b430c3...
proxysna
·3 ay önce·discuss
You need to set sampling parameters for the llm. Had the same issue with Qwen3.5 when i first started. You can grab them off the model card page usually.

From Qwen3.6 page:

Thinking mode for general tasks: temperature=1.0, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0

Thinking mode for precise coding tasks (e.g. WebDev): temperature=0.6, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0

Instruct (or non-thinking) mode: temperature=0.7, top_p=0.80, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0
proxysna
·3 ay önce·discuss
OpenWebUI with postgres and vllm for inference, searxng for websearch a few other mcp's for tools.
proxysna
·3 ay önce·discuss
This is from an example from my Nomad cluster with two a5000's, which is a bit different what i have at work, but it will mostly apply to most modern 24G vram nvidia gpu.

"--tensor-parallel-size", "2" - spread the LLM weights over 2 GPU's available

"--max-model-len", "90000" - I've capped context window from ~256k to 90k. It allows us to have more concurrency and for our use cases it is enough.

"--kv-cache-dtype", "fp8_e4m3", - On an L4 cuts KV cache size in half without a noticeable drop in quality, does not work on a5000, as it has no support for native FP8. Use "auto" to see what works for your gpu or try "tq3" once vllm people merge into the nightly.

"--enable-prefix-caching" - Improves time to first output.

"--speculative-config", "{\"method\":\"qwen3_next_mtp\",\"num_speculative_tokens\":2}", - Speculative mutli-token prediction. Qwen3.5 specific feature. In some cases provides a speedup of up to 40%.

"--language-model-only" - does not load vision encoder. Since we are using just the LLM part of the model. Frees up some VRAM.
proxysna
·3 ay önce·discuss
We do make Claude and Mistral available to our developers too. But, like you said, security. I, personally, do not understand how people in tech, put any amount of trust in businesses that are working in such a cutthroat and corrupt environment. But developers want to try new things and it is better to set up reasonable guardrails for when they want to use these thing by setting up a internal gateway and a set of reasonable policies.

And the other thing is that i want people to be able to experiment and get familiar with LLM's without being concerned about security, price or any other factor.
proxysna
·3 ay önce·discuss
Qwen3.5-27B with a 4bit quant can be run on a 24G card with no problem. With 2 Nvidia L4 cards and some additional vllm flags, i am serving 10 developers at 20-25tok/sek, off-peak is around 40tok/sek. Developers are ok with that performance, but ofc they requested more GPU's for added throughput.
proxysna
·3 ay önce·discuss
Yeah, my thought exactly, execution lacked, but i do admire the attempt.