Double Jeopardy (novel)

Double Jeopardy is a science fiction novel by Fletcher Pratt. It was first published in hardcover by Doubleday in 1952, and reprinted as a selection of the Science Fiction Book Club in 1953. The first paperback edition was issued in digest form by Galaxy Publishing Corporation as its Galaxy Science Fiction Novel #30 in 1957; a second paperback edition was issued by Curtis Books in 1967. The novel has been translated into Italian.[1] The book is a combination of two shorter pieces, the novellas "Double Jeopardy" and "The Square Cube Law," originally published in the magazine Thrilling Wonder Stories in the issues for April, 1952 and June, 1952, respectively.[1][2][3]

Double Jeopardy
First edition dust jacket
AuthorFletcher Pratt
Cover artistWhitney Bender
CountryUnited States
LanguageEnglish
GenreScience fiction
PublisherDoubleday
Publication date
1952
Media typePrint (hardcover)
Pages214 pp

Plot

The story features Pratt's detective hero George Helmfleety Jones in two adventures dealing with the ramifications of a newly discovered matter-duplication process. The first concerns a case of industrial espionage involving the bootlegging of duplicated drugs, and includes Jones's marriage to a duplicated woman. The second is a locked-room mystery in which a fortune is somehow stolen from a sealed, pilotless cargo plane.

Reception

Groff Conklin called the book "a slick, fast-paced science fiction detective story, one of the best-integrated combinations of its kind." He rates the second part "considerably better than the first," with its "twist on the locked-room school of murder mysteries ... a highly effective one."[4] The book was also reviewed by Noah Gordon in Avon Science Fiction and Fantasy Reader, January 1953, an anonymous reviewer in Weird Tales, January 1953, and P. Schuyler Miller in Astounding Science Fiction, April 1953.[1]

gollark: I want a *different* set of "OPERATIONS ON RELEVANT NODE THING" and no HTML generation at the end, and it would be bees to just copy-paste the function here.
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```
gollark: cmark. I will explain.
gollark: Hmm. Gibson, you use nim, yes? How can I nicely™ abstract this C library?
gollark: Hi.

References

  1. Double Jeopardy (novel) title listing at the Internet Speculative Fiction Database
  2. Double Jeopardy (novella) title listing at the Internet Speculative Fiction Database
  3. The Square Cube Law title listing at the Internet Speculative Fiction Database
  4. Conklin, Groff. "Galaxy's 5 Star Shelf," in Galaxy Science Fiction, November 1952, pp. 122-123.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.