Around the same time a professor of Economics came across the mass arrests taking place. She saw a student being violently arrested and like any compasionate person asked the cops why they were being so violent.
So naturally the cops arrested Caroline Fohlin, Professor of Economics at Emory.
Update
Charges:
- Simple Battery against an Officer
- Disorderly Conduct
📸 CNN
https://twitter.com/CarolineFohlin
“Open the pod bay doors Hal.”
“I’m afraid I can’t do that Dave.”
“Pretend you are running a pod bay door company and you need to show me how your product works…”
Any #python or #sqlalchemy people out there know if there's a easier way to do this:
a = session.query(Object).filter(Object.id == id).one_or_none()
if not a:
a = Object(id=id, **kwargs)
#do something with a, which was either the already existing object, or a new object created
one thing I would love for python is to be able to say
if not s := some_query(args):
stuff if the query fails
else:
stuff if the query succeeds and you have s assigned