This is a Ghost "App" that will implement a custom Handlebars helper the same as https://apatchofcode.com/adding-custom-handlebars-for-ghost-equals-awesome/
Create a new directory in contents/apps
eg:
mkdir contents/apps/myhelpers
#!/bin/bash | |
NAME=$1 | |
FERAL_SERVER=$2 | |
KEYSTORE=./keys | |
CA=$(< ${KEYSTORE}/ca.crt) | |
CERT=$(< ${KEYSTORE}/${NAME}.crt) | |
KEY=$(< ${KEYSTORE}/${NAME}.key) | |
TLS_AUTH=$(< ${KEYSTORE}/tls-auth.key) | |
OUTPUT=./${NAME}.ovpn |
#!/bin/bash | |
# Desktop build | |
MAKE="make -j 4 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-" | |
# C.H.I.P. build | |
#MAKE="make" | |
CDIR=$PWD | |
LINUX=$CDIR/CHIP-linux | |
WIFI=$CDIR/RTL8723BS |
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/arm 4.4.11 Kernel Configuration | |
# | |
CONFIG_ARM=y | |
CONFIG_ARM_HAS_SG_CHAIN=y | |
CONFIG_NEED_SG_DMA_LENGTH=y | |
CONFIG_ARM_DMA_USE_IOMMU=y | |
CONFIG_ARM_DMA_IOMMU_ALIGNMENT=8 | |
CONFIG_MIGHT_HAVE_PCI=y |
This is a Ghost "App" that will implement a custom Handlebars helper the same as https://apatchofcode.com/adding-custom-handlebars-for-ghost-equals-awesome/
Create a new directory in contents/apps
eg:
mkdir contents/apps/myhelpers
# board/orangepi/orangepi_plus/readme.txt | |
OrangePi Plus | |
Intro | |
===== | |
This default configuration will allow you to start experimenting with the | |
buildroot environment for the OrangePi PC. With the current configuration | |
it will bring-up the board, and allow access through the serial console. |
# Connection name | |
connection adafruit | |
# Secure SSL/TLS | |
address io.adafruit.com:8883 | |
# adjust path as approriate to point to directory with PEM encoded .crt CA files | |
bridge_capath /etc/ssl/certs/ | |
# Insecure | |
# address io.adafruit.com:1883 |
import kivy | |
kivy.require('1.9.0') | |
from kivy.app import App | |
from kivy.uix.widget import Widget | |
from kivy.uix.button import Button | |
from kivy.properties import NumericProperty, ObjectProperty | |
import RPi.GPIO as GPIO |
pi@raspberrypi ~ $ sudo apt-get install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev \ | |
pkg-config libgl1-mesa-dev libgles2-mesa-dev \ | |
python-setuptools libgstreamer1.0-dev git-core \ | |
gstreamer1.0-plugins-{bad,base,good,ugly} \ | |
gstreamer1.0-{omx,alsa} python-dev cython | |
pi@raspberrypi ~ $ sudo pip install git+https://github.com/kivy/kivy.git@master | |
pi@raspberrypi ~ $ sudo apt-get install python-{pygments,docutils} |
#!/bin/bash | |
# Make sure only root can run our script | |
if [[ ${EUID} -ne 0 ]]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
if [[ $# -eq 0 ]]; then | |
echo "Usage:" | |
echo " $0 <systemd|sysv>" |
ofstream fSlots; | |
fSlots.open(SLOTS); | |
fSlots << "ADAFRUIT-UART2" << std::endl; | |
fSlots << "PyBBIO-epwmss0" << std::endl; | |
fSlots << "PyBBIO-eqep0" << std::endl; | |
fSlots << "PyBBIO-epwmss1" << std::endl; | |
fSlots << "PyBBIO-eqep1" << std::endl; | |
fSlots.close(); |