Skip to content

Instantly share code, notes, and snippets.

@inconvergent
inconvergent / run-es.sh
Last active February 4, 2019 11:11
run es via docker with mounted folder
#!/bin/bash
here=`pwd`
fld="$here/data"
mkdir -p "$fld"
docker run -p 9200:9200 \
-p 9300:9300 \
-e "discovery.type=single-node" \
@inconvergent
inconvergent / jsn.py
Last active March 2, 2018 13:45
show colorful json, regular json or just the text from stdin
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import sys
from json import loads
from json import dumps
try:
from pygments import highlight, lexers, formatters
def show(d):
#!/usr/bin/python3
# crude template for generating pinterest DMCA takedown request emails.
# send to: copyright@pinterest.com
#example csv file:
#new,2018/01/25,https://no.pinterest.com/pin/489696159457745571/,url,http://url.com
#new,2018/01/25,https://no.pinterest.com/pin/34832597103507119/,desc,old
from jinja2 import Environment, DictLoader
#!/usr/bin/python
from random import random
n = 1
w = 0.
while True:
s = random()*60.
w += 60.-s