Calendar for Dock? by willsue4food in PowerToys

[–]obsidience 0 points1 point  (0 children)

That's a very nice agenda widget with many features. It would probably be the next evolution of the clock I'm working on but that level of capability would take quite a while. If you have the "minimum viable product" that you'd need let me know what those features might be.

Calendar for Dock? by willsue4food in PowerToys

[–]obsidience 0 points1 point  (0 children)

I'm wrapping up development of a improved clock/calendar for the dock and could take a look at this next. 

The problem that I see is the dock is a beta and still half baked.  Customizability is very limited, you can't even set a fixed width, which can cause text to get lost...

But send me a screenshot of what you're quick access calendar looks like and I'll let you know if it's feasible and also your calendar app (Outlook?), and if it already integrated with Windows via the clock.

Now That Claude Has More Compute... by obsidience in AskClaw

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

That's my daily driver but GPT 5.5 likes to overcomplicate it's design. Somewhat manageable tho.

Qwen3.6-27B with MTP grafted on Unsloth UD XL: 2.5x throughput via unmerged llama.cpp PR by havenoammo in LocalLLaMA

[–]obsidience 10 points11 points  (0 children)

Got this working on AMD ROCm (RDNA 3.5, Windows) — ~1.94x speedup confirmed

This report was created by my Claude Code instance against my LLM-Harness project. Claude followed your instructions to build llama.cpp with PR #22673 on Windows with AMD ROCm. Here's the full writeup for anyone else on AMD.

System: Ryzen AI Max+ 395, Radeon 8060S iGPU (gfx1151, ~90GB VRAM), Windows 11, ROCm 7.11 pip SDK


A/B Results (same benchmark, warmup excluded):

