Skip to content

Instantly share code, notes, and snippets.

View steveruckdashel's full-sized avatar

Steve Ruckdashel steveruckdashel

View GitHub Profile

Keybase proof

I hereby claim:

  • I am steveruckdashel on github.
  • I am steveruckdashel (https://keybase.io/steveruckdashel) on keybase.
  • I have a public key ASDMOwR8dFqeyx2A663lkuWbIdIcEeBgSMdLGCsbJXtrdQo

To claim this, I am signing this object:

@steveruckdashel
steveruckdashel / tools.md
Last active August 9, 2017 20:36
Dev tools
@steveruckdashel
steveruckdashel / csharp7 channels
Created April 25, 2016 19:56
c#7 queues as channels
ConcurrentQueue<(bool, object)> q = new ConcurrentQueue<(bool, object)>();
ConcurrentQueue<(bool, object)> Generator(ConcurrentQueue<(bool, object)> q)
{
for (var i = 0; i<1000; i++)
{
q.Enqueue((true, i));
}
gopkg.in/qml.v0
github.com/streadway/amqp
code.google.com/p/go.net
code.google.com/p/go.crypto
@steveruckdashel
steveruckdashel / json_encode_example.py
Created May 30, 2013 21:14
python json object serialization
import json
from datetime import datetime
class Foo():
def __init__(self):
self.field1 = "junk"
self.field2 = datetime.now()
self.field3 = False
self.field4 = None