I have multiple markdown files, how can I create an epub in linux with each mardown file as a chapter?
5mon 24d ago in sharegpt@reddthat.comPieFed 1.4 is released - emoji, federated stackoverflow and AI content filters
5mon 26d ago in piefed_meta@piefed.social from codeberg.orgThis 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.comBest ways to keep feet warm while sitting at a desk for long hours?
5mon 29d ago in PumpkinDrama@reddthat.comluddite
I'm hearing my phone's speaker even when the Bluetooth earphones are connected.
5mon 29d ago in androidWhy do you think voting is or isn't important?
5mon 1h ago in asklemmy@lemmy.mlWake up sheeple: you finally admit MSM lies about Palestine… but I’m still “crazy” for JFK and 9/11?
5mon 6h ago in politicaldiscussionThe government only released a modeled video and a book to prove their story why should anyone bother with something that's clearly fake.
Wake up sheeple: you finally admit MSM lies about Palestine… but I’m still “crazy” for JFK and 9/11?
5mon 7h ago in PumpkinDrama@reddthat.comFirst time I hear it outside r/conspiracy.
AO3 Bookmark Counter Script
5mon 2d ago in fanfiction@literature.cafe from chatgpt.comAO3 Bookmark Counter Script
5mon 2d ago in PumpkinDrama@reddthat.com from chatgpt.comChina to cover all out-of-pocket childbirth expenses
6mon 4d ago in world from www.semafor.comThis 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's the worst you've heard from the Cristian church?
6mon 6d ago in asklemmy@lemmy.mlWhat open-source Android apps should people know about?
6mon 14d ago in opensource@lemmy.ml from lemmy.mlMaybe don't stick your nose where it isn't asked, you're not a mod here.
create a folder in linux with symlinks to all recently accessed files
2y 7mon ago in sharegpt@reddthat.comhttps://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"


