<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../assets/xml/rss.xsl" media="all"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>tartley.com (Posts about comic)</title><link>https://www.tartley.com/</link><description></description><atom:link href="https://www.tartley.com/tags/comic.xml" rel="self" type="application/rss+xml"></atom:link><language>en</language><copyright>Contents © 2026 &lt;a href="mailto:tartley @ tartley dot com"&gt;Jonathan Hartley&lt;/a&gt; </copyright><lastBuildDate>Wed, 04 Feb 2026 01:38:21 GMT</lastBuildDate><generator>Nikola (getnikola.com)</generator><docs>http://blogs.law.harvard.edu/tech/rss</docs><item><title>Here</title><link>https://www.tartley.com/posts/here/</link><dc:creator>Jonathan Hartley</dc:creator><description>&lt;p&gt;&lt;img alt="Here cover" src="https://www.tartley.com/files/2025/here.webp"&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;by Richard McGuire (the 304 page graphic novel, not the original 6 page
comic.)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;If you dug &lt;em&gt;Understanding Comics&lt;/em&gt; then you will probably like this. Every panel is a view of the exact same space, occupied by a modest living room in our time, but the frames span a vast time period, and are presented in a chaotic, overlapping, non-chronological way that heightens the drama of several stories that happen, at times, to pass by that location. Experimental stuff.&lt;/p&gt;
&lt;p&gt;I hear there will be a movie. Reminds me of the movies of Alan Moore's comics, which entirely missed the point that he was exploring what could be done in the comic medium which doesn't work in others.&lt;/p&gt;</description><category>book</category><category>comic</category><category>fiction</category><category>media</category><guid>https://www.tartley.com/posts/here/</guid><pubDate>Sat, 31 May 2025 14:24:15 GMT</pubDate></item><item><title>TIL: Constructing a PDF from .jpg image files</title><link>https://www.tartley.com/posts/til-constructing-a-pdf-from-jpg-image-files/</link><dc:creator>Jonathan Hartley</dc:creator><description>&lt;p&gt;I have some folders of .jpg images that make up a comic. I want to convert them into a PDF to read
on my tab and other devices, and import into my Calibre bookshelf.&lt;/p&gt;
&lt;h3&gt;1. Install some prerequisites&lt;/h3&gt;
&lt;div class="code"&gt;&lt;pre class="code literal-block"&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;apt&lt;span class="w"&gt; &lt;/span&gt;install&lt;span class="w"&gt; &lt;/span&gt;imagemagick&lt;span class="w"&gt; &lt;/span&gt;pdftk
&lt;/pre&gt;&lt;/div&gt;

&lt;h3&gt;2. Do the conversion&lt;/h3&gt;
&lt;p&gt;The versatile ImageMagick has a 'convert' command that seems to handle it:&lt;/p&gt;
&lt;div class="code"&gt;&lt;pre class="code literal-block"&gt;convert&lt;span class="w"&gt; &lt;/span&gt;*.jpg&lt;span class="w"&gt; &lt;/span&gt;output.pdf
&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;But this has some issues:&lt;/p&gt;
&lt;h4&gt;2.1. Failure due to security policy&lt;/h4&gt;
&lt;p&gt;'convert' currently refuses to generate PDFs: 'attempt to perform an operation not allowed by the security policy'. Apply the fix described on &lt;a href="https://stackoverflow.com/questions/52998331/imagemagick-security-policy-pdf-blocking-conversion"&gt;StackOverflow&lt;/a&gt;. :eyeroll:&lt;/p&gt;
&lt;h4&gt;2.2. Failure due to cache space&lt;/h4&gt;
&lt;p&gt;You might not need this fix if you generate smaller documents, or generate chapter-by-chapter as
described below, but here it is in case.&lt;/p&gt;
&lt;p&gt;Don't close that editor! In the same policy.xml you were just editing are resource size declarations for memory and disk. If 'convert' barfs with an error about running out of cache space, then bump
up the disk resource size. I set mine to 8GB. &lt;a href="https://unix.stackexchange.com/questions/329530/increasing-imagemagick-memory-disk-limits"&gt;StackOverflow again&lt;/a&gt; for details. :eyeroll: again.&lt;/p&gt;
&lt;h3&gt;3. Include a table of contents&lt;/h3&gt;
&lt;p&gt;I want to add bookmarks to the generated PDF marking each chapter.&lt;/p&gt;
&lt;p&gt;Put the .jpgs into subdirectories by chapter, eg:&lt;/p&gt;
&lt;div class="code"&gt;&lt;pre class="code literal-block"&gt;src/
|--chapter01/
|  |--0001.jpg
|  |--0002.jpg
|  |  ...
|--chapter02/
|  |--0001.jpg
|  |--0002.jpg
|  |  ...
|
...
&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Pad the chapter numbers with preceding zeros so that they sort into the correct order. I added
an artificial 'chapter00' containing the front cover, separate from individual chapters.&lt;/p&gt;
&lt;p&gt;Now we need to generate individual PDFs for each chapter. We can then use 'pdftk' to
count the number of pages in each chapter, and use those counts to place bookmarks on
the correct pages when pfdtk combines the chapters into one final output PDF.&lt;/p&gt;
&lt;p&gt;I ended up regenerating each chapter a bunch while I tweaked the content, such as deleting adverts
from the images. So I put these commands into a Makefile:&lt;/p&gt;
&lt;div class="code"&gt;&lt;pre class="code literal-block"&gt;&lt;span class="nf"&gt;help&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="c"&gt;## Show this help.&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;@grep&lt;span class="w"&gt; &lt;/span&gt;-E&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s1"&gt;'^[^_][a-zA-Z_\/\.%-]+:.*?## .*$$'&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;MAKEFILE_LIST&lt;span class="k"&gt;)&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;|&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;awk&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s1"&gt;'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-12s\033[0m %s\n", $$1, $$2}'&lt;/span&gt;
&lt;span class="nf"&gt;.PHONY&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;help&lt;/span&gt;

