Everyone can and should have some basic knowledge about coding. It empowers you to interact with and leverage information and technology to benefit yourself and others. For me it started with simple programs on my TI calculator to help me do repetitive math calculations. You too can be programming in minutes, check out all the …
Category: programing
Python Screenshot Server
Thought I’d share some code python. This is just a simple way to share a screenshot over a network. “”” Serves screen shots at a specified interval. Doesn’t handle POST requests. Based on code from: http://www.blendedtechnologies.com/python-trick-really-little-http-server/220 Code source: Python Screenshot Server “”” import os import time import threading import SocketServer import SimpleHTTPServer from PIL import …