Skip to content
View DCCoder90's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro

Block or report DCCoder90

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
DCCoder90/README.md

Hi, I'm DCCoder!

Typing SVG


My name is Ernest Mallett. I am a Principal Engineer working at Elsevier in Submissions. Formerly I have been a C# development instructor, Lead Developer, Team Lead, Sr. Engineer, and other positions with other companies. I have been programming since I was 8 years old, starting with Basic and working my way up. My first love was PHP, developing websites and data collection interfaces in my teenage years.

DCCoder StackOverflow

DCCoder's streak

👨‍💻 Programming languages

Powershell Bash C# CSS Dart HTML Java JavaScript LaTeX NodeJS PHP Python SASS SQL TypeScript Rust Go

🧰 Frameworks and libraries

Arduino Bootstrap GitHub Actions Electron Flutter GitHub Actions JUnit Core (.Net) Keras Material Design X-Unit React Wordpress WPF (.Net)

🗄️ Databases and cloud hosting

AWS Azure MongoDB MySQL Oracle SQLite SQL Server Neo4j DynamoDB

💻 Software and tools

Adobe Android Studio Android Arch Linux Audacity Brave Codepen Git Google Sheets Insomnia Jupyter Postman Stack Overflow Visual Studio Code Jetbrains Terraform Vault

📂Documentation

GitHub Pages Confluence Markdown Mermaid Notion Android JavaDoc Obsidian Joplin

Profile modules supplied by github-readme-stats

Pinned Loading

  1. home-net home-net Public

    A repo for the terraform config of my home-lab

    HCL

  2. dengine dengine Public

    A simple 2D game engine written in C++

    C++ 1

  3. blazorhotload blazorhotload Public archive

    A demo of how Blazor components can be loaded into an application at runtime.

    C# 5 2

  4. Vidlapse Vidlapse Public archive

    Unity asset to allow in-game Time-lapse video creation

    C# 1

  5. ptm ptm Public archive

    PHP Task Manager

    PHP 2

  6. Convert IEnumerable to IAsyncEnumera... Convert IEnumerable to IAsyncEnumerable It has come to my attention that this is at the top of google search results. Before attempting to use this please read the comments below. This is old, and outdated. The comments contain better solutions. TL&DR: use System.Linq.Async's ToAsyncEnumerable()
    1
        public static class AsyncEnumerableExtensions
    2
        {
    3
    
                  
    4
            public static IAsyncEnumerable<TResult> SelectAsync<T, TResult>(this IEnumerable<T> enumerable,
    5
                Func<T, Task<TResult>> selector)