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
javascript:(function(){ | |
var iframes = document.getElementsByTagName('iframe'); | |
for(var i = 0; i < iframes.length; i++) | |
{iframes[i].width = "auto"; } | |
var content="@media print { img {max-width: 640px !important;} iframe { width: auto; display: block; } .section-inner.sectionLayout--insetColumn { max-width: 1024px !important; padding: padding: 0px 0px !important; } }"; | |
var style = document.createElement('style'); | |
style.appendChild(document.createTextNode(content)); | |
document.getElementsByTagName('head')[0].appendChild(style); | |
alert("Print stylesheet tweaked - use 'File/Print Preview' to check"); | |
})(); |
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
# Currently the Hugo Static Site Generator (v0.15) | |
# http://gohugio.io | |
# doesn't get the category and tag links correct if the | |
# uglyurls option is set in the config file ( "uglyurls=true" | |
# | |
# The generated site has category and tag links that point to a | |
# directory rather than the html file, but the directory doesn't | |
# contain an index.html file so the user ends up with a blank | |
# screen. | |
# |
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
RESTORE_DIR="/home/zachary/annex-documents-restored" | |
cat annex-unused-keys | tail -n +4 | head -n -5 | awk -e '{print $2}' | while read shasum; do | |
cd /shared | |
if git log --oneline -1 --stat -S"${shasum}" | grep "^ documents/" >/dev/null ; then | |
#echo "Object: ${shasum}" | |
document="$(git log --oneline -1 --stat -S"${shasum}" | head -n 2 | tail -n 1 | sed -e 's/|.*//' | sed -r -e 's/^ +//' | sed -r -e 's/ +$//')" | |
#echo "Document: ${document}" | |
source_file="$(git annex examinekey ${shasum} --format='/shared/.git/annex/objects/${hashdirmixed}${key}/${key}')" | |
#echo "File location: ${source_file}" | |
target="$RESTORE_DIR/$document" |
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
import kivy | |
kivy.require('1.4.1') | |
import random, os, sys, os.path | |
from kivy.app import App | |
from kivy.uix.image import Image | |
from kivy.core.window import Window | |
from kivy.clock import Clock | |
from kivy.config import Config | |
from plyer import notification |