The Moogai Sundance 2024 Review: Fresh Take On Boogeyman Horror Misses Its Mark Dread Central
Here is the original post:
The Moogai Sundance 2024 Review: Fresh Take On Boogeyman Horror Misses Its Mark - Dread Central
The Moogai Sundance 2024 Review: Fresh Take On Boogeyman Horror Misses Its Mark Dread Central
Here is the original post:
The Moogai Sundance 2024 Review: Fresh Take On Boogeyman Horror Misses Its Mark - Dread Central
In this update Workbench Editor Accessibility Languages Debugging Integrated Terminal Tasks Preview features Contributions to extensions Extension authoring Debug Adapter Protocol Language Server Protocol Proposed extension APIs Engineering Notable fixes Thank you
Update 1.43.1: The update addresses these issues.
Update 1.43.2: The update addresses these issues.
Downloads: Windows: x64 | Mac: Intel | Linux: deb rpm tarball snap
Welcome to the February 2020 release of Visual Studio Code. There are a number of updates in this version that we hope you will like, some of the key highlights include:
If you'd like to read these release notes online, go to Updates on code.visualstudio.com.
Insiders: Want to try new features as soon as possible? You can download the nightly Insiders build and try the latest updates as soon as they are available. And for the latest Visual Studio Code news, updates, and content, follow us on Twitter @code!
After a few iterations stabilizing on Insiders, we are shipping Search Editors, which let you view workspace search results in a full-sized editor, complete with syntax highlighting and optional lines of surrounding context. This has been a highly requested feature for some time.
Below is a search for the word 'SearchEditor' with two lines of text before and after the match for context:
Theme: A Touch of Lilac, Font: Hasklig
In a Search Editor, results can be navigated to using Go to Definition actions, such as F12 to open the source location in the current editor group, or K F12 (Windows, Linux Ctrl+K F12) to open the location in an editor to the side. Additionally, double-clicking can optionally open the source location, configurable with the search.searchEditor.doubleClickBehaviour setting.
You can open a new Search Editor with the Search Editor: Open New Search Editor command, or using the Open New Search Editor button at the top of the Search view. Alternatively, you can copy your existing results from a Search view over to a Search Editor with the Open in Editor link added to the top of the results tree, or the Search Editor: Open Results in Editor command.
Note: You can try out the experimental Search Editor: Apply Changes extension to synchronize edits you make in a Search Editor back to source files:
Did you know you could resize two orthogonal sashes simultaneously by grabbing and dragging the intersection between them? This already worked for editor sashes, and now it also works in the edges between editors and views:
Theme: GitHub Sharp, Font: Fira Code
Visual Studio Code for macOS is now notarized by Apple, so you should no longer get the following dialog:
Read the investigation issue and Apple's developer documentation for more details.
Notifications that indicate a long running operation behave slightly differently starting with this release:
The later change helps you know that an operation is continuing to run in the background (such as a long running save operation) after you have dismissed the notification.
Below the operation is still running until the Cancel button is selected:
Theme: Dracula Official, Font: Fira Code
A new setting workbench.editor.untitled.labelFormat lets you control whether untitled editors should use the file contents as the title or not. Possible values are content or name. Configure 'workbench.editor.untitled.labelFormat': 'name' for the previous behavior, where untitled editors would have a short title, such as Untitled-1.
When pasting text into an untitled editor, VS Code now automatically tries to detect the language mode from the first line of text. For example, pasting XML will set the XML mode automatically upon paste if the first line contains the typical XML header .
VS Code supports opening files through protocol links (for example vscode://file/
The syntax for folders or workspaces is the same as for files:
Welcome views are a new addition to the workbench, which allows a view to create starting experiences for users to create content or configure VS Code, whenever there isn't any meaningful content to be displayed. Some views have already adopted this infrastructure, for example the File Explorer, which will offer to open a folder or clone a Git repository to get you started.
Theme: GitHub Sharp
Thanks to the new Welcome view infrastructure, the Source Control view now provides a better experience for certain situations, in which it would otherwise appear empty. For example, it can now guide users to open folders or clone repositories or to install Git, when no installation is detected.
Theme: GitHub Sharp
There is a new setting, editor.minimap.size, which controls how the minimap uses vertical space:
Here the size is changed from proportional to fit, and then in a smaller file, from fit to fill:
There are now new colors for customizing the minimap and its slider. One of the new colors is minimap.background and when the color is defined to be transparent (lowering the #RRGGBBAA Alpha channel), the minimap will be rendered transparently:
There is a new global toggle, accessible via the Selection > Column Selection Mode menu item. Once this mode is entered, as indicated in the Status bar, the mouse gestures and the arrow keys will create a column selection:
You can also disable Column Selection mode from the Status bar.
The default value of the editor.renderWhitespace setting has changed from none to selection. Whitespace characters will now be rendered on highlighted text by default.
Here the tab and space whitespace characters are displayed in the selected region:
There is now more control over the behavior of the Go to Definition mouse gesture. By default, Go to Definition via mouse opens a separate editor but with the new setting editor.definitionLinkOpensInPeek as true, the gesture will open in a Peek view.
There's a new setting Editor: Unfold On Click After End of Line (editor.unfoldOnClickAfterEndOfLine) that controls what happens when you click in the empty space to the right of a folded line (after the ...). When set to true, you can click anywhere after the text on the folded line and not worry about exactly selecting the ellipses (...). By default, this option is off.
When undoing a rename or a Code Action that affects multiple files, VS Code will now allow you to undo the change in all the affected files.
A prompt will be presented when undoing a cross-file edit:
Note: File operations, like renaming a file, are not yet supported. For example, renaming a class name in Java (where the file name gets renamed as well) is not yet supported with cross-file undo.
The existing editor.rulers setting has been extended to allow defining rulers that have custom colors. In the following screenshot, there is a magenta ruler at column 80 and a red one at column 90:
It is now possible to reserve whitespace (number of pixels) at the top or bottom of the editor using editor.padding.top and editor.padding.bottom.
Here is the editor with a top padding of 50 pixels:
When trying to scroll vertically using a modern touchpad, it oftentimes happens that the file scrolls horizontally as well. There is now a new setting, editor.scrollPredominantAxis (which is set to true by default) which blocks "diagonal" scrolling. This forces scrolling gestures to be either vertical or horizontal (based on the highest absolute scroll delta), but never diagonal.
With 1.42, Shift+Insert was modified to paste from the selection clipboard. We received a lot of feedback that this was breaking existing muscle-memory and so we decided to roll back and have Shift+Insert paste from the regular clipboard, as before.
With the help of the community, we have been working on making VS Code accessible on Linux with the Orca screen reader. Orca and Chromium are still actively working on screen reader support, so there are a couple of things needed in order to have this fully working:
After enabling that setting, VS Code should work with the Orca screen reader.
VS Code now bundles TypeScript 3.8.3. This major update brings support for new language features including ECMAScript private fields, top-level await expressions, and the export * as ns syntax, along with many tooling features and improvements. The update also fixes a number of important bugs.
You can read more about TypeScript 3.8 on the TypeScript blog.
You can use the new Convert to template string refactoring for JavaScript and TypeScript to quickly convert string concatenations to template strings:
TypeScript 3.8 brings call hierarchy support in JavaScript and TypeScript.
IntelliSense now renders JS Doc @link inline tags for http and https links. In the example image below, notice how the @link for lightbulb menu is rendered in the hover:
@link to URLs work for both JavaScript and TypeScript and are rendered as clickable links in hovers, suggestion details, and signature help.
Semantic highlighting is now on by default for TypeScript and JavaScript. Semantic highlighting is provided by the TypeScript language server and goes on top of the syntax highlighting based on TextMate grammars. The default syntax (TextMate) highlighter classifies many tokens as variables and these are now resolved into namespaces, classes, parameters, and so on.
Semantic highlighting is controlled by the following setting:
When associating file names to schemas, you can now also use exclusion patterns. Exclusion patterns start with '!'. To match, at least one pattern needs to match and the last matching pattern must not be an exclusion pattern.
User studies revealed that new users have difficulties finding how to run their programs in VS Code. One reason is that the existing "Debugging" functionality is not something that they relate to "Running" a program. For that reason, we are making "Run" more prominent in the UI.
The VS Code Debug Console now supports output grouping. Debug extensions can indicate when Debug Console output should be grouped together under a common parent. For now, only the Mock Debug extension implements output grouping, but soon other debug extensions will follow - most notably the JavaScript debugger.
You can now turn off history suggestions in the Debug Console via the new debug.console.historySuggestions setting. By default, history suggestions are on.
The width of characters in the terminal now default to the Unicode 11 widths. What this means to most people is that emojis will be correctly showing up as wide characters.
The terminal has a feature that lets you Alt+Click on a cell and the cursor will navigate to that cell. Historically when in a shell's prompt, this only worked on a single line, even if it was wrapped. This has been improved to work on a full wrapped line.
Theme: Sapphire
Note that this may not work correctly on Windows yet but recent changes to ConPTY should improve this in the future.
The task Quick Pick, shown when the Run Task command is executed, has been updated to show you which task providers are still running. If you don't need tasks from that provider, the Stop Detecting button will immediately show you the tasks that have been detected so far, so you don't have to wait for any slow task providers.
Theme: One Dark Pro, Font: Fira Code
The tasks "runOptions" now includes an "instanceLimit", which specifies the number of instances of a task that are permitted. The default "instanceLimit" is 1.
The "promptString" user input type can have "password": true, which will cause the dropdown input box to obscure the typed content like a password.
Preview features are not ready for release but are functional enough to use. We welcome your early feedback while they are under development.
We have been working the last couple of months to support synchronizing VS Code settings, extensions, and keyboard shortcuts across machines (popular feature request #2743). In this milestone, we are happy to announce that this feature is ready for preview from our next 1.44.0 Insider release. You can now have your preferences synchronized in all your VS Code installs across all your machines. You can also bootstrap VS Code with your personal preferences on a fresh machine with minimal effort.
The following video demonstrates applying extensions and settings locally on a new machine:
Currently Settings, Keyboard Shortcuts, Extensions, and the Display Language are synchronized but we are planning to add more. You can review our list of proposed Setting Sync features.
Machine settings (with machine or machine-overridable scopes) are not synchronized by default. You can also add or remove settings in this list from the Settings editor or using the setting sync.ignoredSettings.
Theme: GitHub Sharp
Keyboard Shortcuts are synchronized per platform by default. If your keyboard shortcuts are platform-agnostic, you can synchronize them across platforms by disabling the setting sync.keybindingsPerPlatform.
All built-in and installed extensions are synchronized along with their global enablement state. You can skip synchronizing an extension, either from the Extensions view or using the setting sync.ignoredExtensions.
Theme: GitHub Sharp
Read the original:
February 2020 (version 1.43) - Visual Studio Code
Excerpt from:
Scientists warn melting permafrost could unleash ancient 'zombie viruses' - The Independent
'Zombie viruses' trapped in Arctic ice could unleash deadly new pandemic. Here is what we know The Economic Times
Continue reading here:
Arctic 'zombie' viruses in Siberia could one day be released by Earth's warming climate and trigger a new pand - Daily Mail
The rest is here:
She is a Real Housewife, was in a scary movie franchise, is pals with Bethenny Frankel, has a Hilton connectio - Daily Mail
There are mysteries that man can only guess at which age by age may only solve in part. Bram Stoker
In the summer of 1890, a 45-year-old Bram Stoker entered the Subscription Library in Whitby, England, and requested a specific title The Accounts of Principalities of Wallachia and Moldavia by William Wilkinson. This wasnt a title found readily on the shelves or typically made available to the general public. The library didnt even make it known they possessed the rare book. Access was only granted to those who asked for it. Patrons handled the title only under the watchful eye of the librarian, and it was returned to its resting place the moment business concluded. Upon receipt of the book, Stoker didnt read it cover to cover or browse the text he opened the pages to a specific section, made notes in his journal, and returned the tome to the librarian.
He stopped next at the Whitby Museum, where he reviewed a series of maps and pieced together a route beginning in the heart of London and ending upon a mountaintop deep within the wilds of Romania a latitude and longitude previously noted in his journal and confirmed again this very day.
From the museum, Bram then made his way to Whitby Harbor where he spoke to several members of the Royal Coast Guard. They provided details of a sailing vessel, the Dmitri, that ran aground a few years earlier on the beach inside the protective harbor with only a handful of the remaining crew alive. The ship, which originated in Varna, an eastern European port, was carrying a mysterious cargo crates of earth. While investigating the damaged ship, rescue workers reported seeing a large black dog, consistent with a Yorkshire myth of a beast known as Barghest, escape from the hull of the ship and run up the 199 steps from Tate Sands beach into the graveyard of St. Marys Church.
Stoker looked up at the church, at Whitby Abbey looming beside it on the cliff. In his minds eye, he pictured the dark chamber at the top of the central tower.
Opening his journal, he turned to the information hed written down back at the library
Four months earlier, at a dinner at the Beefsteak Club of the Lyceum Theater in London, Bram Stokers friend Arminius Vambery told him of the book, told him what to look for. Told him to visit the library in Whitby. The final piece of a decades-old puzzle, a story, slowly taking shape. On another page of his notes, the name Count Wampyr had recently been crossed out, replaced with Count Dracula and to Bram, it all made sense now.
For fans of the novel Dracula, the information above takes on a familiar note. We all know the name. Theres the graveyard, the Abbey, the dog, and of course, the ship but it was called The Demeter, right? Not Dmitri In the book, yes, but in real life it was Dmitri. And there was a real life. Bram had found a blurry place between fact and fiction and that surely put a smile on the Irishmans face.
When Bram Stoker wrote his iconic novel, the original preface, which was published in Makt Myrkanna, the Icelandic version of the story, included this passage: I am quite convinced that there is no doubt whatever that the events here described really took place, however unbelievable and incomprehensible they might appear at first sight. And I am further convinced that they must always remain to some extent incomprehensible.
He went on to claim that many of the characters in his novel were real people: All the people who have willingly or unwillingly played a part in this remarkable story are known generally and well respected. Both Jonathan Harker and his wife (who is a woman of character) and Dr. Seward are my friends and have been so for many years, and I have never doubted that they were telling the truth
Bram Stoker did not intend for Dracula to serve as fiction, but as a warning of a very real evil, a childhood nightmare all too real.
Worried of the impact of presenting such a story as true, his editor, Otto Kyllman, of Archibald Constable & Company, returned the manuscript with a single word of his own: No.
He went on to explain that London was still recovering from a spate of horrible murders in Whitechapel and with the killer still on the loose, they couldnt publish such a story without running the risk of generating mass panic. Changes would need to be made. Factual elements would need to come out, and it would be published as fiction or not at all.
When the novel was finally released on May 26, 1897, the first 101 pages had been cut, numerous alterations had been made to the text, and the epilogue had been shortened, changing Draculas ultimate fate as well as that of his castle. Tens of thousands of words had vanished. Brams message, once concise and clear, had blurred between the remaining lines.
In the 1980s, the original Dracula manuscript was discovered in a barn in rural northwestern Pennsylvania. Nobody knows how it made its way across the Atlantic. That manuscript, now owned by Microsoft cofounder Paul Allen, begins on page 102. Jonathan Harkers journey on a train, once thought to be the beginning of the story, was actually in the thick of it.
This raises a question: what was on the first 101 pages? What was considered too real, too frightening, for publication?
Bram Stoker left breadcrumbs; you need only know where to look. Some of those clues were discovered in a recently translated first edition of Dracula from Iceland titled Makt Myrkranna, or Power of Darkness. Within that first edition, Bram left not only his original preface intact, but parts of his original story outside the reach of his U.K. publisher. More can be found within the short story Draculas Guest, now known to have been excised from the original text. Then there were his notes, his journals, other first editions worldwide. Unable to tell his story as a whole, he spread it out where, much like his famous vampire, it never died, only slept, waited.
J.D. Barker is the international bestselling author of Forsaken, The Fourth Monkey, and The Fifth to Die. Dacre Stoker is the great-grandnephew of Bram Stoker and the international bestselling co-author of Dracula: The Undead. He manages the Bram Stoker Estate. Together, they are the authors of the novel Dracul, available now, the research for which informed this piece.
Correction: Oct. 3
The original version of this article mistakenly described the Whitby Abbey tower as destroyed at the time of Bram Stokers visit in 1890. The tower was not destroyed until 1914.
Go here to read the rest:
The Real History That Went Into Bram Stoker's Dracula | TIME
I sawdare I tell it?in the sickly light of the flambeaux, that the men within them were not dead; but, horrible beyond expression, deadly in their ghastliness, yet, alive, they lay there. Their bodies were swimming in blood, and a horrible leer was on their mouths, and agonised fate within their staring eyes. Loathsome beyond thought, ghoul-like beyond nightmare dream, they were the living dead.
Dragged away from the consecrated ground, these two vampires are staked through their hearts. At this point, our already-traumatised witness hears from each such a wailing sob and cry... as I never did dream even in nightmare. The heads of both vampires are then laboriously hacked off with sharp spades.
By 1870, most educated Europeans and Americans saw vampires as either thrilling entertainment (on both stage and page) or as an example of the backward superstitions of peasants in such lands as Hungary, Romania, Serbia and Greece. So what could have caused the radical change of heart seen in our previously sceptical reporter?
More like this
One factor was undoubtedly the relatively undecayed state of the exhumed corpses, supposedly swimming in blood. Since the painstaking forensic work of Paul Barber, it is relatively well known that some bodies are slow to decay, and that copious fluids (resembling blood) can issue from them. The sudden release of trapped gases can even result in vampires screaming when staked.
The second factor in the American reporters vampire epiphany is less well known. The attack that the American suffered was almost certainly a combination of sleep paralysis and nightmare. These inter-related medical conditions have occurred throughout history, and still occur now.
When we sleep we routinely become paralysed; this prevents us from acting out dreams and suffering possible injury. Were not usually conscious of this state. But during a sleep paralysis nightmare, the victim feels absolutely conscious. They see their room, often in vivid detail, but are paralysed and cannot speak.
Presently, they become aware of an entity approaching. They may see it or hear it; but even if they do neither they are horribly convinced of it (perhaps hovering just outside their field of vision) and utterly traumatised by fear. Now the demon entity is on their chest, its weight crushing and its hands or mouth suffocating, squeezing the life from their throat... Although in reality such attacks last no more than a few minutes, to victims the experience can seem endless.
This mix of symptoms can vary, as can the extremity of attacks. But in many cases they cause a level of terror that mere words can barely capture. In 2011, some years after a nightmare attack, the American writer Alexis Madrigal wrote that: It didnt feel like my life was at risk. That was, in fact, too small. It felt like the presence was after something else, probably what youd call my soul strong words from someone who describes himself as a straight materialist. This and many similar descriptions leave one wondering if the nightmare is indeed the origin of evil itself.
It certainly is the origin of many vampire epidemics. Some of the very earliest written accounts of proto-vampires come from Britain. In the 12th century alleged revenants (essentially, undecayed walking corpses) brought terror and death to people in Buckinghamshire, Wales, Northumbria and at Melrose Abbey on the Scottish borders. In Wales, sometime after 1149, an English knight complained of a recently deceased Welsh wizard who keeps coming every night, calling by name certain of his former neighbours, who instantly fall sick and die within three days. A contemporary report from Buckinghamshire tells of a dead man who, the night after his burial, suddenly entered the room where his wife lay asleep and, having awakened her... almost killed her by leaping upon her with the whole heaviness of his weight and overlying her.
In 1567, in the Bohemian city of Trawtenaw, the revenant of one Stephen Hubener did pinch many men with such strait embracements, that many of them died. Those who survived reported with one consent... that they were thus clasped or beclipped by this... man who, for his pains, was decapitated, eviscerated and burned.
Around 1738, a young Serbian girl named Stanoska... went to bed in perfect health, but awoke in the middle of the night, trembling, and crying out, that the son of the Heyduke Millo, who died about nine weeks before, had almost strangled her while she was asleep. From that time, she fell into a languishing state, and died at three days end.
He calls 'by name certain of his former neighbours, who... die within three days'
Many similar reports depict crushing and suffocation. All in all, the symptoms of sleep paralysis nightmares fit vampire attacks uncannily well in some cases, as snugly as one of Count Draculas well-tailored travelling gloves. The sense of weight and suffocation are obvious enough similarities. Name-calling was also pretty common, and fits the documented auditory hallucinations of nightmare bouts.
Outside of fiction, the vampire did not always suck blood. But nightmares could give reason to think that it did. Recent accounts have described the pressure on the throat as like something sucking the life out of me. More precisely still, nightmares seem to cause spontaneous bruising in some victims. If these were found on neck or chest (over the heart), then thirsty teeth would easily be inferred.
Why, though, is one particular dead person often identified as the attacker? The answer is twofold. First, medical science has found that, bewildered by the nightmare, the brain shapes the imagined entity into something familiar. In regions where vampire legend abounds, this will naturally be a vampire, and in a small community where everyone knows who has just died, the most recently deceased would be a prime candidate for the role. But recent studies have also shown that attacks are increased or exacerbated by stress. So after the first attack, once the story has spread with the speed of village gossip, there will probably be more attacks (often perpetrated by the same culprit), thus more stress, leading to yet more attacks until the vampire is destroyed. As with many psychosomatic terrors, belief is potent: if you believe the vampire has been dispatched, it will usually stop haunting you.
Many people who died from vampire attacks were actually victims of contagious disease one reason why vampires were often said to attack their own families first.
Some deaths, though, are not so easily explained. The 12th-century Welsh victims and the Serbian girl Stanoska all died within three days of the first attack. Why? Astonishingly, these people probably died of fear. A number of travellers and anthropologists have reported voodoo deaths of this kind in Africa and among the Aboriginal peoples of Australia. In such contexts, if someone knows that they have been cursed (usually by a witch doctor or similar), their belief-driven terror is so potent that they fall sick, experience a kind of physiological shutdown, and die within three days.
This phenomenon was, for a long time, thought typical of primitive tribal beliefs. In fact, it is equally typical in vampire and witch territory. Writing in 1923, the traveller and folklorist Edith Durham told how the peasants all through Albania, and Macedonia are extraordinarily affected mentally if they believe they must die, and seem to make no effort whatever to live... I heard of more than one case in which a mans death having been foretold by reading the future in fowls bones, he proceeded to sicken and die.
In her recent book on sleep paralysis, Shelley Adler related how the religious beliefs of Hmong people from south-east Asia led to several nightmare-related deaths during and after the 1970s. These attacks, which occurred in the USA among Hmong refugees, were thought to be due to angry ancestral spirits, and subsequently inspired the horror film A Nightmare on Elm Street.
He 'almost strangled her while she was asleep... she fell into a languishing state and died'
So vampires (or nightmares incorporating them) really can kill you if you believe in them. Anyone who has suffered from sleep paralysis nightmares will understand this level of terror. And if you suffered such an attack in a little Serbian or Greek village a century or more ago, what explanation could there be except something supernatural and demonic? Neither the nightmare nor the vampire have quite relinquished their hold, even in 21st-century Europe.
Just before Christmas 2003, one Petre Toma died in the little Romanian village of Marotinu de Sus. As archaeologist Timothy Taylor reported, his niece suffered nightmares and appeared seriously ill. She claimed that her uncle was visiting her at night and feeding from her heart; that he was a strigoi [a Romanian revenant]. The girls illness was clearly psychosomatic: Tomas corpse was disinterred and his heart burned, the ashes mixed with water that was given to the niece to drink and she recovered. And this incident took place just as Stephenie Meyer was signing the deal for her first Twilight books.
More recent still was the case of Sava Savanovi, a Serbian first identified as a vampire in the 18th century. When in 2012 his reputed home an old water mill on the river Rogaica in Zaroje collapsed, local authorities warned residents to arm themselves against the now-homeless revenant with crosses and garlic.
This was probably shrewd business PR rather than authentic superstition: the mill and village had been popular with tourists for some time, and the story made world headlines. Yet the announcement that five people have recently died, one after another, in our small community, and allegedly not by accident, would be all-too familiar to vampire believers of past times.
The early wave of 18th-century reports on the folk vampirism of central-eastern Europe might well be described as the first phase of vampotainment. But it was in the 19th century that it became really popular.
A short tale, The Vampyre, penned by Byrons physician, John Polidori, caused a sensation in 1819, prompting a popular stage version, The Bride of the Isles, and the invention of a highly sophisticated vampire trap, through which the defeated bloodsucker magically vanished in the closing scene. This tale gave us the prototype of the suavely seductive vampire aristocrat, Lord Ruthven and it certainly didnt hurt that many saw the shadow of Byron himself behind this figure.
Female vampires soon got their teeth into readers, starting with the impressively daring quasi-lesbianism of Sheridan Le Fanus 1872 Carmilla, on through John Paynes long poem Lautrec in 1878, and reinforced by Robert Louis Stevensons powerfully atmospheric Spanish tale, Olalla, during Christmas 1885.
Stokers Dracula (1897) of course remains for many the vampire classic, and perhaps rightly so. There again, many people now know Dracula without having read it whether via the silent Nosferatu (1922), the numerous caped outings of Bela Lugosi, or Coppolas superbly lurid version of 1992.
With many recent vampire tales getting more ironic than supernatural, one can see how the Twilight novels and films offered something new in vampotainment. Oddly, though, the Victorian Dracula is far more sexy than Stephenie Meyers tamely puritanical saga. Nothing in Twilight comes anywhere near the scene in which Jonathan Harker swoons under the eyes and lips of not one, but three alluring female vamps.
Richard Sugg is a lecturer in the English department at Durham University. He is the author of Faces of the Vampire: From Holy Terror to Sexual Taboo (2014)
This article was first published in the September 2013 issue of BBC History Magazine
More:
Vampires: Are They Real? A Brief History Of The True Stories Behind The ...
Read more from the original source:
Horror fanatics are 'desperate' to watch the first scary movie of the year Night Swim after trailer leaves the - Daily Mail