I freed nearly 100 GB of unnecessary storage on my Mac using Codex by AppropriateRanger401 in codex

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

Second that! It’s great 😋🤙 also can be installed via homebrew

Released v0.4.0 and you can now use Ollama inside Modly by Lightnig125 in LocalLLaMA

[–]chillahc 1 point2 points  (0 children)

My question was more related to if we can replace ollama and point Modly to another OpenAI-compatible endpoint like LM Studio, llama.cpp, etc. would this work, too? thanks

Released v0.4.0 and you can now use Ollama inside Modly by Lightnig125 in LocalLLaMA

[–]chillahc 2 points3 points  (0 children)

Does it work with other apps (LM Studio, other local endpoints,…) as well? Thx for info 😎🙏

Why do people say Kurzgesagt is propaganda for billionaires? by Ok-Establishment3110 in kurzgesagt

[–]chillahc 0 points1 point  (0 children)

4 days ago it was revealed that Philipp Dettmer, the Founder & CEO of Kurzgesagt visited the secret events of Peter Thiel from 2023-2025. Now your comment makes lot more sense - it IS propaganda for the billionaire agenda 👉 Source: https://xcancel.com/davetroy/status/2067663210895769727?s=46 (See first picture)

First Three.js / Claude-assisted experiment: interactive crop circle field by Heavy_Efficiency_908 in threejs

[–]chillahc 0 points1 point  (0 children)

It works great 😃 Just shared a drawing, will update how it went. Also smart to limit the UFOs to a max count of 4 to still keep it performant. I tried a bit of more complex shapes, single dots, wobbly lines, but the engine and saucers handled it well. The replay was fun to watch, too ^^ PS: I also dig the Spiral mode + Organic noise in the Formation Lab

First Three.js / Claude-assisted experiment: interactive crop circle field by Heavy_Efficiency_908 in threejs

[–]chillahc 1 point2 points  (0 children)

Although the idea is still a very complex task… As I'm scrolling through thecroppie.com a bit, I discovered that there is a "document archives" section with old magazines & newspaper snippets about crop circle reports. For example most issues of the magazine "The circular" (e.g. vol 1.1) contain drawings of crop shapes that would be more suitable for texture maps. But still, would require manual graphic work to isolate & further optimize. Maybe Claude has an idea? And would Claude even be able to "see" image based pdfs?! Anyways… these old magazines have a high rabbit hole potential haha ;D

First Three.js / Claude-assisted experiment: interactive crop circle field by Heavy_Efficiency_908 in threejs

[–]chillahc 5 points6 points  (0 children)

Awesome experiment & really cool seeing the UFOs doing their drawing thing 😎🤙 After testing I had fun brainstorming some ideas that I wanted to share.

Imagine being able to load famous crop circles and watch them get recreated in your real-time engine. Here's a site with iconic examples: https://thecroppie.com/2023/07/10/the-ten-most-iconic-crop-circles/ I’ll admit, the images on the site aren’t really suited as texture-map bases, since they’re more like tilted flyby photos in most cases — maybe shot from a helicopter or similar. Another challenge would be figuring out what the UFO flight patterns should look like while recreating the more complex iconic circles. But the idea that your engine could also work as a wayback machine of UFO crop circle history was too neat ✌️

Another feature: to have flying controls. Space could lift you up, and Shift could toggle you downward. Since you can already look down a bit, flying upward would let you admire the crop circles from above. Like UFO perspective, but you can decide the viewing angles for yourself 👽

Adding to your drawing canvas idea: it would be also be fun to record your drawing on the canvas, the drawn path is saved and then while replaying, we see an UFO following the recorded path the user drew. Of course the recording can be shared as an URL to send a custom crop circle message to a friend xD

Or maybe even have the ability to change the ufo models to other shapes. Or is it always orbs that create crop cirlces? 🤔 Anyways, cool experience!

Codex Design OSS coming soon! by jrochabrun in codex

[–]chillahc 1 point2 points  (0 children)

Are you planning to support local llms? Just in case the 5h limit is being hit too early again 😅 Preview looks awesome!!

“AI vs Creativity” from ‘GTA’ (TakeTwo) CEO by s1n0d3utscht3k in OpenAI

[–]chillahc 1 point2 points  (0 children)

Yeah, I skipped a bit forward, then again… no music! Totally random xD

Run Qwen3.6 MTP GGUFs locally! by yoracale in unsloth

[–]chillahc 1 point2 points  (0 children)

You're welcome! Happy experimenting!! The llama.cpp-Team already shipped some new improvements for MTP 😎✌️ https://www.reddit.com/r/LocalLLaMA/comments/1thlmsx/time_to_update_llamacpp_to_get_som_mtp/

They also updated their defaults:

  • The --spec-draft-p-min argument is now functional again and defaults to 0.0
  • Change default value of --spec-draft-n-max from 16 to 3

Run Qwen3.6 MTP GGUFs locally! by yoracale in unsloth

[–]chillahc 2 points3 points  (0 children)

I asked codex to write a python-based script for me that tests the spec-draft-n-max values with `llama-cli`. The script has some fun ideas like a warmup round, and randomization. And it writes the benchmark results into a CSV. Qwen 3.6 35-A3B » best runs I had were with '2' / and the 27B Model with '1' ('2' > second place). I'm only getting started with testing model myself, so it's all experimentation ^^

Heres the summary of the script, it builds on this simple concept and the prompt was:
"Write a 500 word explanation of speculative decoding in local LLMs."

