Category Archives: Technology and Society

Mouse Embryos

in spaaaaaaaace:

According to the pictures sent back from a high-resolution camera, the 600 embryos, which were put under the camera, developed from the 2-cell stage, an early-on embryonic cleavage stage, to blastocyst, the stage where noticeable cell differentiation occurs, around 72 hours after SJ-10’s launch. The timing was largely in line with embryonic development on Earth, according to CAS.

But we still have no idea what happens in partial gravity. And they didn’t bring them to term.

The 97% Number That Won’t Die

The problem is that the issue is not whether or not “humans are causing global warming.” I can concede that there is a good possibility of that, and it still has zero implications for policy, absent quantification with sufficient confidence levels, which remain lacking.

[Afternoon update]

“Climatologists will say that the way the question is worded depends on whether they are included,” Morano said. “We have many skeptical scientists included as the 97 percent because of the way the questions [in surveys] are asked are so vague and broadly worded.”

Yup.

Gregg Easterbrook

I’ve had my differences with him over the years, but he has a piece in the WSJ with which I basically agree. I’d say the only thing he gets wrong was that it was Apollo itself that set us on the wrong path. The Shuttle was just a symptom of Apolloism.

[Behind the paywall, but do a Google search for “Mission to Nowhere” and it should come up]

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.

I was in the same room with Nye a couple nights ago, at a reception. I felt like I needed a safe space.