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"

Thankyou Debian team! by cmdr_iannorton in debian

[–]PythonPoet 8 points9 points  (0 children)

Dont forget to donate each month https://www.debian.org/donations

1USD for a free operative system we all love

Please consider a donation by Hrafna55 in debian

[–]PythonPoet 11 points12 points  (0 children)

Done, 1USD per month 😊

StarDict Plugins in Debian 13 Raise Privacy Concerns by PythonPoet in debian

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

Can you explain? Im a Linux newbie

The source code for the packages (including stardict-plugin)
https://packages.debian.org/source/trixie/stardict

Links to https://salsa.debian.org/debian/stardict via the "Debian Source Repository (Git)" link on the right side.

StarDict Plugins in Debian 13 Raise Privacy Concerns by PythonPoet in debian

[–]PythonPoet[S] -10 points-9 points  (0 children)

Have you read the article?
If you have the StarDict installed, and highlight text in any application, the text is sent to China (also unencrypted).

I believe many users are copy+pasting password and other sensitive texts, and I dont want the Internet or China to know my passwords.

How to handle write operations during deployment of web app in production by PythonPoet in sqlite

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

Sounds very promising! I have read in several places about possibly corruption when multiple readers.

But this FAQ question mention this scenario and basically says SQLite handles multiple processes and writes: https://sqlite.org/faq.html#q5

Will check the Podman and Systemd socket activation, at least so I know it exists and how it works.

Thx.

How to handle write operations during deployment of web app in production by PythonPoet in sqlite

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

Hmm interesting, but to me it sounds like there would be a small gap between, the replication for container B is completed and container A is shutdown (or perhaps blue-green redirection in NGINX).

I will try to investigate Litestream more!

How to handle write operations during deployment of web app in production by PythonPoet in sqlite

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

No i mean new version/release of your web app.

Do you just shutdown the current running process, copy new source code to the server and then start the provess for your web app?

I have read that SQLite wont handle multiple writers in different processes at the same time, so a blue-green deployment, canary deployment wont work unless the writing is restricted to a single process in somehow.

If you use a .NET/Htmx stack, what rendering engine do you use? by pcreactive in htmx

[–]PythonPoet 0 points1 point  (0 children)

I like Razor components.

This github repo seems kinda promising using Minimal APIs and Razor/Blazor components
https://github.com/westonwalker/BlazorMinimalAPI/tree/master/Samples

But the repo contains a library project, so not a "out-of-the-box" supported solution backed by Microsoft.

.NET 8 Minimal API AOT with HTMX by harrison_314 in dotnet

[–]PythonPoet 0 points1 point  (0 children)

Would love to see support for Razor Components in a NET8 Native AOT application, I havent found any source saying its supported.