Hunting The Shadows: The Selected Stories of Tanith Lee, Volume Two

Hunting The Shadows: The Selected Stories of Tanith Lee, Volume Two is a 2009 collection of 12 fantasy and science fiction short stories by author Tanith Lee, published by Wildside Press. Only one story, "Queens in Crimson", is a previously unpublished work. The book includes an introduction by Donald Wollheim.

Hunting The Shadows: The Selected Stories of Tanith Lee, Volume Two
AuthorTanith Lee
Cover artistGeorge Mayer
CountryUnited States
LanguageEnglish
GenreFantasy, short stories
PublisherWildside Press
Publication date
December 2009
Media typePrint (hardback)
Pages264 pp
ISBN978-1-4344-0384-1

Most of the stories of the volume were written in the 1990s, the oldest one having been published in 1989. The story "Doll Skulls" is part of Lee's The Secret Books of Paradys series.

Volume one, titled Tempting The Gods, was previously published in February 2009.

Contents

Hunting The Shadows contains the following tales:

  • "The Woman in Scarlet"
  • "Zelle's Thursday"
  • "Unlocking the Golden Cage"
  • "The Eye in the Heart"
  • "Vermilia"
  • "Flower Water"
  • "Doll Skulls"
  • "Queens in Crimson"
  • "All the Birds of Hell"
  • "The Persecution Machine"
  • "Antonius Bequeathed"

"One for Sorrow"


gollark: The `ipairs` iterator gives us `key, value` for each item of the table (in order). The key is unnecessary here, so it's just bound to `_`, the convention I've seen a lot for variables you're discarding.
gollark: As you can see, you don't actually need to explicitly compute the length anywhere.
gollark: Here's how I would do it:```lualocal function divisible_by_any(n, factors) for _, factor in ipairs(factors) do if n % factor == 0 then return true end end return falseendlocal primes = { 2, 3 }for i = 2, 100 do if not divisible_by_any(i, primes) then table.insert(primes, i) endendfor _, prime in ipairs(primes) do print(prime) end```
gollark: I can't actually read that because ææææ my eyes but it looks like the same thing with less whitespace.
gollark: I mean, it *sort of* is, but instead of actually marking the things it just checks against each factor.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.