Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am desimone on github.
  • I am bdesimone (https://keybase.io/bdesimone) on keybase.
  • I have a public key ASCWvu75RYuOqRmeXezk6_ylSUm4-nnCTeojuaOTEqSPBwo

To claim this, I am signing this object:

@desimone
desimone / crashplan.freenas.md
Last active April 16, 2017 16:22
How-to install the Crashplan plugin with Freenas

How-to : Crashplan & Freenas

Pre-requisites

Install

Step 0: Skip if you are using existing install

using System;
using System.Net;
using System.Security.Cryptography.X509Certificates;
using HttpWebAdapters;
using HttpWebAdapters.Adapters;
namespace Company.Communication.Solr.Helpers
{
/// <summary>
/// Creates a web request that uses a custom 509 cert to make the web request
@desimone
desimone / generators.py
Created May 22, 2014 22:29
factors using generators
def find_factor(number):
for i in range(1, number):
if number % i == 0:
yield i
factors = find_factor(154)
for i in factors:
print i