Relative Dementias
Relative Dementias is a BBC Books original novel written by Mark Michalowski and based on the long-running British science fiction television series Doctor Who. It features the Seventh Doctor and Ace.
Author | Mark Michalowski |
---|---|
Series | Doctor Who book: Past Doctor Adventures |
Release number | 49 |
Subject | Featuring: Seventh Doctor Ace |
Set in | Period between Battlefield and Ghost Light |
Publisher | BBC Books |
Publication date | January 2002 |
Pages | 277 |
ISBN | 0-563-53844-9 |
Preceded by | Instruments of Darkness |
Followed by | Drift |
Ace's name
Ace's full name is given as Dorothy Gale McShane. This resolves a naming anomaly created during sequence of BBC Books' Past Doctor Adventures set after Survival and written by Mike Tucker and Robert Perry. They had used the name 'Dorothy Gale', as the authors were unaware that the name 'McShane' had been used in the New Adventures novels.
Continuity
- Dorothy Gale McShane is given as Ace's full name in the Big Finish audio drama The Rapture.
gollark: Oh, minoteaur actually has that (not the threading bit) in its Markdown parsing code.
gollark: Thus, praise ~~Rust~~ ~~Ferris~~ Nim?
gollark: It compiles in reasonable time *and* makes a 600KB binary in debug mode which is much nicer than equivalent Rust.
gollark: I only need something like two routes so a full web framework is overkill.
gollark: ```nimimport optionsimport asyncdispatchimport httpximport tiny_sqliteimport macrosimport karax/[karaxdsl, vdom]import ./dbmacro includeFile(x: string): string = newStrLitNode(readFile(x.strVal))const css = includeFile("./src/style.css")let database = openDatabase("./monitoring.sqlite3")migrate(database)var threadDB {.threadvar.}: Option[DbConn]proc openDB(): DbConn = if isNone threadDB: threadDB = some openDatabase("./monitoring.sqlite3") get threadDBproc mainPage(): string = let vnode = buildHtml(html()): head: style: text css text "Bee deployed" $vnodeproc onRequest(req: Request) {.async.} = if req.httpMethod == some(HttpGet): case req.path.get() of "/": req.send(body=mainPage(), code=Http200, headers="Content-Type: text/html") else: req.send(Http404) else: req.send(Http404)echo "Starting up"run(onRequest, initSettings(Port(7800), "", 0))```This is what I have so far.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.