The passion behind the words
Is the murmur of your lips
The pulse of my restless heart
And the vital air I breathe
See
About My Scribbles for the primary source of my writings. I also have a
deviantART account for other works.
Above and beyond the permissions granted in the submission policy, all my works can be copied and distributed under the same terms as my website's
personal writing sections.
They were created using The GIMP, using the Luxi Sans font. I had two templates, one each for one-line and two-line titles. It's simply a matter of edit, export, edit, export, &c.; very straightforward.
Uploading these images by hand would be a lot of work (you'd basically have to click each piece, then Edit, Preview, then pick the right file). This isn't my idea of fun, so I wrote a shell script to upload them en masse:
#!/bin/bash
if [ "$#" = 0 ]; then
echo >&2 "usage: $0 session-id [image.png ...]"
exit 1
fi
url="http://www.lemonfingers.com/v1/users/portfolio /pieceimageupdate.php"
sessid="$1"
shift
for file; do
curl -b PHPSESSID="$sessid" -F p="${file%.png}" -F pieceimage="@$file;type=image/png" "${url// }"
done
(Lemon Fingers looks like it could do with a verbatim tag or something, just to avoid having to make put all those hacky tags in the middle of the URL just to prevent it from being mangled. The "${url// }" thing hacks around Lemon Fingers' insertion of arbitrary spaces into long strings. Aren't you glad to be using bash?
It requires you to name the image files by the piece ID; so, for Into the fire, the file would be named 500223.png. The script assumes that you use PNG format images, although it would be a trivial change to use another format.
The first argument needs to be the session ID of a session logged in as you. Check your browser's cookie list for that.
Obviously, the heavy-lifting is done using curl. If you don't use bash and/or curl, I might be inclined to write a Perl version (using LWP) if you want it and have Perl installed. Otherwise, tough luck.
The script is public domain. Use it however you want.