Skip to content

Instantly share code, notes, and snippets.

@elmimmo
elmimmo / SmartyPants Readme.txt
Created July 9, 2012 15:07
Unicode SmartyPants (unofficial)
SmartyPants
===========
by John Gruber
http://daringfireball.net/
Version 1.5.1 - Fri 12 Mar 2004
SmartyPants is a free web publishing plug-in for Movable Type, Blosxom,
@elmimmo
elmimmo / autoingestion.sh
Last active March 3, 2026 13:12
Script to schedule automated batch-downloading of Apple's App Store and iBookStore sales reports using Apple's AutoIngestion tool
#!/bin/bash
# `autoingestion.sh` downloads Apple iOS App Store sales data. It will
# download it to the same folder the script is running from, and group
# the downloaded files into directories by report type.
#
# It will only attempt to download if new sales data should be
# available.
#
# As skipping already downloaded files depends on the filename pattern
@elmimmo
elmimmo / xml2json.xslt
Created June 1, 2012 11:49
XSLT: from intermediate XML format to JSON
<?xml version="1.0" encoding="utf-8"?>
<!-- Stylesheet for converting between an intermediate format and JSON -->
<!-- Copyright 2006 Theo Hultberg, all rights reserved -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="text"
encoding="UTF-8"
@elmimmo
elmimmo / plist2xml.xslt
Created June 1, 2012 10:47
XSLT: from plist to intermediate XML format
<?xml version="1.0" encoding="utf-8"?>
<!-- Stylesheet for converting between plist and an intermediate format -->
<!-- Copyright 2006 Theo Hultberg, all rights reserved -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml"
indent="yes"
@elmimmo
elmimmo / poem.html
Created October 3, 2011 21:29
Semantic HTML for poems + CSS styles for indented wrapping lines for small screens
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Styling a poem</title>
<style type="text/css">
/* Left-aligned text in a centered block (mangles text in Adobe Digital Editions 1.7, so search an alternative if you need to support it) */
.poem {
display: table;
margin-right: auto;
@elmimmo
elmimmo / mmdp.sh
Created September 22, 2011 10:43
Preview (multi)markdown in preferred browser
# Preview (multi)markdown documents in the preferred browser.
function mmdp() {
if [ -z "$1" ]; then
echo "Usage: mmdp FILE"
return 1
fi
# Determine how to open a file based on OS, and what MMD binary to use:
local OS=$(uname -s)