Posts tagged: microblog

Judging an elementary school science fair

Today I had the privilege of judging an elementary school science fair - the same school I attended so many years ago. I'm really excited to see kids learning about and applying the scientific method in addition to basic engineering principles at such a young age.

tay.today

Turns out one of my favorite websites, http://tay.today/ has been suspended by the hoster, probably because the bill hasn't been paid...I've managed to recover all of the data thanks to archive.org <3 but now I need to find a cool domain name to host it on :/

Thoughts on SQLAlchemy

I've recently been using SQLAlchemy's ORM for a Python web app I'm developing. I really like the idea of declaring tables using a class, which provides you with an object class too.For querying, I'm still a bit undecided. I like .filter_by(), .first(), and .all(), but I'm worried that losing visibility…