PumpkinDrama

PieFed 1.4 is released - emoji, federated stackoverflow and AI content filters

5mon 26d ago in piefed_meta@piefed.social from codeberg.org

This should be a user setting. Finding an instance is already hard enough with all the politicking and bans between instances. It shouldn’t be made even harder by turning these into instance-level settings instead of user-level ones.

I think PieFed should allow disabling down-votes. I genuinely dislike seeing down-votes, especially on my own content. I behave very differently on platforms like Bluesky that only have like/repost, compared to Lemmy, where saying something unpopular results in down-votes that feel like a punch in the gut. In real life, if someone disagrees, they either tell you or disengage. On PieFed, down-votes go further, they actively suppress your voice so others don’t see it. That is effectively what down-votes accomplish, and I don’t think it leads to healthier discussion.

Using Anki Effectively Alongside Programming Katas

5mon 28d ago in PumpkinDrama@reddthat.com

luddite

Why do you think voting is or isn't important?

5mon 1h ago in asklemmy@lemmy.ml

The government only released a modeled video and a book to prove their story why should anyone bother with something that's clearly fake.

First time I hear it outside r/conspiracy.

AO3 Bookmark Counter Script

5mon 2d ago in fanfiction@literature.cafe from chatgpt.com

AO3 Bookmark Counter Script

5mon 2d ago in PumpkinDrama@reddthat.com from chatgpt.com

China to cover all out-of-pocket childbirth expenses

6mon 4d ago in world from www.semafor.com

This seems like overcompensating for the child limit. Are they going to be like a yoyo, swinging from one extreme to the other until they find a balance, like all things should be?

Or maybe somewhere where you don't have to spend half of your salary paying rent? Like China.

Imperialist shill.

What open-source Android apps should people know about?

6mon 14d ago in opensource@lemmy.ml from lemmy.ml

Maybe don't stick your nose where it isn't asked, you're not a mod here.

https://lemmy.ml/comment/5593416

#!/bin/sh
# Select a file with fzf from a database sorted by frecency and open it using
# xdg-open. frece can be found at https://github.com/YodaEmbedding/frece

DB_FILE=${FRECE_FILES_DB:-$HOME/.cache/frecent-files.csv}
item=$(frece print "$DB_FILE" | fzf --tiebreak=index --scheme=path)

[ -z "$item" ] && exit 1
frece increment "$DB_FILE" "$item"

xdg-open "$item"

#!/bin/sh
# Update frece database

DB_FILE=${FRECE_FILES_DB:-$HOME/.cache/frecent-files.csv}
tmp_file=$(mktemp)
fd -H . ~ > "$tmp_file"  # use ~/.fdignore file to exclude certain dirs
frece update "$DB_FILE" "$tmp_file" --purge-old
rm "$tmp_file"