Skip to content

Instantly share code, notes, and snippets.

View cc11112's full-sized avatar

Crane Chen cc11112

View GitHub Profile
@cc11112
cc11112 / gpg.sh
Created November 16, 2016 22:53 — forked from TheFox/gpg.md
GPG
#!/usr/bin/env bash
# Original: https://alexcabal.com/creating-the-perfect-gpg-keypair/
KEY=xyz
DATE=$(date +"%Y%m%d")
SCRIPT_BASEDIR=$(dirname $0)
cd $SCRIPT_BASEDIR
echo "This script is not for use in automation"
@cc11112
cc11112 / 1_MVCHelper.txt
Created October 19, 2015 16:30 — forked from RhysC/1_MVCHelper.txt
MVC test helpers (.net 4.5) using Log4net, NSubstitute and xUnit. Intend for : - checking attributation of the controller and actions. - asserting ActionResult values in a fluent manner - reducing set up noise for underling type that help form a testable controller
Example usages:
public class MyControllerFixture : IUseFixture<ControllerFixtureInit>
{
private readonly MyController _sut;
private ControllerTestContext _controllerTestContext;
private readonly IMyDependency _dependency;
public MyControllerFixture()
{
public enum Cacheability
{
NoCache,
Private,
Public,
}