Skip to content

Instantly share code, notes, and snippets.

View sredman's full-sized avatar

Simon Redman sredman

View GitHub Profile
@sredman
sredman / program.cs
Created August 19, 2020 18:07
A minimum-viable-reproduction of a StackOverflowException in Microsoft.Azure.Storage.Blob's CloudBlockBlob.UploadFromStream
using Microsoft.Azure.Storage;
using Microsoft.Azure.Storage.Auth;
using Microsoft.Azure.Storage.Blob;
using System;
using System.IO;
namespace DotNetFrameworkStorageStackOverflow
{
class Program
{
@sredman
sredman / calculator.py
Created February 15, 2019 07:26
A quick statistics calculator over the number of items which fill a certain condition
#!/usr/bin/env python3
#
# Filename: calculator.py
#
# Author: Simon Redman <simon@ergotech.com>
# File Created: 14.02.2019
# Last Modified: Fri 15 Feb 2019 12:20:49 AM MST
# Description: Return some statistics about the number of items filling
# a specified condition
#