Skip to content
/ PDQoTD Public

A Perl script to make "question of the day" type posts to Discord via webhooks; mirror of Gitea repo

License

Notifications You must be signed in to change notification settings

ngoomie/PDQoTD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Perl QoTD bot for Discord

Pulls random questions from a database and posts them using Discord webhooks.

Example screenshot

Misc info

Requires DBI and WebService::Discord::Webhook. Find the $url var and change it to have your webhook URL. Run periodically using a cron script or similar. Has been tested on the following operating systems:

  • Fedora (36, 37)
  • Rocky Linux (9)

Please open an issue if you've successfully run it on other operating systems and they'll be added.

Database info

Create a database from the included 'questions.sql' file.

  • id: numerical question ID, autoincrements, don't touch this
  • question: actual question text
  • source: intended to be used for the name of whoever submitted the question, but can be easily altered to display e.g. the website a question was fetched from
  • used: indicates whether a question has been used or not, indended to be either '0' for unused or '1' for used but can be other numbers if you need (i.e. '2' which you assign to questions you want to use but not right now, and you have another tool that will switch them over to '0' at a specified time)
  • when: Unix timestamp indicating when the question was used, just for reference

By default expects a database named questions.sqlite. Has only been tested with SQLite but should theoretically work with other database formats that DBI supports?

About

A Perl script to make "question of the day" type posts to Discord via webhooks; mirror of Gitea repo

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages