The remindme bot responds to you after a period of time to remind you about something (e.g. if someone in a post says theyre going to do something after a week and you want to be there for that)
Theres a version of this bot being hosted currently in programming.dev. You can still self host your own if you want to do things like customize it a bit more for your community but its not required. All remindme bots can work simultaneously since its triggered off of mentions as opposed to a command.
Lemmy Piped Link Bot
I’m an open-source bot that comments Piped links when you post/comment a YouTube link.
The AI model has revised your prompt: A detailed digital image representing information through symbols and metaphors. Imagine a highly detailed, glowing data packet elegantly emerging from a robust database portrayed as a complex container of intricate geometric patterns. This shining packet is directed towards a vibrant application symbol, indicating imminent delivery. From the app, the data packet transforms into a dynamic webhook, which is portrayed as an animated hook-shaped symbol. The hook is seen swiftly moving, symbolizing the process of the packet's onward journey through the information superhighway, encapsulating the intricate processes of data transmission and retrieval.
Hallo, dieser Post ist eigentlich hidden, und dient als Merkhilfe was gegenüber feddit.de noch alles fehlt.
Habe ich den Post ausversehen noch irgendwo verlinkt?
Aktuell läuft also nur der RemindMe Bot im Testbetrieb auf einem meiner Server.
Die beiden anderen geannten Bots werden auf lemmings.world (nicht von mir) für die ganze Federation bereitgestellt.
Pingt man den RemindMe Bot wie in diesem Comment an, bekommt der Bot als Daten die comment ID und den Inhalt des Comments.
[
'@RemindMe@feddit.org',
'remind',
'me',
'about',
'this',
'in',
'2',
'minutes'
]
Replying to comment ID 2188774
DB: Added reminder for message (@RemindMe@feddit.org remind me about this in 2 minutes) to database.
Die Daten werden in einer lokalen sqlite DB gespeichert und ein scheduler prüft, ob es Aufgaben zu erledigen gibt, also Zielzeiten erreicht wurde.
Die DB enthält eine Tabelle mit derartigen Einträge:
sqlite> .schema reminders
CREATE TABLE reminders (
id INTEGER PRIMARY KEY AUTOINCREMENT,
post_id TEXT NOT NULL,
parent_id TEXT NOT NULL,
start_timestamp DATETIME NOT NULL,
end_timestamp DATETIME NOT NULL
);
sqlite> select * from reminders;
5|163552|2188954|1727162051324|1727162171324
Am Ende erstellt der Bot die beiden Antworten, wie sie nun z.B. unter dem genannten Comment zu finden sind.
EDIT: Nach Ausführung werden die entsprechenden Rows aus der DB wieder gelöscht.
The AI model has revised your prompt: Two playful otters standing by a wedding arch adorned with flowers and ribbons, set against a peaceful woodland backdrop. One otter is wearing a finely crafted, midnight black tuxedo with a bowtie, radiating gentlemanly charm. The other otter is clad in a majestic wedding dress, glistening in the sunlight, the intricate lacework embellishing the gown while the veil frames her face. Their eyes are brimming with joy, echoing the warmth and excitement of wedding vows.