Rufus King (writer)

Rufus Frederick King (January 3, 1893, New York City February 13, 1966, Hollywood, Florida)[1] was an American author of whodunit crime novels. He created four series of detective stories: the first one with Reginald De Puyster, a sophisticated detective similar to Philo Vance; the second one with his more famous character, Lieutenant Valcour; the third with Colin Starr, who appeared in four stories in the Strand Magazine during 1940–41; and the fourth with Chief Bill Dugan, who appeared in three stories in The Saint Mystery Magazine and Ellery Queen Mystery Magazine 1956–57.

In 2014, Wildside Press purchased Rufus King's copyrights[2] and began reissuing his work, starting with a collection of Chief Bill Dugan mystery short stories.

Bibliography

WPA poster with Rufus King credit, 1936-1941
  • Murder De Luxe (1927)[3]
  • The Fatal Kiss Mystery (1928)
  • Murder by the Clock (1929)
  • A Woman is Dead (1929)[4]
  • Murder by Latitude (1931)
  • Murder in the Willet Family (1931)
  • Murder on the Yacht (1932)
  • Valcour Meets Murder (1932)
  • The Lesser Antilles Case (1934)
  • Profile of a Murder (1935)
  • The Case of the Constant God (1938)
  • Crime of Violence (1938)
  • Murder Masks Miami (1939)
  • Holiday Homicide (1941)
  • Diagnosis Murder (1942)
  • Design in Evil (1942)
  • A Variety of Weapons (1943)
  • The Deadly Dove (1945)
  • The Case of the Dowager's Etchings (1946)
  • Museum Piece No 13 (1946)
  • Lethal Lady (1947)
  • The Case of the Redoubled Cross (1949)
  • Duenna to a Murder (1951)
  • Malice in Wonderland (1958)
  • The Steps to Murder (1960)
  • The Faces of Danger (1964)
  • Malice in Wonderland: The Adventures of Chief Bill Dugan (2015)
gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
gollark: Except it enumerates all possible ASCII strings instead.
gollark: I made that!
gollark: no.

References

  1. "Rufus King Dies at 72". Fort Lauderdale News. February 14, 1966. p. 6. Retrieved 24 December 2019.
  2. See www.wildsidepress.com/estates.htm
  3. aka Mystery De Luxe
  4. aka Somewhere in this House


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