&lt;span class="nv"&gt;chapter_dirs&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;wildcard&lt;span class="w"&gt; &lt;/span&gt;src/*&lt;span class="k"&gt;)&lt;/span&gt;
&lt;span class="nv"&gt;chapters&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;chapter_dirs:src/%&lt;span class="o"&gt;=&lt;/span&gt;%&lt;span class="k"&gt;)&lt;/span&gt;
&lt;span class="nv"&gt;chapter_pdfs&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;chapters:%&lt;span class="o"&gt;=&lt;/span&gt;%.pdf&lt;span class="k"&gt;)&lt;/span&gt;
&lt;span class="nv"&gt;bookmarks&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;bookmarks.txt
&lt;span class="nv"&gt;output&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;output.pdf

&lt;span class="nf"&gt;clean&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="c"&gt;## Delete all generated PDFs&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;rm&lt;span class="w"&gt; &lt;/span&gt;-f&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;chapter_pdfs&lt;span class="k"&gt;)&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;output&lt;span class="k"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;.PHONY&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;clean&lt;/span&gt;

&lt;span class="nf"&gt;chapter%.pdf&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;src&lt;/span&gt;/&lt;span class="n"&gt;chapter&lt;/span&gt;%/*.&lt;span class="n"&gt;jpg&lt;/span&gt; &lt;span class="c"&gt;## Each individual chapter, use 2 digits&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;convert&lt;span class="w"&gt; &lt;/span&gt;src/chapter&lt;span class="nv"&gt;$*&lt;/span&gt;/*.jpg&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;$@&lt;/span&gt;

&lt;span class="nf"&gt;$(bookmarks)&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;&lt;span class="nv"&gt;chapter_pdfs&lt;/span&gt;&lt;span class="k"&gt;)&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;./make-bookmarks&lt;span class="w"&gt; &lt;/span&gt;&amp;gt;&lt;span class="k"&gt;$(&lt;/span&gt;bookmarks&lt;span class="k"&gt;)&lt;/span&gt;

&lt;span class="nf"&gt;$(output)&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;&lt;span class="nv"&gt;chapter_pdfs&lt;/span&gt;&lt;span class="k"&gt;)&lt;/span&gt; &lt;span class="k"&gt;$(&lt;/span&gt;&lt;span class="nv"&gt;bookmarks&lt;/span&gt;&lt;span class="k"&gt;)&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;pdftk&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;chapter_pdfs&lt;span class="k"&gt;)&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;cat&lt;span class="w"&gt; &lt;/span&gt;output&lt;span class="w"&gt; &lt;/span&gt;-&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;|&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="se"&gt;\&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;pdftk&lt;span class="w"&gt; &lt;/span&gt;-&lt;span class="w"&gt; &lt;/span&gt;update_info&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;bookmarks&lt;span class="k"&gt;)&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;output&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;output&lt;span class="k"&gt;)&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;

&lt;span class="nf"&gt;all&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;&lt;span class="nv"&gt;output&lt;/span&gt;&lt;span class="k"&gt;)&lt;/span&gt; &lt;span class="c"&gt;## Build final output PDF&lt;/span&gt;
&lt;span class="nf"&gt;.PHONY&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;all&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Where 'make-bookmarks' is a bash script that generates the intermediate 'bookmarks.txt' file:&lt;/p&gt;
&lt;div class="code"&gt;&lt;pre class="code literal-block"&gt;&lt;span class="ch"&gt;#!/usr/bin/env bash&lt;/span&gt;

&lt;span class="nb"&gt;set&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;-e&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="c1"&gt;# exit on error&lt;/span&gt;
&lt;span class="nb"&gt;set&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;-u&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="c1"&gt;# treat unset vars as errors&lt;/span&gt;
&lt;span class="c1"&gt;# set -x # debugging output&lt;/span&gt;
&lt;span class="nb"&gt;set&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;-o&lt;span class="w"&gt; &lt;/span&gt;pipefail

&lt;span class="c1"&gt;# Generate a bookmarks file for all the matching PDF files&lt;/span&gt;

&lt;span class="nv"&gt;fmt&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"BookmarkBegin&lt;/span&gt;
&lt;span class="s2"&gt;BookmarkTitle: %s&lt;/span&gt;
&lt;span class="s2"&gt;BookmarkLevel: 1&lt;/span&gt;
&lt;span class="s2"&gt;BookmarkPageNumber: %d&lt;/span&gt;
&lt;span class="s2"&gt;"&lt;/span&gt;

&lt;span class="nb"&gt;declare&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;-a&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;files&lt;/span&gt;&lt;span class="o"&gt;=(&lt;/span&gt;chapter*.pdf&lt;span class="o"&gt;)&lt;/span&gt;
&lt;span class="nv"&gt;page&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;1&lt;/span&gt;
&lt;span class="k"&gt;for&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;file&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;in&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="si"&gt;${&lt;/span&gt;&lt;span class="nv"&gt;files&lt;/span&gt;&lt;span class="p"&gt;[@]&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;do&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;&lt;span class="nv"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="si"&gt;${&lt;/span&gt;&lt;span class="nv"&gt;file&lt;/span&gt;&lt;span class="p"&gt;%.*&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;&lt;span class="nb"&gt;printf&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="nv"&gt;$fmt&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="nv"&gt;$title&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="nv"&gt;$page&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;&lt;span class="nv"&gt;num_pages&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;pdftk&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="nv"&gt;$file&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;dump_data&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;|&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;grep&lt;span class="w"&gt; &lt;/span&gt;NumberOfPages&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;|&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;awk&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s1"&gt;'{print $2}'&lt;/span&gt;&lt;span class="k"&gt;)&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;&lt;span class="nv"&gt;page&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="k"&gt;$((&lt;/span&gt;&lt;span class="nv"&gt;page&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;num_pages&lt;/span&gt;&lt;span class="k"&gt;))&lt;/span&gt;
&lt;span class="k"&gt;done&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Now &lt;code&gt;make all&lt;/code&gt; will produce the final output.pdf. You might want to open up the generated
bookmarks.txt and edit the placeholder "chapter01" names. Then run &lt;code&gt;make all&lt;/code&gt; again to
regenerate the final output PDF with your fixed chapter names.&lt;/p&gt;
&lt;p&gt;&lt;img alt="Rorschach II meets Adrian" src="https://www.tartley.com/files/2024/doomsday-clock-r2-meets-adrian.webp"&gt;&lt;/p&gt;</description><category>bash</category><category>comic</category><category>geek</category><category>linux</category><category>terminal</category><category>til</category><guid>https://www.tartley.com/posts/til-constructing-a-pdf-from-jpg-image-files/</guid><pubDate>Mon, 21 Oct 2024 14:55:18 GMT</pubDate></item><item><title>Doomsday Clock</title><link>https://www.tartley.com/posts/doomsday-clock/</link><dc:creator>Jonathan Hartley</dc:creator><description>&lt;p&gt;&lt;em&gt;By Geoff Johns (writer), Gary Frank (pencil) &amp;amp; Brad Anderson (colors). (2017-2019)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://archive.org/details/Watchmen1987"&gt;&lt;em&gt;Watchmen&lt;/em&gt;&lt;/a&gt; is a
seminal 12-issue superhero comic by Alan Moore (writer) &amp;amp; Dave Gibbons
(artist), published from 1986 to 1987, that transformed the comics world. A
superhero tale in which all-but-one of the superheroes have no superhuman
powers at all.&lt;/p&gt;
&lt;p&gt;The decades since have spawned a number of remakes, sequels, prequels and
spin-offs. Zach Snyder's movie adaptation has its adherents, although I am not
among them - one of Moore's goals was always to explore what makes the comic
medium unique, developing and advancing the boundaries of what you can do in
a comic but cannot do in other media. For example, a reader absorbs a comic at
their own pace, and will often voluntarily flip back to clarify overlooked
aspects of recent panels. What use, then, a shot-for-shot remake in the medium
of video, which steamrolls the viewer along, heedless of their desire to
cross-check important details? The HBO miniseries sequel, on the other hand,
was excellent - better than I imagined any Watchmen sequel could be. But other
than that they have not been very good.&lt;/p&gt;
&lt;p&gt;I initially thought the 12 issue sequel &lt;em&gt;Doomsday Clock&lt;/em&gt; comic would fall
solidly into this group - indeed, it was decried by many review headlines,
so I passed it by when it came out a couple of years ago.&lt;/p&gt;
&lt;p&gt;But on reading it last week, I really enjoyed it. It really swings for the
fences, providing a smashing tale, with good arcs for both old and new
characters, and a genuine attempt to advance the conversation that &lt;em&gt;Watchmen&lt;/em&gt;
started by deconstructing the superhero.&lt;/p&gt;
&lt;p&gt;&lt;span style="background:#bb2200; color:white; border-radius: 1em; padding-left: 0.5em; padding-right: 0.5em; padding-top: 2px;"&gt;&lt;b&gt;spoilers&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;We last saw Dr Manhattan at the end of &lt;em&gt;Watchmen&lt;/em&gt;, having been isolated from
humanity by Adrien Veidt's plans, tired of his entanglement in the messy
complexity of people's lives, threatening to leave the galaxy "for one less
complicated".&lt;/p&gt;
&lt;center&gt;
![Manhattan's departure at the end of Watchmen](/files/2022/doomsday-clock-watchmen-manhattan.webp)
&lt;/center&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;In &lt;em&gt;Doomsday Clock&lt;/em&gt;, Adrian Veidt, genius that he is, invents a means to follow
Dr Manhattan, seeking his help with the re-emergence of imminent nuclear war
brought about by the revelations in Rorschach's journal, and it becomes clear
that the "simpler place" Dr Manhattan has journeyed to is the DC universe,
populated by Superman, Batman, and the &lt;em&gt;whole&lt;/em&gt; stable of DC heroes.&lt;/p&gt;
&lt;p&gt;Various other &lt;em&gt;Watchmen&lt;/em&gt; characters make their way, or are transferred to, the
DC universe. This has been described across the comic industry as "the
crossover event nobody wanted", but personally I felt it was really well done.&lt;/p&gt;
&lt;p&gt;Two of the most prominently deceased &lt;em&gt;Watchmen&lt;/em&gt; characters are brought back
into play, using mechanisms I thought were legitimate and, on occasion,
laugh-out-loud satisfying as they reached their resolution.&lt;/p&gt;
&lt;center&gt;
![Doomsday Clock Watchmen Comedian Alive](/files/2022/doomsday-clock-comedian.webp)
&lt;/center&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;In particular, they find a way to bring back Rorschach. Or, at least, &lt;em&gt;a&lt;/em&gt;
Rorschach. Another individual picks up the mask. This seems like the most
controversial of the many decisions in the book, but it's handled deftly, and
there are both similarities and differences between the old and the new
Rorschach, making it an interesting character in its own right. In some ways
this transformation is reminiscent of HBO Watchmen's treatment of Hooded
Justice - retaining everything we already knew about the character, but
performing an astonishing piece of narrative ju-jitsu to utterly transform
everything about what that meant.&lt;/p&gt;
&lt;p&gt;The DC heroes slowly realize their world is being altered by Dr Manhattan's
manipulations, tying this crossover into the latest of the DC universe's
"crisis" events, as Manhattan experiments with this reality, in order to
understand it. In doing so, he uncovers deep truths that affect the
inter-relationship between all the DC time-lines and universes, establishing
that historical stories, such as Superman's original appearance in Action
Comics of the 1930s, represent realities that still exist, out in the
multiverse, unaffected by subsequent commercial re-ploughing that forever
drives Superman's origin story further forward in time over the years. All
these worlds, including the various DC pre-crisis worlds, are accessible to
Manhattan's powers.&lt;/p&gt;
&lt;p&gt;Incidentally, this enables DC to undo the changes wrought by the last few
years' unpopular &lt;a href="https://en.wikipedia.org/wiki/The_New_52"&gt;"New 52" era&lt;/a&gt;. This
meant nothing to me when I started reading, I know basically nothing about
American comics, only being familiar with the fabulous British
&lt;a href="https://2000ad.com"&gt;&lt;em&gt;2000AD&lt;/em&gt;&lt;/a&gt;. I was spurred into reading around the DC lore,
and by the time I was done, I understood that the &lt;em&gt;New 52&lt;/em&gt; reality included
things like
&lt;a href="https://www.cbr.com/justice-league-darkseid-war-guide/"&gt;The Justice League's alternate roster&lt;/a&gt;,
the
&lt;a href="https://www.cbr.com/superman-ma-pa-kent-deaths/"&gt;early death of Clark's parents&lt;/a&gt;,
which distances Superman from humanity and changes the character dramatically,
the loss of the Justice Society of America from Earth, and the loss of Wally
West's Flash. All these and more are written off as the effects of Dr
Manhattan's meddling, isolated and preserved in just another spun-off part of
the multiverse, while being jettisoned from the privileged &lt;em&gt;metaverse&lt;/em&gt;, the
core template from which all subsequent multiversal threads are forged, as it
reverts to more-or-less its former state when Manhattan's changes are undone
during &lt;em&gt;Doomsday Clock&lt;/em&gt;'s story.&lt;/p&gt;
&lt;p&gt;In doing all this, Manhattan exhibits his usual clinical detachment from the
human consequences of his actions, setting himself up as the villain of the
piece, an uncaring "being of inaction", in contrast to Superman, the literal
"man of Action".&lt;/p&gt;
&lt;center&gt;
![Doomsday Clock: Superman &amp;amp; Manhattan](/files/2022/doomsday-clock-superman.webp)
&lt;/center&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;This forms a genuine riposte to &lt;em&gt;Watchmen's&lt;/em&gt; criticism of the superhero genre.
Yes, the DC heroes inhabit a simpler world, but the simplicity serves a purpose.
Escaping the mundane enhances the mythological power of what they represent as
symbols. Particularly the value of &lt;em&gt;hope&lt;/em&gt;, as personified by Superman, which,
although possibly somewhat overwrought in the telling - quite literally, in
this tale - makes all other things possible.&lt;/p&gt;
&lt;p&gt;I was especially pleased with the quiet, understated places Doomsday Clock goes
with &lt;em&gt;Mothman's&lt;/em&gt;, back-story. The character in &lt;em&gt;Watchmen&lt;/em&gt; was only a punchline,
a recurring throwaway reference to instability and alcoholism, telegraphing his
subsequent mental breakdown. But here, we see him fully fleshed out.&lt;/p&gt;
&lt;p&gt;Like the rest of the &lt;em&gt;Watchmen&lt;/em&gt; heroes, he has no magical superhuman powers,
but is still able to pull off entirely unexpected and superhuman-seeming
stunts, merely by the virtue of his own unique kind of extreme mental and
emotional resourcefulness. Flawed, but aware of his faults, and able to pull it
together when he needs to, he befriends the younger Rorschach II during their
overlapping stays in a mental institution, becoming a beacon of warmth,
kindness, and generosity to the younger man.&lt;/p&gt;
&lt;p&gt;He acts as a symbol, if you will, that just as &lt;em&gt;Watchmen's&lt;/em&gt; ruthless gaze
influenced the wider world of comics, so the comic world gazes back. They see
us, all the real-world, fully-rounded humans, trapped in the depths of our
pathos, and they wonder, when will each of us learn to transcend our humdrum
limitations, to finally act on our hopes and dreams, and &lt;em&gt;fly...&lt;/em&gt;&lt;/p&gt;
&lt;center&gt;
![Doomsday Clock: Mothman](/files/2022/doomsday-clock-mothman.webp)
&lt;/center&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description><category>book</category><category>comic</category><category>fiction</category><category>media</category><category>moore</category><category>science-fiction</category><guid>https://www.tartley.com/posts/doomsday-clock/</guid><pubDate>Fri, 23 Sep 2022 01:57:55 GMT</pubDate></item><item><title>The Electric State</title><link>https://www.tartley.com/posts/the-electric-state/</link><dc:creator>Jonathan Hartley</dc:creator><description>&lt;p&gt;&lt;span style="float: right"&gt;
&lt;img alt="The Electric State cover" src="https://www.tartley.com/files/2022/the-electric-state-cover.webp"&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;by Simon Stålenhag (2017)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I listen to
&lt;a href="https://damiengwalter.com/podcast/"&gt;a really fantastic science fiction podcast&lt;/a&gt;
by Damien Walter, which is fascinatingly cerebral. Damien selected Stålenhag's
work for his recent round-up of
&lt;a href="https://damiengwalter.com/2021/12/03/the-21-most-significant-science-fiction-storytellers-of-the-21st-century-so-far/"&gt;the 21 most significant science fiction storytellers of the 21st century (so
far)&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This is the same artist whose work inspired 2020's
&lt;em&gt;&lt;a href="https://www.imdb.com/title/tt8741290/"&gt;Tales from the Loop&lt;/a&gt;&lt;/em&gt;,
and Damien's selection spurred me to engage more fully than just browse around
Stålenhag's images all over the web.&lt;/p&gt;
&lt;p&gt;I wasn't disappointed. The word count is low enough to be considered a short,
but the main event is the accompanying illustrations, which are downright
startling in their contrasts of the mundane and the fantastic.&lt;/p&gt;
&lt;p&gt;Charting the journey of a runaway teenager and her small yellow robot, through
a ruined near-future American landscape, littered with the debris of a high
tech consumerist society addicted to an all-encompassing virtual-reality
system. As they approach the edge of the continent, the world outside the car
window unravels at an ever faster pace, as if somewhere beyond the horizon, the
hollow core of civilization has finally caved in.&lt;/p&gt;
&lt;p&gt;&lt;br style="clear: both"&gt;&lt;/p&gt;</description><category>book</category><category>comic</category><category>fiction</category><category>media</category><category>science-fiction</category><guid>https://www.tartley.com/posts/the-electric-state/</guid><pubDate>Mon, 14 Feb 2022 01:32:45 GMT</pubDate></item><item><title>The Incal</title><link>https://www.tartley.com/posts/the-incal/</link><dc:creator>Jonathan Hartley</dc:creator><description>&lt;p&gt;&lt;span style="float: left"&gt;
&lt;img alt="The Incal 4 cover" src="https://www.tartley.com/files/2022/the-incal-4-cover.webp"&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="clear: right; float: right"&gt;
&lt;img alt="The Incal The Fall " src="https://www.tartley.com/files/2022/the-incal-the-fall.webp"&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="clear: right; float: right"&gt;
&lt;img alt="The Incal The Fall " src="https://www.tartley.com/files/2022/the-incal-divinity.webp"&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="clear: right; float: right"&gt;
&lt;img alt="The Incal 4 cover excerpt" src="https://www.tartley.com/files/2022/the-incal-4-cover-part.webp"&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Written by Alejandro Jodorowsky, art by Jean Giraud (aka Mœbius), 1980-88&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I grabbed this in the English translation from the original French, having been
intrigued by the &lt;em&gt;Pocket Essential Alan Moore&lt;/em&gt;'s description of it as a
contender for "the best comic in the medium's history".&lt;/p&gt;
&lt;p&gt;This creative pairing also worked together on
&lt;a href="https://en.wikipedia.org/wiki/Jodorowsky%27s_Dune"&gt;the unproduced 1970s movie of Dune&lt;/a&gt;,
the one whose cast was to have included Salvador Dalí, Orson Welles,
Gloria Swanson, and Mick Jagger, and presumably would have been pretty trippy -
I mean, &lt;em&gt;even more&lt;/em&gt; trippy than the David Lynch one turned out to be. The
artist, Mœbius, has had a long and glorious career, knighted for his art in his
native France, and he worked on other movies such as Alien, Tron, The Fifth
Element, and The Abyss.&lt;/p&gt;
&lt;p&gt;Echoes of all of these are visible throughout the consistently stunning
artwork of The Incal, and it has been explicitly noted as an influence on the
expansive decayed futurescapes of Akira and Blade Runner, and the flamboyant
visuals of the Star Wars prequels.&lt;/p&gt;
&lt;p&gt;The writing really swings for the fences, a sprawling tale of a reluctant
hero's journey, taking in societal commentary, intergalactic travel, spiritual
transformation, iconic incarnations of good and evil, and a deep thread of
mysticism.&lt;/p&gt;
&lt;p&gt;For me, it does have a very evident "foreign" feeling - small social nuances
with which I'm unfamiliar. Equally clearly, this is part of its exotic charm.
And while the story touches on, perhaps even consists of, deep themes, it
doesn't so much articulately explore them, but instead simply incorporates
them. This is not a comic for people who are not already comic fans.&lt;/p&gt;
&lt;p&gt;In lesser hands, it might have been undisciplined. But wherever the story
roams, the artwork is endlessly enthralling. I especially liked the touch of
protagonist, John DiFool, starting out distinctly ugly, but being rendered more
handsomely on the rare occasions he manages to get in touch with his more noble
aspects. Jodorowsky manages to keep it all together, bringing it around to a
splendidly satisfying theatrical close. &lt;em&gt;Bravo!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;br style="clear: both"&gt;&lt;/p&gt;</description><category>book</category><category>comic</category><category>fiction</category><category>media</category><category>science-fiction</category><category>time-travel</category><guid>https://www.tartley.com/posts/the-incal/</guid><pubDate>Wed, 05 Jan 2022 19:56:03 GMT</pubDate></item><item><title>Demon</title><link>https://www.tartley.com/posts/demon/</link><dc:creator>Jonathan Hartley</dc:creator><description>&lt;p&gt;&lt;span style="float: left"&gt;
&lt;img alt="Demon cover" src="https://www.tartley.com/files/2021/demon-cover.jpg"&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;by Jason Shiga (2016)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I'm just discovering the works of &lt;a href="http://www.shigabooks.com"&gt;Jason Shiga&lt;/a&gt;,
creator of mathematically-inspired nonlinear comic-books, e.g. stories drawn
on complex origami structures, that can be folded in various ways to represent
either branching story-lines, or else to manage state such as 'inventory'.
Construction of these more elaborate paper constructions doesn't scale,
(ie. I'm not likely to ever own one) but you can try some of his other
creations on the web.&lt;/p&gt;
&lt;p&gt;This is &lt;a href="http://www.shigabooks.com/index.php?page=001"&gt;Demon&lt;/a&gt;,
a regular linear web-comic.&lt;/p&gt;
&lt;p&gt;The storyline is 'math-inspired' too, in the same way that the movie &lt;em&gt;Primer&lt;/em&gt;
is - intense, absolute, ruthless, narrative exploration of logical
implications, while continually, dizzyingly, escalating to the next level.&lt;/p&gt;
&lt;p&gt;&lt;br style="clear: left"&gt;&lt;/p&gt;</description><category>comic</category><category>fiction</category><category>free-to-read</category><category>media</category><guid>https://www.tartley.com/posts/demon/</guid><pubDate>Mon, 31 May 2021 16:08:52 GMT</pubDate></item><item><title>Swamp Thing, Vol 1: Saga of the Swamp Thing</title><link>https://www.tartley.com/posts/swamp-thing/</link><dc:creator>Jonathan Hartley</dc:creator><description>&lt;p&gt;&lt;span style="float: left"&gt;
&lt;img alt="Swamp Thing cover" src="https://www.tartley.com/files/2019/06/swamp-thing-vol-1.jpg"&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;by Alan Moore, Jogn Totleben, &amp;amp; Steve Bissette&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background:#bb2200; color:white; border-radius: 1em; padding-left: 0.5em; padding-right: 0.5em; padding-top: 2px;"&gt;&lt;b&gt;spoilers&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Moore's deconstruction of existing characters continues. Originally Swamp Thing
was Alec Holland, miraculously transformed by an infusion of artificially
stimulated plant matter. When Alan Moore takes over the writing, Swamp Thing's
ostracization and existential dread is compounded by the discovery that this
origins story has been a delusion all along. Alec Holland was killed outright
in the accident, and an accumulation of plant matter grew around his decaying
form, integrating the physical remains of his memories into a creature that
yearned to recapture its human form, but was never human in the first place.&lt;/p&gt;
&lt;p&gt;&lt;br style="clear: both"&gt;&lt;/p&gt;</description><category>book</category><category>comic</category><category>fiction</category><category>media</category><category>moore</category><category>science-fiction</category><guid>https://www.tartley.com/posts/swamp-thing/</guid><pubDate>Mon, 24 Jun 2019 02:50:43 GMT</pubDate></item><item><title>Miracleman, books 1, 2 &amp; 3</title><link>https://www.tartley.com/posts/miracleman/</link><dc:creator>Jonathan Hartley</dc:creator><description>&lt;p&gt;&lt;span style="float: left"&gt;
&lt;img alt="Miracleman cover" src="https://www.tartley.com/files/2019/06/miracleman.jpg"&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;by Alan Moore, Alan Davies, &amp;amp; John Totleben.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I spent a little time digging out earlier works of Alan Moore. These
inter-library loans didn't disappoint.&lt;/p&gt;
&lt;p&gt;Originally published as &lt;em&gt;Marvelman&lt;/em&gt; by Mick Anglo, from
1954-59. Legal battles re-branded the character as &lt;em&gt;Miracleman&lt;/em&gt; in 1985.&lt;/p&gt;
&lt;p&gt;&lt;span style="background:#bb2200; color:white; border-radius: 1em; padding-left: 0.5em; padding-right: 0.5em; padding-top: 2px;"&gt;spoilers&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The opening pages reprint one of those campy early stories, involving
primary-colored moralizing while flying around to punch time-travelling Nazi
super-scientists.&lt;/p&gt;
&lt;p&gt;They then continue with Alan Moore's postmodern 1980s reboot. This recasts the
simplistic tales of the original period as a placating dream, fed to a captured
Miracleman by his nemesis. His hokey origins story is similarly re-ploughed. The
ensuing tales are dark and introspective.&lt;/p&gt;
&lt;p&gt;One thread follows the emotional stresses placed on Miracleman when incarnated
as his human alter-ego, the frail and fallible half of a godlike being. He's
unable to conceive a child with his wife, although it turns out &lt;em&gt;Miracleman&lt;/em&gt;
can, and succumbs to self-loathing and jealousy, culminating in a touching
scene in which he climbs a mountain, leaves a forlorn monument, and changes
into Miracleman one last time, never to change back.&lt;/p&gt;
&lt;p&gt;Yes, this is more uneven than Moore's later works. Yes, it's unashamedly an
underwear-on-the-outside superhero story. But nonetheless I loved it, and
scenes like the above stayed with me for months.&lt;/p&gt;
&lt;p&gt;Also this month:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Atrocity Archive&lt;/strong&gt; by Charles Stross. The conceit of Lovecraftian horror
rationalized to a mathematical or computable topic is appealing to me, and
kept the pages turning, but I didn't ultimately find it life-changing.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Nightwings&lt;/strong&gt; by Robert Silverberg. A fantastical far-future tale of humanity
split into occupational castes, guarding the world against prophesied
invasion. Not my thing.&lt;/p&gt;
&lt;p&gt;&lt;br style="clear: both"&gt;&lt;/p&gt;</description><category>book</category><category>comic</category><category>fiction</category><category>media</category><category>moore</category><category>science-fiction</category><guid>https://www.tartley.com/posts/miracleman/</guid><pubDate>Thu, 20 Jun 2019 15:17:46 GMT</pubDate></item><item><title>From Hell</title><link>https://www.tartley.com/posts/from-hell/</link><dc:creator>Jonathan Hartley</dc:creator><description>&lt;p&gt;&lt;span style="float: left"&gt;
&lt;img alt="From Hell" src="https://www.tartley.com/files/2007/07/fromhellsm.jpg"&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;by Alan Moore (author), Eddie Campbell (artist) (1989)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Moore has almost single-handedly transformed the definition of the comic
industry in the last 20 years, and this fetishistically researched
comic-book dramatisation of the dark and macabre Jack the Ripper murders
is no exception to his visionary high standards.&lt;/p&gt;
&lt;p&gt;&lt;span style="background:#bb2200; color:white; border-radius: 1em; padding-left: 0.5em; padding-right: 0.5em; padding-top: 2px;"&gt;&lt;b&gt;spoilers&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Moore plunges headlong into the sensational conspiracy theory that Royal
Physician, Dr. William Gull, killed East End prostitutes to silence the story
of an illegitimate royal baby, under the direct orders of the implacable Queen
Victoria herself.&lt;/p&gt;
&lt;p&gt;Dr Gull regards his mission as the great work of his life, which will
not only quash the threat to the crown, but also fulfil ancient pagan
destinies, reasserting the male dominance over matriarchy that began
when the Romans reclaimed London and slew Queen Boadicea. Gull knows
this because he has knelt before his God, who told him just what needed
to be done. As a doctor, Gull knows that these visions are madness,
brought about by his stroke of the previous year. As a man, however, he
responds that "If this is madness, who'd be sane?", and, embracing the
subjective reality of his hallucinations, he goes about his work with
gusto, confiding along the way in his witless coachman and reluctant
accomplice, Nettley.&lt;/p&gt;
&lt;p&gt;&lt;img alt="Dr Gull and coachman Nettley" src="https://www.tartley.com/files/2007/07/boadicea-died-sm.jpg" title="Dr. Gull &amp;amp; coachman Nettley"&gt;&lt;/p&gt;
&lt;p&gt;The story is a tapestry, woven on many levels. The iniquities of wealth
and power are richly depicted as the poverty-stricken residents of the
East End are contrasted with the powers-that-be, who move swiftly and
decisively to ensure that Gull is never caught nor found out, for fear
of scandal, even while he goes on killing with impunity.&lt;/p&gt;
&lt;p&gt;The appalling violence of the murders and dismemberment of the victims
is shown in unflinching detail, one pivotal 34-page chapter "The Best of
all Tailors", consisting solely of the actions of Gull, a renowned
surgeon, with his victim in a tiny, squalid room, which made me
profoundly grateful that the sketches are only in black-and-white.&lt;/p&gt;
&lt;p&gt;Such graphic nastiness is not for no reason. Gull is convinced that the
act of violence is a pivotal part of the ancient and grisly prophesies
he is enacting. Under the psychological strain of each successive
murder, Gull experiences increasingly vivid hallucinations, symptoms of
his condition. But then, something altogether strange starts to happen.
As his visions become more vivid, Gull begins to experience glimpses of
the future. Visions of our time. At times and places where people have
historically claimed to have seen the ghost of Jack the Ripper, Moore
cunningly reverses the perspective, allowing Gull to see them also. By
the end, Gull's visions have him stalking the sterile hallways of the
modern world in blood-soaked shirtsleeves, roaring at oblivious office
workers, exhorting them to look up and remember the history from which
our century was birthed in blood. The ancient magic that Gull raved
about was real, while we have lost our connection to our violent and
animal past, and with it, our very humanity.&lt;/p&gt;
&lt;p&gt;&lt;img alt="Nettley's coach - harbinger of doom." src="https://www.tartley.com/files/2007/07/coach-sm.png" title="Nettley's coach - harbinger of doom."&gt;&lt;/p&gt;
&lt;p&gt;Rating: 10/10.
Cor blimey it's a classic.&lt;/p&gt;
&lt;p&gt;&lt;br style="clear: both"&gt;&lt;/p&gt;</description><category>book</category><category>comic</category><category>fiction</category><category>media</category><category>mental-health</category><category>moore</category><guid>https://www.tartley.com/posts/from-hell/</guid><pubDate>Sun, 22 Jul 2007 03:34:22 GMT</pubDate></item></channel></rss>