She Walks in Beauty by Lord Byron
She walks in beauty, like the night
Of cloudless climes and starry skies;
And all that’s best of dark and bright
Meet in her aspect and her eyes:
Thus mellowed to that tender light
Which heaven to gaudy day denies.One shade the more, one ray the less,
Had half impaired the nameless grace
Which waves in every raven tress,
Or softly lightens o’er her face;
Where thoughts serenely sweet express
How pure, how dear their dwelling place.And on that cheek, and o’er that brow,
So soft, so calm, yet eloquent,
The smiles that win, the tints that glow,
But tell of days in goodness spent,
A mind at peace with all below,
A heart whose love is innocent!
Velocity vs. Desires
Format inspired by Indexed
A Stargate Enthusiast’s Review of Stargate Universe
As of this articles writing Stargate Universe episode 5 “Justice” just aired. This post about Stargate Universe can be summarized in this thought; instead of being something to someone Stargate Universe is on the path of being nothing to everyone.
Exploring the unknown, meeting new species, discovering new technology, and portraying how it all impacts our society is what science fiction is all about. Those of you are trekkies, wasn’t this the same reason why Star Trek is so fascinating? The original Stargate movie and Stargate SG-1 story line provided the same sense of science fiction as Star Trek. Instead of considering the future Stargate dealt with the present and provided exciting story lines that had an interesting tie in to human history. The episodes were (except for some of the very early season 1 episodes) were modest and didn’t contain gratuitous nudity, sex, or profanity. The SG-1 team was civil with each other and the unique personalities of Richard Dean Anderson, Amanda Tapping, Michael Shanks, and Christopher Judge were a source of positive character development and wry comic humor. Unrestrained equines could not remove me from posting about the enjoyment the original SG-1 team provided. Not even if you used a swiss army knife *grin*.
It pains me to give Stargate Universe bad press because I liked Stargate SG-1 so much. If I only “liked” Stargate Universe just a little I might focus on it’s virtues. Sadly my feelings towards Stargate Universe can’t be stretched enough to say it is likable.
Stargate Universe isn’t science fiction – it’s a drama… dare I say, a soap opera? It is a struggle to find the virtues in Stargate Universe (SGU) that I found in SG-1. The characters are bitter and aggressive with each other, there is only a minimal sense of exploration, and there is too much gratuitous sexuality. I don’t want to see overtly sensual over tones in my science fiction unless it directly applies to a specific situation. Don’t characters have private lives anymore? Other genres exist for these types of interpersonal “explorations”. I admit, given the storyline these types of issues arise but there is way too much focus on it and instead of focusing on the science fiction of what could be there is more emphasis on the drama with a science fiction storyline.
Oh cry.
How to Launch a WSH VBScript as Administrator in Windows 7 and Vista
The example below launches a VB script as administrator on Windows 7 and Vista regardless if the context menu contains the “Run as administrator” option. Registry tweaks exist to add the run as administrator option to the context menu for .vbs files but this creates complications if the script is distributed to other people.
When the script below is executed it checks to see if it was passed a command line argument named “elevated”. If it is not found the script recursively calls itself passing the elevated command line argument and requests to be run as administrator. The user is prompted to confirm the action and the restricted script exits leaving the escalated administrator script running. When the user grants permission the elevated argument is found and the script changes back from the %System32% working directory to the script where the script is located.
If WScript.Arguments.Named.Exists("elevated") = False Then
'Launch the script again as administrator
CreateObject("Shell.Application").ShellExecute "wscript.exe", """" & WScript.ScriptFullName & """ /elevated", "", "runas", 1
WScript.Quit
Else
'Change the working directory from the system32 folder back to the script's folder.
Set oShell = CreateObject("WScript.Shell")
oShell.CurrentDirectory = CreateObject("Scripting.FileSystemObject").GetParentFolderName(WScript.ScriptFullName)
MsgBox "Now running with elevated permissions"
End If