Skip to content

Instantly share code, notes, and snippets.

@jennschiffer
jennschiffer / snort.md
Last active October 8, 2018 14:33
Snort

Snort Config

Author: yournamehere

Last Updated: datehere

Tasks

  • compile california style sheets
  • update scripts
  • make the code minified

License

@imjasonh
imjasonh / markdown.css
Last active January 3, 2025 20:15
Render Markdown as unrendered Markdown (see http://jsbin.com/huwosomawo)
* {
font-size: 12pt;
font-family: monospace;
font-weight: normal;
font-style: normal;
text-decoration: none;
color: black;
cursor: default;
}
@0xabad1dea
0xabad1dea / severscam.md
Last active July 12, 2021 01:32
Sever Scam

The Scammiest Scam To Yet Anonymity Scam

I'm still holding out for this being a hoax, a big joke, and that they're going to cancel the kickstarter any minute. It'd be quite the cute "lessons learned" about anonymity scams. However, I will be treating it from here on out as a genuine scam. (As of May 2nd, the kickstarter has been cancelled, after the strangest attempt to reply to this imaginable. Good riddance.)

This absolutely ridiculous thing was brought to my attention by a friend and since it was late at night I thought I must be delirious in how absurdly over the top fake it seemed. So I slept on it, woke up, and found that it had gotten a thousand dollars more funding and was every bit as flabbergasting as I thought it was.

Since I realize that not everyone has spent their entire lives studying computers – and such people are the targets of such scams –

@SalesforceBobLightning
SalesforceBobLightning / CustomExceptionWithoutConstructor.cls
Created July 26, 2018 22:33
Custom Salesforce Apex Exception Class Without Constructor
private class CustomExceptionWithoutConstructor extends Exception {
public override String getMessage() {
List<String> args = new String[]{super.getMessage()};
return String.format('Your custom message here with one argument: {0}', args);
}
}