View docker-compose.yml
This file contains 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
version: '2' | |
services: | |
changedetection: | |
image: ghcr.io/dgtlmoon/changedetection.io | |
container_name: changedetection | |
hostname: changedetection | |
volumes: | |
- changedetection-data:/datastore | |
environment: |
View footssh.sh
This file contains 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
footssh() | |
{ | |
if [[ $TERM = "foot" ]]; then | |
TERM=linux ssh $@ | |
else | |
ssh $@ | |
fi | |
} | |
alias ssh=footssh |
View hello_world.py
This file contains 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/env python3 | |
# -*- coding: utf-8 -*- | |
# You'll need a TLS terminating proxy (apache,nginx) in front of this | |
# This is a simple Hello World Alexa Skill, built using | |
# the decorators approach in skill builder. | |
import logging | |
from flask import Flask |
View config.json
This file contains 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
{ | |
"FAUXMO": { | |
"ip_address": "AUTO" | |
}, | |
"PLUGINS": { | |
"SimpleHTTPPlugin": { | |
"DEVICES": [ | |
{ | |
"port": 12340, | |
"off_cmd": "http://192.168.1.107/admin/api.php?disable=600&auth=YOUR_AUTH_CODE", |
View zip2lha.sh
This file contains 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 | |
# zip2lha.sh - convert zip files (for WHDLOAD) into lha for retropie / amiberry | |
# USAGE: zip2lha.sh zipfilename.zip | |
# or to do whole directory: find . -name '*.zip -exec zip2lha.sh {} \; | |
# set TMPDIR & DESTDIR in script | |
# REQUIREMENTS: unzip & jlha-utils (NOT lha package) on raspbian | |
# BE CAREFUL! This script removes contents of TMPDIR after each conversion | |
FN=$1 |
View ws.py
This file contains 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/env python | |
# test websockets - requires python 3.6+ & sanic | |
# start server & hit http://localhost:8000/static/WebSockets.html | |
# Put ws://localhost:8000/feed as Target | |
from sanic import Sanic | |
app = Sanic() |
View python-pipenv.spec
This file contains 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
# Created by pyp2rpm-3.2.2 | |
%global pypi_name pipenv | |
Name: python-%{pypi_name} | |
Version: 11.1.3 | |
Release: 1%{?dist} | |
Summary: Sacred Marriage of Pipfile, Pip, & Virtualenv | |
License: MIT | |
URL: https://github.com/kennethreitz/pipenv |
View quicksynergy.patch
This file contains 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
diff -r1.2 ./main.c | |
145a146,156 | |
> /* support "-m" argument to start minimized */ | |
> int c; | |
> while ((c = getopt (argc, argv, "m")) != -1) | |
> switch (c) | |
> { | |
> case 'm': | |
> /* minimize the main window */ | |
> gtk_window_iconify(GTK_WINDOW(main_window)); |
View synclient-to-x.py
This file contains 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/env python | |
# synclient-to-x.py - export synclient -l output to | |
# x.org config file [c] jamespo [at] gmail [dot] com | |
# USAGE: synclient -l | ./synclient-to-x.py > 50-synaptics.conf | |
from __future__ import print_function | |
import fileinput | |
print(""" |
View smtpsend.py
This file contains 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/env python | |
# smtpsend.py - mailx style tool with SMTP support | |
import smtplib | |
from optparse import OptionParser | |
import sys | |
from email.mime.text import MIMEText | |
def send_mail(): |
NewerOlder