Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jfmherokiller on github.
  • I am jfmherokiller (https://keybase.io/jfmherokiller) on keybase.
  • I have a public key whose fingerprint is FCCB 5118 FB78 4647 439A 5BF2 1E38 A7BD AEA3 7A2B

To claim this, I am signing this object:

@jfmherokiller
jfmherokiller / blacklist.txt
Last active February 3, 2016 00:34
ssl restrictor
TLS_NULL_WITH_NULL_NULL
TLS_RSA_WITH_NULL_MD5
TLS_RSA_WITH_NULL_SHA
TLS_RSA_EXPORT_WITH_RC4_40_MD5
TLS_RSA_WITH_RC4_128_MD5
TLS_RSA_WITH_RC4_128_SHA
TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5
TLS_RSA_WITH_IDEA_CBC_SHA
TLS_RSA_EXPORT_WITH_DES40_CBC_SHA
TLS_RSA_WITH_DES_CBC_SHA
This file has been truncated, but you can view the full file.
INFO: creating /opt/ltp/results directory
INFO: no command files were provided. Will execute the following
runtest scenario files:
syscalls fs fs_perms_simple fsx dio io mm ipc sched math nptl pty containers fs_bind controllers filecaps cap_bounds fcntl-locktests connectors admin_tools timers power_management_tests numa hugetlb commands hyperthreading kernel_misc modules fs_ext4 pipes dma_thread_diotest can cpuhotplug ipv6_lib input
Checking for required user/group ids
'nobody' user id and group found.
macros['hello'] =
{
handler: function()
{
alert('Hi, reader!');
}
}
jQuery('#storeArea').append('<div tiddler="Hax" tags="nobr" created="0" modifier="twee" twine-position="0,0"> The Javascript billetroa has landed &lt;&lt;hello&gt;&gt;</div>')
tale.constructor()
@jfmherokiller
jfmherokiller / src_Main.java
Created June 14, 2016 05:39
Hacky Switch Statement Prototype
import java.util.ArrayList;
/**
* Created by jfmmeyers on 6/14/16.
*/
public class Main {
public static void main(String[] args) {
ArrayList<Pair<String,String>> casencodelist = new ArrayList<>();
casencodelist.add(new Pair<String, String>("default","console.log(boobies)"));
}
/**
* Created by jfmmeyers on 6/14/16.
*/
var macros = {};
var ArrayOfCasesAndCodes = [['case1', 'console.log(\'penis\')']];
macros['createswitch'] = {
handler: function (name, ArrayOfCasesAndCodes) {
macros[name + '_evalswitch'] = {
handler: function (casetocheck) {
var index;
#DIV_1 {
bottom: 0px;
color: rgb(102, 102, 102);
height: 1802.94px;
left: 0px;
overflow-wrap: break-word;
position: relative;
right: 0px;
top: 0px;
width: 556px;
// Created by STRd6
// MIT License
// jquery.paste_image_reader.js
(function($) {
var defaults;
$.event.fix = (function(originalFix) {
return function(event) {
event = originalFix.apply(this, arguments);
if (event.type.indexOf('copy') === 0 || event.type.indexOf('paste') === 0) {
event.clipboardData = event.originalEvent.clipboardData;
@jfmherokiller
jfmherokiller / Greasemonkey-jq-boilerplate.js
Created July 21, 2016 18:58 — forked from angel-vladov/Greasemonkey-jq-boilerplate.js
Boilerplate code for a Greasemonkey script which reuses the jQuery from the page it's attached to.
var jQuery, $ = null;
function addJQuery(callback) {
var p = null;
if(window.opera || window.navigator.vendor.match(/Google/)) {
var div = document.createElement("div");
div.setAttribute("onclick", "return window;");
p = div.onclick();
}
@jfmherokiller
jfmherokiller / Greasemonkey.js
Created July 21, 2016 19:01 — forked from fuzzykiller/Greasemonkey.js
Greasemonkey API stubs with JSDoc, for WebStorm etc
/**
* Created by azu.
* Date: 10/11/28
* Updated by fuzzykiller (2015/08/28)
* License: MIT License
*/
/**
* An object that exposes various information about Greasemonkey and the running User Script.
*/