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

Organizations

@microsoft @MSDEVMTL

Block or report MaximRouiller

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

Pinned Loading

  1. MaximeRouiller.Azure.AppService.EasyAuth Public

    .NET Core integration of Azure AppService EasyAuth

    C# 54 9

  2. blog.decayingcode.com Public

    Without coffee, my code quality is like zombies. It decays.

    Stylus 2 5

  3. RedditEmotionAnalyzer Public

    Takes the first 200 comments out of a Reddit Thread and generate an average emotion for a Reddit post.

    C# 10 4

  4. GitHub API access with Personal Acce...
    1
    public class Program
    2
    {
    3
        public static void Main(string[] args)
    4
        {
    5
            Task.WaitAll(ExecuteAsync());
  5. In C#, create a fork, sync its maste...
    1
    string githubToken = Environment.GetEnvironmentVariable("GitHubKey", EnvironmentVariableTarget.Process);
    2
    
                  
    3
    const string owner = "dotnet";
    4
    string user = "WhatsNewBot";
    5
    string repo = "docs";
  6. Automatically download files to Azur...
    1
    using Azure.Storage.Blobs;
    2
    using System;
    3
    using System.IO;
    4
    using System.Threading.Tasks;
    5