Lord of the Silent

Lord of the Silent (2001) is the 13th in a series of historical mystery novels, written by Elizabeth Peters and featuring fictional sleuth and archaeologist Amelia Peabody.

Lord of the Silent
First edition cover for Lord of the Silent
AuthorElizabeth Peters
CountryUnited States
LanguageEnglish
SeriesAmelia Peabody mysteries
GenreHistorical mystery
PublisherWilliam Morrow
Publication date
2001
Media typePrint (hardback & paperback)
Pagesx, 400 pp
ISBN0-380-97884-9
OCLC46833594
813/.54 21
LC ClassPS3563.E747 L67 2001
Preceded byHe Shall Thunder in the Sky 
Followed byThe Golden One 

Plot introduction

In this installment, which takes place during the 1915–1916 season, newlyweds Ramses and Nefret Emerson spend their time living on their family's dahabeeyah on the Nile, while the rest of the group remains at the house near Giza, where their excavations continue. Between the antics of Ramses' former associates in the smuggling trade, the reappearance of the Master Criminal, and yet another unknown adversary with a rich find, little time is permitted for romance...but of course, the younger Emersons make the most of it.

Explanation of the novel's title

The title of the book refers to Amon-Re:

"Amon, King of the Gods, Lord of the Silent / who comes at the voice of the poor ... who gives bread to him who has none ... father of the orphan, husband of the widow ... though the servant offends him, he is merciful." (Composite from various prayers, from the front matter of Lord of the Silent)
gollark: Okay, "quite fast" may be an overstatement.
gollark: This is far more readable than foolish "shell scripts", and actually quite fast.
gollark: It's HIGHLY advanced.
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```

See also

  • List of characters in the Amelia Peabody series


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