Skip to content

Instantly share code, notes, and snippets.

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

Maxime Rouiller MaximRouiller

🏠
Working from home
View GitHub Profile
@MaximRouiller
MaximRouiller / Program.cs
Last active March 27, 2024 22:45
GitHub API access with Personal Access Token using C# HttpClient and .NET Core
public class Program
{
public static void Main(string[] args)
{
Task.WaitAll(ExecuteAsync());
Console.ReadLine();
}
public static async Task ExecuteAsync()
{
@MaximRouiller
MaximRouiller / UrlToAzureStorage.py
Last active January 10, 2024 04:26
Automatically download files to Azure Blob Storage using Copy From URL API with Python
import os
from azure.storage.blob import BlobServiceClient, BlobClient, ContainerClient
from datetime import datetime
from urllib.parse import urlparse
# Required package: azure-storage-blob
# API Docs: https://docs.microsoft.com/en-us/rest/api/storageservices/copy-blob-from-url
now = datetime.now()
connection_string = os.getenv('AZURE_CONNECTION_STRING')
@MaximRouiller
MaximRouiller / Program.cs
Last active January 17, 2023 02:58
Automatically download files to Azure Blob Storage using Copy From URL API with C#
using Azure.Storage.Blobs;
using System;
using System.IO;
using System.Threading.Tasks;
namespace ConsoleApp2
{
class Program
{
// Required .NET Package: Azure.Storage.Blobs version >=12
@MaximRouiller
MaximRouiller / UpdateModifiedDateForGitRepository.ps1
Last active August 23, 2022 15:36
Updates all the files modified date of a local clone of a git repository to reflect their actual last commit date
# Synchronously
git ls-tree -r --name-only HEAD | foreach { (Get-Item $_).LastWriteTime = [DateTime]::Parse("$(git log -1 --format="%ad" --date=iso8601 -- $_)") }
# Asynchronously
git ls-tree -r --name-only HEAD | ForEach-Object -Parallel { (Get-Item $_).LastWriteTime = [DateTime]::Parse("$(git log -1 --format="%ad" --date=iso8601 -- $_)") }
@MaximRouiller
MaximRouiller / WhatsNewBotFunctions.cs
Last active June 14, 2022 23:59
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
string githubToken = Environment.GetEnvironmentVariable("GitHubKey", EnvironmentVariableTarget.Process);
const string owner = "dotnet";
string user = "WhatsNewBot";
string repo = "docs";
var date = DateTime.UtcNow.ToString("yyyyMMdd-HHmmss");
string branchName = $"whats-new-{date}";
string filename = $"{DateTime.UtcNow:yyyy-MM-dd}.md";
var client = new HttpClient();
@MaximRouiller
MaximRouiller / FunctionNames.txt
Last active October 25, 2021 14:14
Visual Studio .NET Azure Functions Regex - Name Convention
search:
\[FunctionName\("(\w+)"\)\]
replace:
[FunctionName(nameof($1))]
@MaximRouiller
MaximRouiller / copyUrlToAzureStorage.js
Created December 3, 2020 21:32
Automatically download files to Azure Blob Storage using Copy From URL API with node
// Required Package: @azure/storage-blob and dotenv
// API Docs: https://docs.microsoft.com/en-us/rest/api/storageservices/copy-blob-from-url
require('dotenv').config();
const { BlobServiceClient } = require('@azure/storage-blob');
const path = require('path');
let now = new Date();
const AZURE_STORAGE_CONNECTION_STRING = process.env.AZURE_STORAGE_CONNECTION_STRING;
@MaximRouiller
MaximRouiller / feeds.txt
Created July 6, 2020 14:10
.NET focused blog feeds
http://10printhello.com/rss/
http://beyond-code.com/rss.xml
http://blog.bloomca.me/atom.xml
http://blog.davidebbo.com/atom.xml
http://blog.galasoft.ch/posts/feed/
http://blog.maartenballiauw.be/syndication.axd
http://blog.paranoidcoding.com/atom.xml
http://cecilphillip.com/rss/
http://codebetter.com/blogs/MainFeed.aspx
http://daveaglick.com/feed.rss
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"resourceNameSuffix": {
"defaultValue": "deployment",
"type": "String"
}
},
"variables": {
$resourceGroupName = "rgServiceFabricCluster"
$location = "eastus"
# Create our resource group
az group create --location $location --name $resourceGroupName
# Create our KeyVault Standard instance
az keyvault create --name my-sfcluster-keyvault --location $location --resource-group $resourceGroupName --enabled-for-deployment
# This command export the policy on file.