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

Organizations

@microsoft @MSDEVMTL
Block or Report

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

  1. MaximeRouiller.Azure.AppService.EasyAuth MaximeRouiller.Azure.AppService.EasyAuth Public

    .NET Core integration of Azure AppService EasyAuth

    C# 54 9

  2. blog.decayingcode.com blog.decayingcode.com Public

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

    Stylus 2 6

  3. RedditEmotionAnalyzer 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... GitHub API access with Personal Access Token using C# HttpClient and .NET Core
    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... In C#, create a fork, sync its master with an upstream , create a branch, commit a file, then finally create a PR on the upstream
    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... Automatically download files to Azure Blob Storage using Copy From URL API with C#
    1
    using Azure.Storage.Blobs;
    2
    using System;
    3
    using System.IO;
    4
    using System.Threading.Tasks;
    5