Skip to content

Instantly share code, notes, and snippets.

View hallem's full-sized avatar

Michael Hallett hallem

View GitHub Profile
@mark-adams
mark-adams / aes_example.cs
Created December 12, 2014 15:02
AES String Encryption (CBC) Example Code for C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace aes_example
{
using System;
@brianr
brianr / gist:c90e615d03da45c81fb5
Created July 15, 2014 23:46
Rollbar custom grouping to group separately by server.software
[
{
"title": "{{ default_title }} in version {{ server.software }}",
"fingerprint": "{{ default_fingerprint }} {{ server.software }}",
"condition": {"path": "server.software", "neq": null}
}
]