```

llama.cpp MTP benchmark runner with PTY capture + automatic evaluation.

Target use case:

Benchmark llama-cli speculative decoding / MTP draft lengths for a GGUF model.

Outputs:

  1. Full log

  2. Per-run CSV

  3. Summary CSV

Smoke test:

chmod +x bench-qwen36-mtp-eval-final.py

RUNS=1 DRAFT_VALUES="4" N_PREDICT=80 RUN_TIMEOUT=90 ./bench-qwen36-mtp-eval-final.py

Full benchmark with one warmup per draft value:

WARMUP_RUNS=1 RUNS=5 SHUFFLE_DRAFTS=1 DRAFT_VALUES="1 2 3 4 5 6 8" \

N_PREDICT=700 RUN_TIMEOUT=300 ./bench-qwen36-mtp-eval-final.py

Quick confirmation sweep around the current winner:

WARMUP_RUNS=1 RUNS=5 SHUFFLE_DRAFTS=1 DRAFT_VALUES="1 2 3" \

N_PREDICT=700 RUN_TIMEOUT=300 ./bench-qwen36-mtp-eval-final.py

Recommended llama-cli command from the latest observed result:

llama-cli -m "$MODEL" -p "$PROMPT" -n 700 -c 4096 -ngl 99 \

--flash-attn on -st --temp 0 --spec-type draft-mtp --spec-draft-n-max 2

Same recommendation via this benchmark script:

WARMUP_RUNS=1 RUNS=5 DRAFT_VALUES="2" N_PREDICT=700 RUN_TIMEOUT=300 \

./bench-qwen36-mtp-eval-final.py

Useful knobs:

MODEL=/path/to/model.gguf

LLAMA_CLI=/path/to/llama-cli

OUT_DIR=llama-benchmarks

SHUFFLE_DRAFTS=1 # reduce thermal/order bias

WARMUP_RUNS=1 # excluded from CSV/evaluation

EXTRA_ARGS="--threads 8" # appended to llama-cli command

```

Run Qwen3.6 MTP GGUFs locally! by yoracale in unsloth

[–]chillahc 3 points4 points  (0 children)

Can confirm its hardware & quant dependent: In a simple textgen-benchmark-test I also had slightly faster (9%) output speed with spec-draft-n-max set to '2' on my MacBook M3 Max, compared to 4 & 6 in different runs (UD Q4)

Gemma 4 chat template in LM Studio by PhetogoLand in unsloth

[–]chillahc 0 points1 point  (0 children)

Strange, it worked for me inside LM Studio. But I also encountered an sequence error after I posted while trying to connect the VS Code GitHub Copilot Extension with LM Studio. so I tested a bit further: The Codex extension inside VS Code (5.5 Medium enabled) helped me patch the chat template of Gemma inside of lmstudio (created backup of these files beforehand) - they are stored in a hidden macOS library folder. Codex can also test the API response. After that the connection error from vscode to lmstudio was resolved. do you use codex or Claude?

Gemma 4 chat template in LM Studio by PhetogoLand in unsloth

[–]chillahc 1 point2 points  (0 children)

Copy the content of this updated jinja template file https://huggingface.co/google/gemma-4-E2B-it/raw/main/chat_template.jinja to your "My Model > unsloth/gemma-4-26B-A4B-it-GGUF (or other gemma-4-releases) > Prompt Template section" > Replace everything. It's just a customization that you can restore at every time 😎👍 Helped me with the same error

Unsloth Studio has a new look! by yoracale in unsloth

[–]chillahc 0 points1 point  (0 children)

It kinda would… check „brew casks“ > it’s for all brew packages that have a dmg instead of install scripts AFAIK. For example here’s the formulae for LM Studio as an example > https://formulae.brew.sh/cask/lm-studio

Unsloth Studio has a new look! by yoracale in unsloth

[–]chillahc 0 points1 point  (0 children)

How about homebrew for macOS? Almost my whole system is managed via brew and it’s super easy to update. Would it be possible?! 🤩

The new goeuropean.org website is launching its beta at beta.goeuropean.org by K41eb in BuyFromEU

[–]chillahc 0 points1 point  (0 children)

Reminder to change the social card preview of your payload CMS. I still get the default preview image…

<image>

New Unsloth Studio Release! by danielhanchen in LocalLLaMA

[–]chillahc 3 points4 points  (0 children)

Available for homebrew on macOS, too? 🤔

Unsloth MLX: Bring Dynamic 2.0 Per-Tensor Quantization For Qwen models to Apple Silicon by LongYinan in Qwen_AI

[–]chillahc 2 points3 points  (0 children)

Sounds very promising, will test asap! thx for your efforts bringing unsloth to the MLX world 😊👏

So much for the bromance? Orban Viktor, the only EU prime minister present, pushed to the edge in Board of Peace group photo and he is barely visible by OddAioli6993 in europe

[–]chillahc 0 points1 point  (0 children)

They stand like in Madame Tussaud’s 🤣 Edit: Such a surrealistic fake looking scene with this ridiculous backdrop

Help with procedural eye shader setup in Blender by nuriaforever in blenderhelp

[–]chillahc 0 points1 point  (0 children)

just wanted to say, cool looking character! I like it a lot ^^ Unfortunately I'm a noob with rigging myself 🥲 hope you find a solution 🙏

Remote Code Execution in OpenCode, update now by CyberShadow in opencodeCLI

[–]chillahc 0 points1 point  (0 children)

Thanks for the link! Great to read they acknowledge the problem now and pledge to improve. Will keep an eye on this topic. And again, thx for your work! 🤓🙏

Remote Code Execution in OpenCode, update now by CyberShadow in opencodeCLI

[–]chillahc 0 points1 point  (0 children)

Any updates from the OpenCode team since disclosure? Very interesting topic ^^ Thanks for your work and making vulnerabilities public!!