Skip to content

Instantly share code, notes, and snippets.

View murdockcrc's full-sized avatar

Luis Delgado murdockcrc

View GitHub Profile
### 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
{
@murdockcrc
murdockcrc / singleton.js
Created July 29, 2015 18:35
NodeJS Singleton pattern
exports = module.exports = (function () {
// Instance stores a reference to the Singleton
var instance;
function init() {
// Singleton
// Private methods and variables
return {