Skip to content

Instantly share code, notes, and snippets.

@TechnologistAU
TechnologistAU / mfi.sh
Last active January 12, 2023 09:57
mFi Installation Script for Raspberry Pi
#!/bin/bash
################################################################################
#
# This script automates the installation of the mFi controller software on the
# Raspberry Pi.
#
# http://www.technologist.site/ubnt
#
################################################################################
@TechnologistAU
TechnologistAU / quake3.sh
Last active May 12, 2022 22:13
This script automates downloading, compiling, patching and running Quake 3 on the Raspberry Pi.
#!/bin/bash
################################################################################
#
# This script automates downloading, compiling, patching and running Quake 3 on
# the Raspberry Pi.
#
# This script is written and maintained by Chris Lowe.
#
# http://www.technologist.site
@TechnologistAU
TechnologistAU / unifi.sh
Last active October 10, 2019 02:57
UniFi 5 Installation Script for Raspberry Pi
#!/bin/bash
################################################################################
#
# This script automates the installation of the UniFi controller software on the
# Raspberry Pi.
#
# http://www.technologist.site/ubnt
#
################################################################################
@TechnologistAU
TechnologistAU / yasdi.ini
Created January 21, 2019 05:21
Example for /etc/yasdi.ini
[DriverModules]
Driver0=yasdi_drv_serial
[COM1]
Device=/dev/ttyUSB0
Media=RS485
Baudrate=1200
Protocol=SMANet
[Misc]
DebugOutput=/dev/stderr
@TechnologistAU
TechnologistAU / nginx.conf
Created January 21, 2019 04:31
123Solar configuration file for nginx on Raspbian (Raspberry Pi)
##
# 123Solar configuration file for nginx on Raspbian (Raspberry Pi)
##
server {
listen 80;
listen [::]:80;
server_name _;
@TechnologistAU
TechnologistAU / msmtprc
Last active January 20, 2019 03:24
msmtp configuration template file
defaults
tls on
tls_starttls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
account default
host smtp.email.com
port 587
auth on
user user@email.com
@TechnologistAU
TechnologistAU / nginx.conf
Last active January 20, 2019 02:21
123Solar & meterN configuration file for Nginx on Raspbian (Raspberry Pi)
##
# 123Solar & meterN configuration file for nginx on Raspbian (Raspberry Pi)
##
server {
listen 80;
listen [::]:80;
server_name _;
@TechnologistAU
TechnologistAU / wordpress-install.ps1
Last active January 15, 2019 10:57
WordPress Installation Script for Windows Server 2016 and Windows 10 (PowerShell)
<#
================================================================================
===== WordPress Installation Script for Windows Server 2016 and Windows 10 =====
================================================================================
#>
"`r`nWordPress Installation Script for Windows Server 2016 and Windows 10"
"===================================================================="
cd ~\Downloads
@TechnologistAU
TechnologistAU / mfi.init
Last active September 19, 2018 02:03
mFi Startup Script for Raspberry Pi
#!/bin/bash
#
# /etc/init.d/mFi -- Ubiquiti mFi Startup Script for Raspberry Pi
#
#
### BEGIN INIT INFO
# Provides: mfi
# Required-Start: $local_fs $remote_fs $network
# Required-Stop: $local_fs $remote_fs $network
# Default-Start: 2 3 4 5
@TechnologistAU
TechnologistAU / unifi5-ubuntu.sh
Last active June 21, 2018 09:08
UniFi 5 Installation Script for Ubuntu
#!/bin/bash
################################################################################
#
# This script automates the installation of the UniFi controller software on
# Ubuntu.
#
# http://www.technologist.site/ubnt
#
################################################################################