Shells that support process substitution such as bash
and zsh
allow to run shell script on gist as follows.
# With curl:
bash <(curl -sL ${GIST_URL}) args...
# With wget:
:: ---- Lines beginning with :: are comments ---- | |
:: This script is meant to make it easy to transcribe a video file using WhisperCPP. | |
:: You can simply drag a video file into the cmd window, then it will use ffmpeg to extract the audio, then transcribe using WhisperCPP and output to a text file. | |
:: | |
@echo off | |
set /p videopath="Enter the full path to the video file to transcribe: " | |
:: Remove quotes from the input path | |
set videopath=%videopath:"=% |
# install celery as a system service | |
sudo apt install -y python3-celery | |
# service file | |
sudo cat >/etc/systemd/system/celery.service <<EOL | |
[Unit] | |
Description=Celery Service | |
After=network.target,rabbitmq-server.service | |
Requires=rabbitmq-server.service |
#!/bin/sh | |
sudo apt-get install curl gnupg apt-transport-https -y | |
## Team RabbitMQ's main signing key | |
curl -1sLf "https://keys.openpgp.org/vks/v1/by-fingerprint/0A9AF2115F4687BD29803A206B73A36E6026DFCA" | sudo gpg --dearmor | sudo tee /usr/share/keyrings/com.rabbitmq.team.gpg > /dev/null | |
## Community mirror of Cloudsmith: modern Erlang repository | |
curl -1sLf https://github.com/rabbitmq/signing-keys/releases/download/3.0/cloudsmith.rabbitmq-erlang.E495BB49CC4BBE5B.key | sudo gpg --dearmor | sudo tee /usr/share/keyrings/rabbitmq.E495BB49CC4BBE5B.gpg > /dev/null | |
## Community mirror of Cloudsmith: RabbitMQ repository | |
curl -1sLf https://github.com/rabbitmq/signing-keys/releases/download/3.0/cloudsmith.rabbitmq-server.9F4587F226208342.key | sudo gpg --dearmor | sudo tee /usr/share/keyrings/rabbitmq.9F4587F226208342.gpg > /dev/null |
#!/bin/bash | |
# update apt repos | |
sudo apt-get update | |
# install curl and keyring (certificate) support | |
sudo apt-get install -y \ | |
ca-certificates \ | |
curl \ | |
python3-pip \ |
#!/bin/bash | |
# | |
# Notes2MD -- Convert Samsung Notes to markdown | |
# | |
# This script converts Samsung Notes to markdown. Export one or more | |
# notes as PDF files from inside the app (I haven't found a way to automate | |
# this, yet) into the ${DIR_IN} folder, then run this script. It: | |
# | |
# 1. Converts the PDF to a sequence of PNG image files (placing those | |
# images and the original pdf in an "assets/" subfolder) |
More details - http://blog.gbaman.info/?p=791
For this method, alongside your Pi Zero, MicroUSB cable and MicroSD card, only an additional computer is required, which can be running Windows (with Bonjour, iTunes or Quicktime installed), Mac OS or Linux (with Avahi Daemon installed, for example Ubuntu has it built in).
1. Flash Raspbian Jessie full or Raspbian Jessie Lite onto the SD card.
2. Once Raspbian is flashed, open up the boot partition (in Windows Explorer, Finder etc) and add to the bottom of the config.txt
file dtoverlay=dwc2
on a new line, then save the file.
3. If using a recent release of Jessie (Dec 2016 onwards), then create a new file simply called ssh
in the SD card as well. By default SSH i
import time | |
import socket | |
import base64 | |
src = '192.168.1.2' # ip of remote | |
mac = '00-AB-11-11-11-11' # mac of remote | |
remote = 'python remote' # remote name | |
dst = '192.168.1.3' # ip of tv | |
app = 'python' # iphone..iapp.samsung |
#NoEnv | |
#Warn All | |
#Warn LocalSameAsGlobal, Off | |
#Persistent | |
/* | |
Speech Recognition | |
================== | |
A class providing access to Microsoft's SAPI. Requires the SAPI SDK. |