My view about her views aside, did she really say “…another thing coming,” or is that just a bad transcription? Because the correct expression is “…another think coming.”
Ken Starr
Of course, the media has developed a “strange new respect” for him.
Empty Dorms, Empty Mansions
Hillary’s Emails
If you want to search and read them, Wikileaks has you covered.
Email Issue
I’m trying to send myself email from my own Linux machine, via SMPT. I’ve written the following Python program:
#!/usr/bin/env python3
# Import smtplib for the actual sending function
import smtplib# Import the email modules we’ll need
from email.mime.text import MIMEText# Open a plain text file for reading. For this example, assume that
# the text file contains only ASCII characters.
with open(“test.txt”) as fp:
# Create a text/plain message
msg = MIMEText(fp.read())# me == the sender’s email address
# you == the recipient’s email address
msg[‘Subject’] = “Test”
msg[‘From’] = “simberg@interglobal.org”
msg[‘To’] = “simberg@interglobal.org”# Send the message via our own SMTP server.
s = smtplib.SMTP(‘localhost’)
print(“s has been opened”)
s.send_message(msg)
print(“after send_message”)
s.quit()
print(“End script”)
It runs with no errors, prints the statements to the terminal, but no email appears. How do I diagnose this?
[Update a while later]
Thanks for the help in comments. Still haven’t solved it, but the need for the application that I needed it for has gone away. Nonetheless, it would be good in general to know how to email from a Python script.
Bill Nye The Fascist Guy
And NASA isn’t covering itself in glory here, either.
@nuclear94 #ProTip: Actual scientists don't propose jailing people who disagree with them. @BillNye @neiltyson
— Apostle To Morons (@Rand_Simberg) April 15, 2016
I was in the same room with Nye a couple nights ago, at a reception. I felt like I needed a safe space.
Yesterday’s Launch Panel At NSS
Tory Bruno and Gwynne Shotwell have very different space-business philosophies. I think that Gwynne is right, but the good news is that for now, the two companies are more complementary than competitive. And the Air Force will want to continue to maintain two providers.
Benghazi
New documents show conclusively that she knew from the beginning it was a terrorist attack, despite her bald-faced lies about the video to the families on the tarmac. This will, and should be a campaign issue.
Bezos’s Space Vision
Alan Boyle interviewed him on stage on Tuesday afternoon. Here’s the transcript.
What he said may have been new concepts to many, but they’re all ideas that go back decades. The difference is that he’s funding them himself, and not waiting for the government to do it.
Energy Policy
What happens when you send a philosopher to Congress. Morons like Barbara Boxer are shown to be morons.