Todo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name LinkedIn Company Filter | |
// @namespace http://axley.net/ | |
// @version 0.1 | |
// @description Simple, configurable filter to ignore job postings from companies you've ruled out | |
// @author You | |
// @match https://www.linkedin.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com | |
// @grant GM_getValue | |
// @grant GM_setValue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import boto3 | |
import pprint | |
import sys | |
sys.stdout.flush() | |
# to support AWS profiles, just change the profile name here. Be sure you've set the region in that profile config | |
devSession = boto3.session.Session(profile_name='default') | |
client = devSession.client('ecs') |
I hereby claim:
- I am jaxley on github.
- I am axleyjc (https://keybase.io/axleyjc) on keybase.
- I have a public key ASC5pDlbn_1x5ZMaHd0Po80FFpEda8wNGmyGMYyAOvk3MAo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
A function to generate secure random 16-32 character passwords in your browser, using the character set | |
A-Za-z0-9@- | |
*/ | |
/* | |
in one line for bookmarkletts: | |
javascript:!function(){"use strict";function r(){var r=new Uint16Array(n);window.crypto.getRandomValues(r);var r=Array.apply([],r);return r=r.filter(function(r){return r===45 || r>=47&&r<=57 || r>=64&&r<=90 || r>=97&&r<=122}),String.fromCharCode.apply(String,r)}for(var n=32,t=16,a=r();a.length<t;)a+=r();prompt("",a)}(); | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <ctype.h> | |
#include <limits.h> | |
/* #define MAX INT_MAX | |
#define MAX 65536 */ | |
#define MAX 20 | |
int main(int argc, char **argv) { | |
printf("Hello world\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.apache.http.client.utils.URIBuilder; | |
import javax.servlet.ServletException; | |
import javax.servlet.annotation.WebServlet; | |
import javax.servlet.http.HttpServlet; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletResponse; | |
import java.io.PrintWriter; | |
import java.io.UnsupportedEncodingException; | |
import java.net.URISyntaxException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/python | |
# Adapted from gist https://gist.github.com/sekondus/4322469 | |
from Crypto.Cipher import AES, blockalgo | |
import base64 | |
import os | |
# the block size for the cipher object; must be 16, 24, or 32 for AES | |
BLOCK_SIZE = 32 |