Giter Club home page Giter Club logo

disukubot's Introduction

Welcome to my Github Profile, I'm Joel!

  • ๐Ÿ’ป My current focus is C# & Sveltekit
  • ๐ŸŒฑ Currently bringing myself back up to speed after a while away from coding.
  • ๐Ÿ‘ฏ Im always looking to work with other OSS developers.
  • โšก My goal for 2022 is to keep pushing forward and help others do the same.
  • ๐Ÿ“Œ Checkout my pinned repositories for some work I am very proud of.

I'm Draxis#0001, Find Me Here

Discord Banner 3

Languages & Tools:

Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge Generic badge


disukubot's People

Contributors

draxcodes avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

disukubot's Issues

Make the DisukuEmbed more feature rich.

Currently it is missing a few things as listed below. These should ideally be added for use in embed creation to make them more feature rich.

  • Title Avatar
  • TimeStamp
  • Footer Icon

These should be added to the DisukuEmbed Model

public class DisukuEmbed
{
public string Title { get; set; }
public string Description { get; set; }
public string Url { get; set; }
public string Thumbnail { get; set; }
public string ImageUrl { get; set; }
public string Footer { get; set; }
public List<Field> Fields { get; set; } = new List<Field>();
}

They should also be added to the converter

public static Embed ConvertEmbed(DisukuEmbed embed, bool inlineFields = false)
{
var discordEmbed = new EmbedBuilder()
.WithTitle(embed.Title)
.WithDescription(embed.Description)
.WithCurrentTimestamp()
.WithColor(Color.Blue);
if (!string.IsNullOrWhiteSpace(embed.Url)) { discordEmbed.WithUrl(embed.Url); }
if (!string.IsNullOrWhiteSpace(embed.Thumbnail)) { discordEmbed.WithThumbnailUrl(embed.Thumbnail); }
if (!string.IsNullOrWhiteSpace(embed.Footer)) { discordEmbed.WithFooter(embed.Footer); }
if (!string.IsNullOrWhiteSpace(embed.ImageUrl)) { discordEmbed.WithImageUrl(embed.ImageUrl); }
if (embed.Fields.Count != 0)
{
foreach (var field in embed.Fields)
{
discordEmbed.AddField(field.Title, field.Description, inlineFields);
}
}
return discordEmbed.Build();
}

Guild Based Prefixs

Add guild based prefixs to the Guild entity storage.

  • Set
  • Change
  • Remove (Sets it back to mention)

Implement DiscordBotClient Abstraction

Disconnect the Discord Layer from the UI Frontend.

The discord layer of the project should to seperated from the project further so the UI runs independent. Possibly to add a new UI front end.. WPF/UWP who knows....

Add a TODO command.

Simple command that would have an array of string stored in the DB per user.

  • Add TODO items.
  • View.
  • Remove.
  • Mark "In Progress" (Implement Status)
  • Mark Completed

Add Music Functionality

The Music Fnctionality need to be hotswappable between Victoria and Frostbyte

I will use Victoria for now to implement the basic functionality.
When Yucked starts to impelement some playback functionality in Frostbite, I will swap over.

Refactor MongoDB.

Make the MongoDB interface more generic.
Remove the Discord profile info from the DB.

Implement Todo into the DB ref #10

Beutify the Quotes Command Ouput

Currently the quote command is limmited by the state of the DisukuEmbed entity. Ideally this should be completed once the below referenced issue is completed.

Ref #33

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.