Skip to content

Instantly share code, notes, and snippets.

View cyphunk's full-sized avatar

Nathan Fain cyphunk

  • stage theatre + reverse engineering
View GitHub Profile
@cyphunk
cyphunk / backup.sh
Created January 7, 2017 15:37
backup script wrapper around duplicity backup app
#!/bin/bash
# make certain only root and edit this script.
l=($(ls -l `readlink -f $0`))
[ ${l[0]:2:1} != "-" ] && [ "${l[2]}" != "root" ] ||
[ ${l[0]:5:1} != "-" ] && [ "${l[3]}" != "root" ] ||
[ ${l[0]:8:1} != "-" ] && {
echo -e "Script uses or is called from sudo often.\nOnly root should be able to modify.\n${l[@]}";
exit 1;}
@cyphunk
cyphunk / mount.sh
Last active December 4, 2019 14:48
mount scripts
#!/bin/bash
# basic script to mount/unmount secondary storage drives
# also supportes mounting .tc files as truecrypt containers
# also supportes mounting .img files
EXCLUDE='sda|vg0-root|luks|docker'
#EXCLUDEBLK="7" # <major_num>. 7 loop
EXCLUDEBLK="999" # <major_num>. 7 loop
FILEMANAGERCMD="dbus-launch xdg-open" # called on mount when X available
@cyphunk
cyphunk / display.sh
Created December 21, 2016 14:39
xrandr wrapper for basic external monitor management
#!/usr/bin/bash
# Script to setup external display. Really on meant for setups with
# a laptop display and no more than ONE External display.
# import usage_self() from humanism.sh
if ! type usage_self >/dev/null 2>&1 ; then
source $HOME/git/humanism.sh/humanism.sh usage_self
fi
ACTIVE=$(xrandr | grep -E " connected (primary )?[1-9]+" | sed -e "s/\([A-Z0-9]\+\) connected.*/\1/")
@cyphunk
cyphunk / phantomjs-facebook-update.js
Created December 16, 2016 16:32 — forked from ariefbayu/phantomjs-facebook-update.js
facebook status update using phantomjs
var page = new WebPage();
//spoof it as opera mini, to get the mobile page working properly
page.settings.userAgent = "Opera/9.80 (J2ME/MIDP; Opera Mini/6.5.26955/27.1407; U; en) Presto/2.8.119 Version/11.10";
function doLogin(){
page.evaluate(function(){
var frm = document.getElementById("login_form");
frm.elements["email"].value = "--enter-your-email--";
@cyphunk
cyphunk / fontcontrol.js
Created December 1, 2016 15:48
dynamic google fonts control/test widget
/*
* FONT CONTROL BOX
* 20100827 by Nathan Fain <[email protected]>
* Creative Commons Attribution-ShareAlike 3.0 Licensed
*
* just include this script and fcMain() will run to setup a
* #fontcontrol box (div).
*
* To selectively load when "#fc" hash added to URL, add this to root
* document or script:
#!/bin/bash -x
# Based on http://blog.pkh.me/p/21-high-quality-gif-with-ffmpeg.html
echo "for options see"
echo "http://blog.pkh.me/p/21-high-quality-gif-with-ffmpeg.html"
if [ $# -ne 4 ]; then
echo "$0 <file> <name> <start_00:00:00> DURATION"
exit
fi
FILE="$1"
#!/usr/bin/env bash
# Install/dd a raspberry pi os image to SD card
if [ $# -lt 2 ]; then
echo "rdisks:"
diskutil list
echo
echo "images:"
ls -t *.zip *.xz
echo
#!/bin/bash
# used this once map lines from a bootloader log to files found in a
# firmware dump. This is a cheap way to understand stages of the
# bootloader.
#
# A bit more on that. After extracting all of the firmware parts such
# as file systems and monolithic code or bootloaders, make a log of
# the boot log (if possible, via serial for example) and then feed
# that to this script from the root directory of the extracted firmware.
#
wait
https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Udachnaya_pipe.JPG/500px-Udachnaya_pipe.JPG width_max
4000ms
http://il3.picdn.net/shutterstock/videos/5644766/thumb/1.jpg width_600
4000ms
"<b>1821 Bauxite discovered near Les Beaux in southern France by Pierre Berthier</b>" background_transparent
4000ms
"1847 Armand Dufrénoy names the ore 'beauxite'"
4000ms
"1861 Henri Sainte-Claire Deville renames it as 'bauxite'"
@cyphunk
cyphunk / wifi.sh
Last active August 21, 2018 08:47
#!/bin/bash
# wifi: Linux absolutely sucks at network management. Want two devices up,
# forget it. Would use networkmanager from cli but gnome sucks so
# hard at integrating.
# We'd use wicd, which is much more stable, but it cannot support
# multiple interfaces at once.
#
# it is 2115 and linux still can't dynamicly select with multi interfaces.
#