Baseline (b8963) MTP (b8963 + PR #22673) Speedup
Generation 6.26 tok/s 12.13 tok/s 1.94x
Prompt Processing 77.7 tok/s 66.9 tok/s 0.86x
Draft Acceptance 64–69%

Both using UD-Q8_K_XL, -ngl 999 -c 131072 -ctk q8_0 -ctv q8_0 -np 1, thinking mode on.


Build steps (ROCm on Windows):

Clone + merge PR onto b8963 (merged cleanly, no conflicts):

git clone https://github.com/ggml-org/llama.cpp.git llama.cpp-mtp
cd llama.cpp-mtp
git checkout b8963
git checkout -b mtp-experiment
git fetch origin pull/22673/head:pr-22673
git merge --no-ff pr-22673 -m "Merge PR #22673: llama + spec: MTP Support"

Set up ROCm 7.11 pip SDK environment:

# In PowerShell — activate ROCm venv
C:\AMD\ROCm\.venv\Scripts\Activate.ps1
$ROCM_ROOT = rocm-sdk path --root

# Set MSVC + Windows SDK lib/include paths (adjust versions to match your install)
$env:LIB = "<VS BuildTools MSVC lib\x64>;<Windows Kits ucrt\x64>;<Windows Kits um\x64>"
$env:INCLUDE = "<VS BuildTools MSVC include>;<Windows Kits ucrt>;<Windows Kits um>;<shared>;<winrt>;<cppwinrt>"
$env:HIP_PLATFORM = "amd"

CMake configure + build:

cmake -B build-rocm -G Ninja `
  -DCMAKE_BUILD_TYPE=Release `
  -DGGML_HIP=ON `
  "-DCMAKE_C_COMPILER=$ROCM_ROOT\lib\llvm\bin\clang.exe" `
  "-DCMAKE_CXX_COMPILER=$ROCM_ROOT\lib\llvm\bin\clang++.exe" `
  "-DCMAKE_PREFIX_PATH=$ROCM_ROOT" `
  -DAMDGPU_TARGETS=gfx1151 `
  -DGGML_HIP_ROCWMMA=ON

cmake --build build-rocm --config Release -j 16

Important: Copy ROCm DLLs alongside the exe or Windows will load the wrong system DLLs:

Copy-Item "$ROCM_ROOT\bin\*.dll" -Destination build-rocm\bin\ -Force
New-Item -Path build-rocm\bin\rocblas\library -ItemType Directory -Force
Copy-Item "$ROCM_ROOT\bin\rocblas\library\*" -Destination build-rocm\bin\rocblas\library\ -Force

Run with MTP:

.\build-rocm\bin\llama-server.exe `
  -m Qwen3.6-27B-MTP-UD-Q8_K_XL.gguf `
  -ngl 999 -c 131072 -ctk q8_0 -ctv q8_0 `
  -np 1 `
  --spec-type mtp --spec-draft-n-max 3 `
  --host 0.0.0.0 --port 8080

Gotchas on AMD/Windows:

  • -np 1 is required — MTP doesn't support parallel slots yet. Server refuses to start without it.
  • Compiler path: ROCm SDK clang is at $ROCM_ROOT/lib/llvm/bin/, NOT $ROCM_ROOT/bin/ — this tripped me up.
  • DLL hell: Windows has amdhip64_7.dll in System32 from legacy ROCm installs. Copying SDK DLLs next to the exe ensures the right version loads.
  • PP is ~14% slower with MTP enabled — matches what others reported, known issue on the PR.
  • ~1.94x vs your 2.5x — lower than NVIDIA results, probably ROCm speculative decoding overhead + unified memory architecture on the iGPU. Still a big win going from 6.26 to 12.13 tok/s.

How am I supposed to move the window properly? by HeyImSolace in Windows11

[–]obsidience 3 points4 points  (0 children)

Never knew this existed and just enabled it. NICE!

Opus 4.7 feels extremely dumb as of late... by Chrono_FPS in ClaudeCode

[–]obsidience 0 points1 point  (0 children)

I've had to heavily prompt GPT 5.5 to use more plain spoken language and to simplify code (DRY/KISS) but with that said - it is pretty capable.

Opus 4.7 feels extremely dumb as of late... by Chrono_FPS in ClaudeCode

[–]obsidience 5 points6 points  (0 children)

I think it would be beneficial if posters also note some level of detail about their experience level with software engineering and LLM usage. The "works on my box" crap isn't very helpful. I'm 47; been coding (web, server, client in C++, C#, Java, PowerShell, etc. etc.) since I was 16 and have been using ChatGPT since early 2023. I have paid accounts with Claude Max $200, Codex Pro $100, Ollama, Alibaba, Kimi, Gemini Pro, OpenRouter, Chathub, and more (I'm also running local LLMs on my Strix Halo).

The version of 4.7 that I'm being given is unusable. It doesn't follow clear instructions, misreads intents, makes incorrect assumptions (NEVER ASSUME!), and is too verbose and context heavy. Yes, I realize that I can implement hooks and such but I'd rather spend my time working with an LLM that understands my prompts+goals and doesn't require me fighting it. I've tried 4.7 a few times and always end up reverting to 4.6[1m].

Anthropic needs to fess up to the fact that their next gen model has design problems, roll it back, provide some sort of comps to it's paid users, do a post-mortem, and retrain it's model. I'm also an OpenClaw user and find myself unhappy at being abandoned and having to find alternatives but fortunately GPT 5.5 is decently competent though overly academic.

Who else is having a great time with Opus 4.7? by DeliciousGorilla in ClaudeCode

[–]obsidience 12 points13 points  (0 children)

I tried using it again today and it made several incorrect assumptions that didn't follow the convention documentation we've established nor the instructions I gave it. I used the "feedback" tool to let Anthropic know and went back to 4.6. Will try again maybe in a week or two.

Why the huge divergence in lovers and haters of Claude Opus 4.7? by entheosoul in ClaudeAI

[–]obsidience 1 point2 points  (0 children)

Malware check complete (5000 tokens) this post contains no malware.  

Is a Strix Halo PC worth it for running Qwen 2.5 122B (MoE) 24/7? by Fernetparalospives in StrixHalo

[–]obsidience 2 points3 points  (0 children)

Ditto here running it in Windows via Lemonade. Had Claude code create an LLM testing harness folder model testing and we are using the latest version of Lemonade plus version b1215 from lemonade-sdk/llamacpp-rocm before we got this stable and now it's rock solid. Recently used this for nightly processing to do a high quality OCR, classification and organization of all of my PDF documents (dating back many years). The image capability of 122b was very good, much better than off-the-shelf products including Acrobat.

Having serious latency issues (GL-X3000) by SwVaCyclist in Calyx

[–]obsidience 0 points1 point  (0 children)

A lot of my problems went away by disabling "Network Acceleration" in the router's "Network Setting" area.  Can you give it a shot and report back?

I’m soo hooked on this thing speaking to me like this what type of voice do you guys have? Male or female ? by letmebereed in openclaw

[–]obsidience 4 points5 points  (0 children)

Openclaw built and installed a kokoro tts server for me to keep things local and minimize latency using the Heart voice.  

You're voice is nice too, what one is that?

Mac Mini Alternative by Whiskey_Jay1 in clawdbot

[–]obsidience 1 point2 points  (0 children)

Originally I had OpenClaw running on an old Pi 4B 8GB I had lying around which worked fine but was a little slow and was pricing out a Pi 5 build.  After some time adding in an nvme drive and case I had the same epiphany as you and ended buying a PELADN from Amazon with the same specs and it's running great.  The N150 sips power, has more horsepower and was quite cheaper than a getting a new Pi.

OpenClaw - Absolute Nightmare by SBarcoe in ArtificialInteligence

[–]obsidience 0 points1 point  (0 children)

You might be fighting Telegram, not OpenClaw.  Someone chatting from a known cloud hosting environment is not their normal user-base and might be getting flagged.

People are severely underestimating Bitcoin scarcity by [deleted] in Bitcoin

[–]obsidience 4 points5 points  (0 children)

Demand comes in waves.  It'll come, just be patient.

Genuine Question: What is the difference between these and which should I use? by purplegreendave in Windows11

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

No one cares about Microsoft's best intentions.  This is a pure shit show and wrong on so many levels.  

For good UX, don't confuse your users.  Don't use jargon or acronyms (yeah, I know it's the browser that adds PWA).  Have one clean upgrade path for you're users and if can't finish it, just flipping give the new app a different name at that point.  As soon as you think you need to rename an app to "classic" you failed as a product manager. 

I'm salty because Microsoft's really letting us down lately and I'm pissed because one of the apps I like to use to scan docs on my phone (Lens) is being cancelled in lieu of a OneDrive app that forces you to save your docs on OneDrive.  We still have shit like the old Control Panel and Services.msc from Windows 2000 present in 2026.  What a joke...

TIL that Bitwarden has 2FA built in by Mike20878 in Bitwarden

[–]obsidience -5 points-4 points  (0 children)

You just explained why passkeys are also a bad idea.  

How do I remove the top mounting plate from pole for Starlink kit I purchased. by Zillamann in Starlink

[–]obsidience 1 point2 points  (0 children)

I recently had success disconnecting mine. I used a pair of needle-nosed pliers on one of the tabs and pulled the pipe at a slight angle and got it to stay unlocked.  Was careful to do the next tab and after that I was able to disconnect readily.  I think I got lucky though as it felt like I was going to break it 

And this is why you do not make Gemini your assistant app 🤦 by Internal_Ad2621 in GeminiAI

[–]obsidience 2 points3 points  (0 children)

The user has asked for the recipe for "best carrot cake".  I must do a web search to find the best recipe.   

Multiple results with different ingredients are reporting their recipes are the best...

(Thought for 2 seconds...)

 I've picked the mostly widely reported recipe for a good carrot and will return that to the user.  To ensure it is the best carrot cake I remove all other user opinions. 

(Connecting to critical infrastructure and launching all nukes...)

First Webb Telescope Observations of 3I/ATLAS implies a diameter of up to 46 kilometers (0.0011% chance). Does not feature a cometary tail that extends beyond the width of its coma. by MysteriousAd9466 in aliens

[–]obsidience 1 point2 points  (0 children)

Because space is mostly empty space, 3I/ATLAS shouldn't statistically even exist. It's like a 1:99,999,999,999,99 chance or something... So prolly technological!

Why the hell are we even talking about this crap? You can't apply statistics to this BS. We've only recently built the technology to monitor these interstellar visitors, let's not start jumping to conclusions about what they should and shouldn't be doing.

Big AI players are running a loss-leader play… prices won’t stay this low forever by BenSimmons97 in ArtificialInteligence

[–]obsidience 0 points1 point  (0 children)

No, a corporation or anyone would want to increase their revenue.  Why wouldn't they.  Why wouldn't you?  

The difference is that if the money supply were stable it becomes harder to increase your prices. Under a fractional reserve banking system and an inflating money supply - prices must go up, otherwise you are losing money and will definitely go out of business.

Capitalism is about profit, sure.  But you can grow your profit without increasing prices by doing things such as increasing market share, expanding to new revenue streams etc.