title | date | layout |
---|---|---|
Test post |
2015-03-10 11:32:13 -0400 |
standard |
This is one paragraph.
{% myblock %} This paragraph is in a custom block. {% endmyblock %}
#!/usr/bin/env python3 | |
# Takes a sitemap file [1] and submits each URL to the Wayback Machine [2]. | |
# | |
# Usage: python3 submit_urls.py sitemap.xml | |
# | |
# The script will contact the Wayback Machine for each URL in turn and request | |
# that it be saved [3]. The script prints (to standard output) the HTTP status | |
# code received from the Wayback Machine for each URL. The output looks like | |
# this: |
# Takes a list of commands with timing information and displays the elapsed | |
# time for each one. | |
# | |
# The input is expected to look like | |
# | |
# +1518804574.3228740692 colors:76> local k | |
# +1518804574.3228929043 colors:77> k=44 | |
# +1518804574.3229091167 colors:77> color[${color[$k]}]=44 | |
# +1518804574.3229229450 colors:77> k=33 | |
# +1518804574.3229279518 colors:77> color[${color[$k]}]=33 |
-- | Creates a new field based on the item's metadata. If the metadata field is not present then no | |
-- field will actually be created. Otherwise, the value will be passed to the given function and the | |
-- result of that function will be used as the field's value. | |
transformedMetadataField :: String -> String -> (String -> String) -> Context a | |
transformedMetadataField key itemName f = field key $ \item -> do | |
fieldValue <- getMetadataField (itemIdentifier item) itemName | |
return $ maybe (fail $ "Value of " ++ itemName ++ " is missing") f fieldValue |
title | date | layout |
---|---|---|
Test post |
2015-03-10 11:32:13 -0400 |
standard |
This is one paragraph.
{% myblock %} This paragraph is in a custom block. {% endmyblock %}
{- | |
Replaces each character with an HTML (or XML) escape code like " ". This is | |
useful as lightweight protection against email-address harvesting. | |
Example: | |
ghci> obfuscate "[email protected]" | |
"a@example.co" | |
Compare to the Clojure version: https://gist.github.com/bdesham/3327022 | |
-} |
STAT(1) BSD General Commands Manual STAT(1) | |
NAME | |
readlink, stat -- display file status | |
SYNOPSIS | |
stat [-FLnq] [-f format | -l | -r | -s | -x] [-t timefmt] [file ...] | |
readlink [-n] [file ...] |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>MathJax and Bigfoot test</title> | |
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> | |
<link rel="stylesheet" href="bigfoot-default.css"/> | |
<script src="https://raw.githubusercontent.com/lemonmade/bigfoot/master/dist/bigfoot.js"></script> |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<head> | |
<title>This is a test</title> | |
<link rel="stylesheet" href="bigfoot-default.css" type="text/css"/> | |
</head> | |
<body> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis leo ac lacus pretium iaculis. Cras eget eros mauris. Vestibulum ac sapien malesuada, pulvinar odio vel, pellentesque lectus. Duis commodo nibh vel mi commodo consequat. Nam egestas gravida eros et bibendum. Praesent vel suscipit odio. Suspendisse dignissim arcu vitae sapien auctor, vitae auctor libero dapibus.<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup> Pellentesque sagittis, justo vitae mattis tristique, nibh neque convallis metus, a dapibus turpis nisl ut metus. Curabitur consectetur sodales mauris. Donec id vestibulum augue. Aliquam sollicitudin ligula in bibendum malesuada. Praesent tincidunt, purus sed semper vestibulum, purus nulla tempor nisi, vel tincidunt enim lectus et velit. Aenean rhoncus lectus non laoreet laoreet.</p> |
#!/usr/bin/env python | |
# repetition.py | |
# | |
# Usage: python repetition.py input.txt output.svg | |
# | |
# Given a text file containing song lyrics, generates an SVG image showing the | |
# relationships between the lines of text. For more information, read the | |
# article at <http://www.bdesham.info/2013/09/visualizing-repetition>. | |
# |