portfolio_web/jirikarlik/templates/portfolio/pi1.html

53 lines
3.2 KiB
HTML
Raw Normal View History

2024-08-13 14:30:01 +00:00
{% extends "portfolio_item.html" %}
{% block desc%}
<div class="row justify-content-between gy-4 mt-4">
<div class="col-lg-8" data-aos="fade-up">
<div class="portfolio-description">
<h2>RandBot - Discord Bot Randomizer</h2>
<p>
RandBot is a versatile Discord bot that allows users to create and manage lists, and randomly select items from those lists. Developed using <strong>Python</strong> and the discord.py library, RandBot leverages <strong>MongoDB</strong> for persistent data storage. Initially designed for use in a Call of Duty: Warzone Discord server, this bot can be adapted for various use cases where randomized selection from user-generated lists is needed.
</p>
<h3>Features:</h3>
<ul>
<li><strong>Create Lists:</strong> Users can create custom lists using the <code>?list</code> command. Each list is stored in a MongoDB database.</li>
<li><strong>Random Selection:</strong> The bot can return a random item from a specified list using the <code>?random</code> command.</li>
<li><strong>Delete Lists:</strong> Lists can be deleted with the <code>?delete</code> command.</li>
<li><strong>Additional Commands:</strong> The bot also supports fun commands like <code>?8ball</code> and <code>?yesno</code> for random answers, and <code>?commands</code> to display all available commands.</li>
<li><strong>Daily Maintenance:</strong> A daily task cleans up old lists from the database to ensure efficient storage management.</li>
</ul>
<h3>Project Status:</h3>
<p>The project is currently discontinued due to a lack of interest, but it remains a functional and illustrative example of a Discord bot integrated with a NoSQL database. The bot can still be self-hosted and can be invited to other servers.</p>
<div>
<h3>CUDA Stresser Code Overview</h3>
<iframe src="https://git.jirikarlik.com/karlji/Discord_RandBot"
width="100%" height="600px" frameborder="0">
Your browser does not support iframes.
</iframe>
</div>
</div>
</div>
<div class="col-lg-3" data-aos="fade-up" data-aos-delay="100">
<div class="portfolio-info">
<h3>Project information</h3>
<ul>
<li><strong>Category</strong> Chatbot Development</li>
<li><strong>Technology</strong>
<ul>
<li><span><i class="fab fa-python"></i> Python</span></li>
<li><span><i class="fab fa-discord"></i> Discord.py</span></li>
<li><span><i class="fas fa-database"></i> MongoDB</span></li>
<li><span><i class="fas fa-cogs"></i> JSON (Data Serialization)</span></li>
</ul>
</li>
<li><strong>Project date</strong> April, 2021</li>
<li><strong>Project URL</strong> <a href="https://git.jirikarlik.com/karlji/Discord_RandBot" target="_blank" rel="noopener noreferrer">https://git.jirikarlik.com/karlji/Discord_RandBot</a></li>
<li><a href="https://git.jirikarlik.com/karlji/Discord_RandBot" target="_blank" rel="noopener noreferrer"class="btn-visit align-self-start">Visit Website</a></li>
</ul>
</div>
</div>
</div>
{% endblock %}