Skip to content

Instantly share code, notes, and snippets.

View murdockcrc's full-sized avatar

Luis Delgado murdockcrc

View GitHub Profile
@murdockcrc
murdockcrc / CosmosDataLoader.cs
Created May 29, 2017 14:54
CosmosDb TableAPI CSV Data Loader
namespace TableSBS
{
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Diagnostics;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Table;
using System.Linq;
using System.IO;
### Keybase proof
I hereby claim:
* I am murdockcrc on github.
* I am murdockcrc (https://keybase.io/murdockcrc) on keybase.
* I have a public key ASA4-0FoUUxIu5r2--zOChdYInu6FPeV9m85wOJejeO3SAo
To claim this, I am signing this object:
@murdockcrc
murdockcrc / serialization-experiment.cs
Last active April 1, 2019 20:04
Console app that uses MessagePack and GZIP compression for benchmarking purposes
using System;
using System.Text;
using MessagePack;
using System.IO.Compression;
using System.IO;
namespace compress
{
class Program
{