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
# PS-BGInfo | |
# Powershell script that updates the background image with a random image from a folder and writes out system info text to it. | |
# run as a lower priority task | |
[System.Threading.Thread]::CurrentThread.Priority = 'BelowNormal' | |
# Configuration: | |
# Font Family name | |
$font="Input" |
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
:: On-Demand Flash Autoupdate | |
:: Author: Karl Horky | |
:: Date: 22 June 2012 | |
:: Version: 0.2 | |
:: Homepage: http://www.karlhorky.com/2012/06/manually-run-autoupdate-for-adobe-flash.html | |
@echo off | |
pushd C:\Windows\System32\Macromed\Flash\ | |
if exist *ActiveX.exe ( | |
echo Updating Flash Player Plugin for Internet Explorer |
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
# ========================================================================== | |
# | |
# Script Name: Install-Programs.ps1 | |
# | |
# Author: Andy Parkhill | |
# | |
# Date Created: 27/03/2014 | |
# | |
# Description: A simple environment setup script for my personal laptop. | |
# |
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 requests | |
import json | |
description = "published from Leo" # todo: derive from docstring, if present, otherwise 1st para | |
public = True | |
filename = p.h # node headline | |
content = p.b # node body | |
api_url = 'https://api.github.com/gists' |