A Pythonista script that displays a polygon and its internal angle.
Swiping left and right causes the number of sides to increase or decrease.
This is a Python 3 HTTP/1.1 server bound to 127.0.0.1 on port 8000 using only the standard library.
I wanted a simple Python 3 web server using HTTP 1.1 that can perform simple HTTP operations and depends only on Python and standard library modules. I couldn't find an example so I made one.
The example demonstrates how to accept different methods, parse the url and query strings, read data sent to the server, parse and return json, return responses with different status codes and headers, handle graceful termination, and override the default error logging.
A script that inspects the DNS TTL for a JVM in a supplied Docker image. The image must also contain a JDK.
It does this by generating a Docker image containing a Java program that outputs the JVM's DNS TTL and executing this, then cleaning up the container, image and temporary files.
$ ./jvm-dns-ttl-policy.sh openjdk:8
This script is no longer required with Docker for Mac which includes an option to run Docker at startup and doesn't use docker-machine
to administer the local Docker engine.
docker-machine create --driver virtualbox default
(this is the default with Docker toolkit).# A Liquid tag for Jekyll sites that allows embedding Lightbox images. | |
# | |
# Adapted to work with http://lokeshdhakar.com/projects/lightbox2/ | |
# as well as allowing remote image urls and commas in image titles. | |
# | |
# original author: kyoendo | |
# modified by: andystanton | |
# | |
# original Source URL: https://gist.github.com/4035604 | |
# modified Source URL: https://gist.github.com/andystanton/6629cca760df386a0726 |
#!/usr/bin/env python3 | |
# This script is provided to show how I migrated from Ghost 0.4.2 | |
# to Jekyll 2.3.0 and is used at your own risk. Back up your blog | |
# before trying it out. | |
def getPostTemplate(): | |
with open('post-template.md', 'r') as f: | |
posttemplate = f.read() | |
f.closed |