Skip to content

Instantly share code, notes, and snippets.

View cvallance's full-sized avatar

Charles Vallance cvallance

View GitHub Profile
@cvallance
cvallance / gist:d55eb7eeb950f34e2d1e10f7583104db
Last active November 13, 2018 02:05
ROBA Spam Email Headers
Delivered-To: my.email.address@gmail.com
Received: by 2002:a17:90a:4814:0:0:0:0 with SMTP id a20-v6csp764763pjh;
Thu, 8 Nov 2018 13:32:03 -0800 (PST)
X-Google-Smtp-Source: AJdET5dCSMaic5qPsP/1AoKMvllpaFMbeGXsUxqRSqsjq6vdre+y+w7o6yB+7Kyl5IVcUfo7gGq3
X-Received: by 2002:a63:460a:: with SMTP id t10-v6mr5181900pga.197.1541712723121;
Thu, 08 Nov 2018 13:32:03 -0800 (PST)
ARC-Seal: i=1; a=rsa-sha256; t=1541712723; cv=none;
d=google.com; s=arc-20160816;
b=GHdNPQtQ8vp5H9fMnxGGXDmwIiwUQa8R5tf6j0RVNIEdPaYJ4Ol1AU3DnY1nx/6o7N
brz5coWEmSX1RVdskvc7HQFEZZAdn2SYt/3qKM4Hjb+n93BotUSkrgoxiqX4z12wbc3o
@cvallance
cvallance / keybase.md
Created February 4, 2018 19:49
Keybase verification

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

### Keybase proof
I hereby claim:
* I am cvallance on github.
* I am cvallance (https://keybase.io/cvallance) on keybase.
* I have a public key ASA734agV4Jz1sHQU3IoQHhgqAmJWGbhEqXZ0XNLyHNqnAo
To claim this, I am signing this object:
@cvallance
cvallance / gist:7227447
Created October 30, 2013 05:01
Files to delete on windows
C:\Windows\System32\%LOCALAPPDATA%\CrashDumps
@cvallance
cvallance / ShortcutLink
Created January 15, 2013 19:34
Remove MiniProfiler Javascript link for bookmarks
@cvallance
cvallance / admin_user_into_viewbag
Created October 11, 2011 16:56 — forked from kenegozi/use_inheritance.cs
Pass compositioned data to views
//You could also use a base controller and put this in there.
public class AdminUserViewBagAttribute : ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
filterContext.Controller.ViewBag.IsCurrentUserAdmin = magic.FigureThatOut();
}
}