GithubHelp home page GithubHelp logo

seeloewen / seeloewenlib Goto Github PK

View Code? Open in Web Editor NEW
0.0 0.0 0.0 36 KB

Simple C# Library with useful code mainly used in software by Seeloewen

License: GNU General Public License v3.0

C# 100.00%
library seeloewen

seeloewenlib's Introduction

๐Ÿ™‹ About Me...

I'm Louis, a hobby developer from Germany. I work on a bunch of different projects at the same time but I'm mostly known for the Random Item Giver Datapack. You should also check out my other projects though, they are great as well! Because of school, I'm not as active as I used to be but I'm still trying to get out some updates every now and then.

๐Ÿ”ง Projects that I'm working on...

My main project is currently the Random Item Giver Datapack and the Random Item Giver Updater.

My side projects are the Random Item Giver Updater Legacy, Seeloewen Sync, Seeloewen Shutdown and SeeloewenLib.

๐Ÿ’ป Environments that I'm familiar with...

.NET Markdown Notepad++ Visual Studio Code Visual Studio C# Scratch Windows

๐Ÿ“Š My Statistics...

Seeloewen's GitHub Stats

seeloewenlib's People

Contributors

seeloewen avatar

Watchers

 avatar

seeloewenlib's Issues

Delay() function

This function will allow you to schedule a function to run after a certain amount of seconds. It will do this by creating a timer and setting the timer tick rate to the given seconds. The function you've scheduled will then be run once.

The function will most likely look somewhat like this:

public void Delay (int seconds, action function)
{
     Timer tmr = new Timer();
     tmr.Interval = seconds;
     tmr.Tick+- ...
     //And so on...
}

Not sure how I'll work with the timer there, we'll see.

Release Roadmap

Things to do until release:

  • Add some useful tools
  • Add license
  • Get page requirements in Wizard to work

Add optional warning message when clicking on back/continue to wizard

For some pages, it would be great to have a warning when going back or continuing, because the user might lose progress made or something similar. This warning will probably be a yes/no messagebox.

Most likely implementation in class WizardPage:

bool hasBackWarning;
bool hasContinueWarning;
string backWarning;
string continueWarning;

Allow multiple requirements for wizard

The wizard does currently only allow you to add one requirement. Adding a list of requirements that all get checked before continuing would solve this issue. Each requirement should also have its own error message.

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.