I hereby claim:
- I am jalex19100 on github.
- I am jalex19100 (https://keybase.io/jalex19100) on keybase.
- I have a public key whose fingerprint is E4E5 28FA A297 330F 0F66 4048 372C 3BE5 261F AC9D
To claim this, I am signing this object:
for i in `ps ax| cut -f1 -d\ |sort |uniq`;do echo -n "$i "; lsof -p $i|wc -l; done| sort -k 2 |
// ==UserScript== | |
// @name Auto Dealer Simplification | |
// @namespace jalex.net | |
// @include *://*.com/used-inventory/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
setTimeout(function () { | |
$("#salemove > div").remove(); | |
$("body > div.ddc-header.sticky-header-nav.shrink-header-nav").remove(); |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
sort -n | awk ' | |
BEGIN { | |
c = 0; | |
sum = 0; | |
} | |
$1 ~ /^[0-9]*(\.[0-9]*)?$/ { | |
a[c++] = $1; | |
sum += $1; | |
} |
openssl genrsa -out server.key -passout pass:test 1024 | |
openssl req -new -subj "/CN=localhost" -key server.key -out server.csr | |
openssl x509 -req -days 36500 -in server.csr -signkey server.key -out server.crt | |
## Lines needed in the Apache configuration to enable SSL (probably in a <VirtualHost *:443> tag): | |
# SSLEngine on | |
# SSLProtocol all -SSLv2 | |
# SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5:!SEED:!IDEA | |
# SSLCertificateFile /keylocation/server.crt |
// ==UserScript== | |
// @name Remove Twitter Inline Images | |
// @namespace fixTheTwittersNet | |
// @version 0.2 | |
// @include /^https?://www\.twitter\.com/.*$/ | |
// @include /^https?://twitter\.com/.*$/ | |
// @author This dude | |
// @description This script removes inline images until you click the expand button | |
// ==/UserScript== | |
/* jshint -W097 */ |
#!/bin/bash | |
# | |
# REF: https://azure.microsoft.com/en-us/documentation/articles/web-sites-configure-ssl-certificate/#bkmk_selfsigned | |
# | |
###### serverauth.cnf ##### | |
#[ req ] | |
#default_bits = 2048 | |
#default_keyfile = privkey.pem | |
#distinguished_name = req_distinguished_name | |
#attributes = req_attributes |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; | |
import java.util.StringTokenizer; | |
import java.util.regex.Pattern; | |
/** | |
* Class: StringPerformance | |
*/ | |
public class StringPerformance { |
var handleSuccess = (function () { | |
var latestRequestTimestamp = 0; | |
return function handleSuccess(timestamp, data) { | |
if (timestamp < latestRequestTimestamp) { return; } | |
latestRequestTimestamp = timestamp; | |
/ stuff | |
}; | |
}); |