mstdn.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A general-purpose Mastodon server with a 500 character limit. All languages are welcome.

Administered by:

Server stats:

15K
active users

#cli

17 posts17 participants0 posts today

Ok #vibecoding fans.. here's Reason #76 for why #AI #codebots aren't ready to supplant us #developers.

Working on a #CLI that manipulates files; unhandled exception appears! Its late so I paste the exception+ #stacktrace into my notes2self.txt, go to bed.

Today, remember the #exception, go handle/fix/trap it. Still drops exception. WTF. Tearing hair out, I keep prompting Copilot, changing the model used, I have refactored whole swaths of code following its advice. Getting nowhere.

1/

Here is a small Docker CLI plugin I did, that launches a Vagrant-managed VM using Parallels on macOS and sets up a Docker context for it. Useful if you want a lightweight, no-surprises alternative to Docker Desktop — works on Intel & ARM, with binfmt for cross-arch builds.

"docker vagrant up" and you're ready to go.

github.com/fpatz/docker-vagrant

Automate the provisioning of a docker daemon with Vagrant and Parallels - fpatz/docker-vagrant
GitHubGitHub - fpatz/docker-vagrant: Automate the provisioning of a docker daemon with Vagrant and ParallelsAutomate the provisioning of a docker daemon with Vagrant and Parallels - fpatz/docker-vagrant

Is anyone aware of a CLI tool (Python, PHP, bash, whatever) that'll let me download the FULL contents of a Blogger blog (Blogspot), including media and metadata to json or xml? 🤔

It'd be nice if the tool included support for private/non-public blogs too (I realize it needs to handle authentication then).

Today I made some adjustments to my calculation function for bash:

```
┌ sebastian@suse:0 ~/.bashrc.d] ✔ (master)
└ $ sed '/= ()/,/^$/!d' calc
function = () {
rechnung=$(printf "%s" "$@")
echo "scale=${2:-2} ; ${rechnung}" | \
sed -E -e '{s/,/./g; s/·/*/g' -e "s/^|$/\'/g}" | \
xargs -I{} echo {} | bc | sed -r 's/\./,/g;:loop;s|\b([0-9]+)([0-9]{3})\b|\1.\2|g;t loop'
}

┌ sebastian@suse:0 ~/.bashrc.d] ✔ (master)
└ $ = 23,4·43,54
1.018,83
```

#linux#cli#bash

I just published this thing:

gitlab.com/carvilsi/vldpsswrds

vldpsswrdshr: Share credentials CLI, password and optional username and site, using Veilid

This is on a PoC and buggy state, right now and almost it's IWOMM ("It Worked On My Machine", not really, already tested on 3 different linux machines).
Mostly playing around with Veilid and get used to concepts like private route, DHT, etc.

⚠️ Positively do not use for serious credentials sharing unless the version will reach 1.0.0; lots of HSD ("Hic Sunt Dracones" among TODOs and bugs).

GitLabCarvilsi [Char] / vldpsswrdshr · GitLabGitLab.com