@jl@campground.bonfire.cafe

Niboe team member

Hello people,

got here via via, I am interested into communities interacting and sharing wisely information in case of remote areas, small economical value flows and regeneration.

alice boosted

Would you like to discover how it feels to navigate a social network devoid of avatars? If so, head to Settings -> Preferences -> Appearance, and enable the Hide Avatar option 🥸.

@ivan This is just my humble contribution to the commons anyway, you've laid out all the work for the last three years! Thank you for this opportunity!

It could be worth telling that the second screenshot was different from the first one. So there’s another bug, which is that you only got the first one, duplicated, with the image description of the second screenshot only.

@Oceane thanks, fixed in the next release 😊

Third bug report: you’ve probably noticed a few CSS glitches (1), but there’s also one when replying to code-formatted text (2).

It could be worth telling that the second screenshot was different from the first one. So there’s another bug, which is that you only got the first one, duplicated, with the image description of the second screenshot only.

Please tell me how I could improve my bug reports.

Btw I was using Firefox with uBlock Origin and Cozy Pass.

EDIT : I don’t think this bug would be platform-specific, but I’m using Linux Mint with Cinnamon. I’m running Firefox mint-001 120.0.1.

Third bug report: you’ve probably noticed a few CSS glitches (1), but there’s also one when replying to code-formatted text (2).

Fourth bug report: please note that I’ve added descriptions for both screenshots.

Second bug report: I tried to insert both code snippets in the same post but I couldn’t add anything after the code part in the first post. There wasn’t any newline after this portion. I’d like to maybe have a newline automatically inserted after a code block, if there’s none, when cycling with tab ?

Third bug report: you’ve probably noticed a few CSS glitches (1), but there’s also one when replying to code-formatted text (2).

Second bug report: I tried to insert both code snippets in the same post but I couldn’t add anything after the code part in the first post. There wasn’t any newline after this portion. I’d like to maybe have a newline automatically inserted after a code block, if there’s none, when cycling with tab ?

2/3

(defun microblog ()
"Microbloguer avec toot(1) et twtxt !"
(interactive)
(let ((message (read-from-minibuffer "Message : ")))
(shell-command
(concat "sh ~/.emacs.d/microblog/microblog.sh "
(shell-quote-argument message)
))))

First bug report: of course, both were meant as code (using the three backticks).

I’ve developed this, translate as needed: 1/3

#! /usr/bin/sh

if test $(echo $1 | wc -c) -le 140; then
/usr/bin/toot post "$1" &&
/home/oceane/.local/bin/twtxt tweet "$1" ||
echo "Je n’ai pas pu poster sur ActivityPub, je ne posterai donc pas non plus sur twtxt !";
else echo "Ce message dépasse 140 signes et ne peut pas être posté !";
fi

2/3

(defun microblog ()
"Microbloguer avec toot(1) et twtxt !"
(interactive)
(let ((message (read-from-minibuffer "Message : ")))
(shell-command
(concat "sh ~/.emacs.d/microblog/microblog.sh "
(shell-quote-argument message)
))))

I’ve developed this, translate as needed: 1/3

#! /usr/bin/sh

if test $(echo $1 | wc -c) -le 140; then
/usr/bin/toot post "$1" &&
/home/oceane/.local/bin/twtxt tweet "$1" ||
echo "Je n’ai pas pu poster sur ActivityPub, je ne posterai donc pas non plus sur twtxt !";
else echo "Ce message dépasse 140 signes et ne peut pas être posté !";
fi