This file contains 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 | |
# 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;} |
This file contains 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 | |
# 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 |
This file contains 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/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/") |
This file contains 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
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--"; |
This file contains 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
/* | |
* 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: |
This file contains 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 -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" |
This file contains 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/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 |
This file contains 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 | |
# 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. | |
# |
This file contains 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
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'" |
This file contains 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 | |
# 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. | |
# |