Skip to content

Instantly share code, notes, and snippets.

View miketrebilcock's full-sized avatar

Mike Trebilcock miketrebilcock

View GitHub Profile
<?php
/**
* This script is for easily deploying updates to Github repos to your local server. It will automatically git clone or
* git pull in your repo directory every time an update is pushed to your $BRANCH (configured below).
*
* Read more about how to use this script at http://behindcompanies.com/2014/01/a-simple-script-for-deploying-code-with-githubs-webhooks/
*
* INSTRUCTIONS:
* 1. Edit the variables below
* 2. Upload this script to your server somewhere it can be publicly accessed
using System;
namespace ClassLibrary
{
public interface IDependency
{
void SomeMethod(string s);
}
public class MyClass
@miketrebilcock
miketrebilcock / gist:5814235
Last active December 18, 2015 16:49
DatabaseRequestLogger for ServiceStack
using ServiceStack.Common.Web;
using ServiceStack.Logging;
using ServiceStack.OrmLite;
using ServiceStack.ServiceHost;
using ServiceStack.ServiceInterface;
using ServiceStack.ServiceInterface.ServiceModel;
using ServiceStack.ServiceModel;
using System;
using System.Collections.Generic;
using System.Data;
@miketrebilcock
miketrebilcock / main.cs
Created July 2, 2013 19:10
Using TopShelf to Host Service Stack
public static void Main(string[] args)
{
var appSettings = new AppSettings();
AppConfig config = new AppConfig(appSettings);
HostFactory.Run(x =>
{
x.UseLog4Net();
x.Service<AppHost>(s =>
{
@miketrebilcock
miketrebilcock / CustomApplicationStore
Created September 21, 2013 18:30
CustomApplicationStore for use with Servicestack when running self-hosted. Need to include DotNetOpenAuth in project.
using DotNetOpenAuth.Configuration;
using DotNetOpenAuth.Messaging.Bindings;
using DotNetOpenAuth.OpenId;
using ServiceStack.Logging;
using ServiceStack.Redis;
using System;
using System.Collections.Generic;
using System.Linq;
namespace CORE.STS
import smbus
from gpiozero import Button
import time
class joystick:
def __init__(self, button_pin):
self.i2cbus = smbus.SMBus(1)
self.i2cbus.write_byte(0x48,0)
self.button = Button(button_pin)
i=1; while true; do fn=$(printf "%05d" $i); if [[ ! -e "img_$fn.jpeg" ]]; then echo "File not found: $fn"; fi ; i=$(expr $i + 1); done | less
@miketrebilcock
miketrebilcock / traffic_light_demo.py
Created August 31, 2016 19:04
Raspberry Pi Traffic Lights Demo
from gpiozero import LED
from time import sleep
green = LED(22)
amber = LED(27)
red = LED(17)
def all_off():
green.off()
sudo apt-get -y update
sudo apt-get -y dist-upgrade
sudo apt-get -y install rpi-update
sudo rpi-update
sudo apt-get -y install python-software-properties
sudo apt-add-repository ppa:remmina-ppa-team/remmina-next
sudo apt-get -y install remmina freerdp-x11 remmina-plugin-rdp
sudo apt-get -y install iceweasel
sudo apt-get -y update
sudo apt-get -y upgrade
@miketrebilcock
miketrebilcock / download.sh
Created October 1, 2018 17:00
Download for cubs
git clone https://github.com/miketrebilcock/scouts-digital-maker-stage1.git