1

Add discord bots to website

This commit is contained in:
Evan Pratten 2021-11-30 12:58:19 -05:00
parent 3ff44a9786
commit fe2c55721b
5 changed files with 74 additions and 0 deletions

View File

@ -18,6 +18,7 @@ As my friends know very well, I do *a lot* of things. This section exists to kee
- Software Development
- [Games](/hobbies/software/games)
- [Competitive Programming](/hobbies/software/competitive-programming)
- [Discord Bots](/hobbies/software/discord-bots)
- Graphics Pipeline
- Web Development
- Control Systems

View File

@ -0,0 +1,55 @@
---
title: Discord Bots
---
With Discord being my most used chat platform, I commonly find myself build bots of various size to extend the functionality of various servers. The following are some notable bots I've built. These are all built specifically for groups of people, and include features "outsiders" may find useless or annoying.
## Benson
**Benson** is a Discord bot built for a large group of students at Sheridan College called *Res 3*. The bot has a variety of features, all specifically built around inside jokes, and a few utility commands for managing a server of over 100 people. This bot is *not* available for public use, but is open source.
{{ github(repo="res-3/benson") }}
## RenameBot
**RenameBot** is a custom Discord bot that lives on a server where all members have admin privileges. Due to the way we have configured permissons on this server, some users cannot change eachother's nicknames (we like to rename eachother after quotes we say).
The solution to this is to create a bot (**RenameBot**) that has higher permissons than all server members. **RenameBot** then acts as a nickname change broker for all users. Usage is a simple *slash command*:
```text
/rename @user <Name>
```
This bot is open source, and available for use on your own servers. Check out the code.
{{ github(repo="homie-pile/rename-bot") }}
## *HACKERMAN*
***HACKERMAN*** is a bot built for a few programming-related servers I am a member of. The bot contains a few joke functions, and some utilities including:
- DNS and rDNS lookups
- Internet LookingGlass functionality
- Text-to-Image conversion
- Minecraft server status checking
- Discord debugging commands
- IETF RFC reference
- GitHub and GitLab snippet embedding
- various joke commands
The source code is available on GitHub.
{{ github(repo="nwnd/hackerman") }}
## Tiny Audio Bot
**Tiny Audio Bot** is a custom YouTube music bot for a few Discord servers. This bot was built to show {{mention(user="LuS404")}} and {{mention(user="SNOWZ7Z")}} how to develop a simple bot in Rust. This music bot has two extremely simple commands:
```text
!play <URL>
!fuckoff
```
The source code is available on GitHub:
{{ github(repo="ewpratten/tab") }}

View File

@ -137,3 +137,15 @@ ul {
width: fit-content;
margin: auto;
}
.zola-github-card {
border-radius: 5px;
padding-top: 5px;
padding-bottom: 1px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
transition: all 0.1s ease 0s;
&:hover{
box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 15px;
}
}

View File

@ -0,0 +1,5 @@
<div class="zola-github-card" >
<a href="https://github.com/{{repo}}">
<img src="https://opengraph.githubassets.com/1/{{repo}}" alt="GitHub: {{repo}}">
</a>
</div>

View File

@ -0,0 +1 @@
<a href="https://github.com/{{user}}"><strong>@{{user}}</strong></a>