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 -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
brew install --cask google-chrome | |
brew install --cask vscodium | |
brew install --cask postman | |
brew install --cask zoom | |
brew install --cask microsoft-teams | |
brew install --cask android-studio | |
brew install --cask flutter | |
brew install --cask fork | |
brew install git-lfs |
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
apt update | |
apt upgrade | |
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash - | |
sudo apt -y install nodejs | |
## https://diyprojects.io/orange-pi-review-opi-gpio-package-node-red-node-red-contrib-opi-gpio/#.X0QkspNKjmE |
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
git clone https://github.com/miketrebilcock/scouts-digital-maker-stage1.git |
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
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 |
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
from gpiozero import LED | |
from time import sleep | |
green = LED(22) | |
amber = LED(27) | |
red = LED(17) | |
def all_off(): | |
green.off() |
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
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 |
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
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) |
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
<?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 |
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
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 |
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
public static void Main(string[] args) | |
{ | |
var appSettings = new AppSettings(); | |
AppConfig config = new AppConfig(appSettings); | |
HostFactory.Run(x => | |
{ | |
x.UseLog4Net(); | |
x.Service<AppHost>(s => | |
{ |
NewerOlder