Skip to content
View iluvadev's full-sized avatar
🍻
Trying to live
🍻
Trying to live
Block or Report

Block or report iluvadev

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
iluvadev/README.md

"Buy Me A Coffee"

iluvadev's GitHub stats trophy GitHub Streak

Pinned

  1. PocketBaseClient PocketBaseClient Public

    C# client to interact with a particular PocketBase application: an ORM mapped to your PocketBase server. [This project is in active development. The things described below could change]

    C# 27 6

  2. XstReader XstReader Public

    Forked from Dijji/XstReader

    XstReader is an open source viewer for Microsoft Outlook’s .ost and .pst files (also those protected by unknown password). You can view and inspect all content and export messages and attachments (…

    C# 88 7

  3. ConsoleProgressBar ConsoleProgressBar Public

    Simple and versatile ProgressBar for Console Applications, written in C#, .Net Standard 2.1. Progress and/or Marquee, with estimated remaining time, custom layouts, dynamic text, colors and more.

    C# 12 3

  4. SimpleRandom-ThreadSafe SimpleRandom-ThreadSafe Public

    Multi type functions to work with Random numbers in a thread-safe way, in C# .Net Core 2.0. In one file to easily include in your projects

    C# 4

  5. Execute actions without block entire... Execute actions without block entire application, Example: NonBlockingAction.Add(() => Console.WriteLine(line));
    1
        public static class NonBlockingAction
    2
        {
    3
            private static BlockingCollection<Action> _Queue = new BlockingCollection<Action>();
    4
    
                  
    5
            static NonBlockingAction()