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
#!/bin/bash | |
set -eu | |
if [ "$#" -ne 1 ]; then | |
echo "Usage: $0 domain.example.com" | |
echo | |
echo "Generates a private key and a default CSR which you can send to" \ | |
"your CA. It prompts later for the certificate and stores it in a" \ | |
"reasonable place." | |
echo "Tested only with StartSSL." | |
exit 1 |
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
// This is a modified version of node's built-in tls.js patched not to check | |
// the server hostname against its certificate. | |
// | |
// node 0.10 does not support this in a clean way. | |
// This will be allowed in node 0.12 setting a checkServerIdentity function | |
// in the HTTPS agent config. | |
function checkServerIdentity(host, cert) { | |
return true; | |
} |
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
<html> | |
<head> | |
<title>Open PDF</title> | |
</head> | |
<body> | |
javascript:location.href=document.querySelector('object[type="application/pdf"]').getAttribute('data') | |
</body> | |
</html> |
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 sys | |
import nltk | |
import nltk.tokenize.regexp | |
import nltk.stem.snowball | |
import nltk.corpus | |
import requests | |
import lxml.html | |
lang = 'spanish' | |
def get_text(): |
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
#encoding: utf-8 | |
import sys | |
import time | |
import PIL.Image | |
def marshal_image(image): | |
data = image.convert('1') | |
w, h = data.size | |
out = bytearray() |
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/python | |
import sys | |
from PIL import Image, ImageDraw, ImageColor | |
from argparse import ArgumentParser | |
cell_w = cell_h = 40 | |
def color_to_hex(color): | |
return '#' + ''.join('%02x' % x for x in color) |
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
#!/bin/bash | |
set -eu | |
if [ "$#" -ne 1 ]; then | |
echo "Usage: $0 domain.example.com" | |
echo | |
echo "Generates a private key and a default CSR which you can send to" \ | |
"your CA. It prompts later for the certificate and stores it in a" \ | |
"reasonable place." | |
echo "Tested only with StartSSL." | |
exit 1 |
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
#!/bin/bash | |
min_ratio=$(bc -l <<< 4/3) | |
max_ratio=$(bc -l <<< 20/9) | |
min_height=720 | |
images=() | |
for f in *.png *.jpg; do | |
read ratio height <<<$(identify -format '%[fx:w/h] %[fx:h]' "$f") | |
if (( $(bc <<< "$ratio >= $min_ratio && $ratio <= $max_ratio \ | |
&& $height >= $min_height") == 1)); then |
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
#define _BSD_SOURCE | |
#define _POSIX_C_SOURCE 200809L | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <dirent.h> | |
#include <endian.h> | |
#include <stdint.h> | |
#include <sys/stat.h> |
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
# http://stackoverflow.com/a/22614738/1777162 | |
SCRIPT=$( readlink -m $( type -p "$0" )) # Full path to script | |
BASE_DIR=`dirname "${SCRIPT}"` # Directory script is run in | |
NAME=`basename "${SCRIPT}"` # Actual name of script even if linked |