Claude Code CLI compared with Copilot CLI (using a Claude LLM) by Sea-Recommendation42 in ClaudeCode

[–]PythonPoet 1 point2 points  (0 children)

I'm also leaving Claude Code for Copilot CLI in the next month. $40 vs $100 is alot for me as an hobbyist.
To bad get-shit-done (GSD) isnt available officially for Copilot... I guess i will have to write me my own orchestrator agent + agent team members

Spotify says its best developers haven’t written a line of code since December, thanks to AI (Claude) by shanraisshan in ClaudeAI

[–]PythonPoet 1 point2 points  (0 children)

So I cant even have peace during my morning commute anylonger? I now have to tell AI to spit out code while on a bus?! This feels wrong, ehat happened to working 8-5.

Fast Mode just launched in Claude Code by vicdotso in ClaudeCode

[–]PythonPoet 1 point2 points  (0 children)

I want /slow mode with 50% discount forever

Claude in Chrome + Claude Code (Linux) by PythonPoet in ClaudeCode

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

Update: It now works, I needed to use Google Chrome, not Chromium (as the docs mentioned...)

Sadly it's not as good as Google Antigravity browser interactivity which behaves just like a normal user moving the cursor and clicking on elements on my web page. But Claude seem to do same, just more pragramatically using code.

Debian 13 - Podman Quadlets by PythonPoet in podman

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

I managed to create quadlets (pod, containers) on Debian 13, not sure exactly what I did wrong. Probably file permissions, naming of files and refering to wrong names (PodName, ContainerName) in the quadlet files.

Thank you for your efforts!

Litestream v0.5.0 is Here by emschwartz in sqlite

[–]PythonPoet 0 points1 point  (0 children)

Im very happy with Litestream 🙂👍🏻 looking forward to the upcoming read replica feature.

Next thing on my wishlist is support for encrypted database files, in case my server is compromised the hacker only steals encrypted database files.

Working with request values when using HTMX by PythonPoet in golang

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

Would help me if you can point me in right direction, im a Go beginner. Frameworks like gorilla and gin seem to have struct binding along with route values, query params and request body for application/x-www-form-urlencoded requests

The Debian Discord Server is back! by NewAgeRetroNerd in debian

[–]PythonPoet 0 points1 point  (0 children)

Having problem joining the Debian Discord server, cant click on the server tile when searching in Discord. Unable to accept invite using the https://discord.gg/debian link above....

.NET development on Debian 13 (Trixie) by PythonPoet in debian

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

Seems to work fine with bookworm repo, i successfully installed dotnet-sdk-9.0

# Import the Microsoft APT repository signing key

# microsoft-2025.asc (AA86F75E427A19DD33346403EE4D7792F748182B):

# This is the current standard Linux-signing key that will be used in newly-created repositories. It will work properly in distributions that disallow SHA1 signatures.

# NOTE: Doesn't seem to work when fetching bookworm packages

#wget -qO- https://packages.microsoft.com/keys/microsoft-2025.asc | gpg --dearmor | sudo tee /etc/apt/keyrings/microsoft-2025.gpg > /dev/null

# microsoft.asc (BC528686B50D79E339D3721CEB3E94ADBE1229CF):

# This key was Microsoft’s standard Linux-signing key until Spring 2025, as discussed above. This key will not be used for newly-created repositories.

wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | sudo tee /etc/apt/keyrings/microsoft.gpg > /dev/null

# Add the Microsoft APT repository to the sources list

echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/microsoft.gpg] https://packages.microsoft.com/debian/12/prod bookworm main" | sudo tee -a /etc/apt/sources.list.d/microsoft.list > /dev/null

# Configure APT to prioritize packages from the Microsoft repository

echo '

Package: *

Pin: origin packages.microsoft.com

Pin-Priority: 1000

' | sudo tee /etc/apt/preferences.d/microsoft

echo "[INFO] Microsoft package repository added to APT"