This file contains hidden or 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 | |
set -e | |
# set -v | |
# Copy and convert files to an Apple import friendly format and directory structure | |
# simply provide the script with the directory where you have mounted the SD card | |
# ./apple_convert.sh /media/user/SD_CARD | |
src=${1} | |
dest=${src}/DCIM/000___00 |
This file contains hidden or 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 | |
set -e | |
# set -v | |
# Accepts a first party and a second party and produces a shared | |
# One Time Password Time based code, usually referred to as 2FA | |
# Dependencies | |
# sudo apt-get install qrencode oathtool |
This file contains hidden or 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
#!/usr/bin/python | |
from sense_hat import SenseHat | |
from datetime import datetime | |
import math,os,random,subprocess,time | |
# | |
# Background: | |
# | |
# I have seen various electronic devices on paranormal TV shows (most popular | |
# being the Ovilus by Digital Dousing) that claim to convert "ghost energy" into |
This file contains hidden or 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 | |
# author RedRoosterKey | |
set -e | |
# set -v | |
# Example - exit code 125 tells git bisect to skip this commt | |
# git_bisect.sh --back 10 "cd Release || exit 125; make clean || exit 125; make || exit 125; make test" | |
back=1 |