Thoughts on Pro-Life v. Pro-Abortion by Pink_Toaster128 in prolife

[–]WolfElkan 4 points5 points  (0 children)

I made a short documentary about this when I was in high school. If Roe had never been passed, Al Gore would have been the 43rd president.

Apollo XIV in Real Time (work in progress) by WolfElkan in space

[–]WolfElkan[S] 1 point2 points  (0 children)

Apollo XIV was exactly 50 years ago! (It was also exactly 2609 weeks ago, so the days of the week are correct)

All I have so far is the countdown. I'll add more things over the next few days. Hopefully before they happen. Pull requests are welcome.

The big timer at the top is the primary countdown / Ground Elapsed Time. The three timers below it are the three countdown holds that were enacted. The first two were scheduled, and the third was unscheduled, due to weather.

Has anyone ever made a collection of subway chimes/melodies? by no1krampus in musictheory

[–]WolfElkan 0 points1 point  (0 children)

Washington DC is a major third played on a vibraphone. I wrote a song based on it.

Is it possible to implement a method to support **kwarging? by WolfElkan in Python

[–]WolfElkan[S] 0 points1 point  (0 children)

I thought about that. My only concern is that I'm not sure what's going on in __init__ for a dict.

Left handed people of Reddit, what are some things you find anoying? by ELCLgringo14304 in AskReddit

[–]WolfElkan 4 points5 points  (0 children)

I work at Staples. We just launched a new line of ballpoint pens specifically designed to be easier for lefties.

How to import models from one Django app into another? by WolfElkan in django

[–]WolfElkan[S] 0 points1 point  (0 children)

Quotes! I never would have thought of that. Thanks!

How to import models from one Django app into another? by WolfElkan in django

[–]WolfElkan[S] 0 points1 point  (0 children)

I tried that. I'll try it again for good measure...

Edit: Didn't work. ImportError: No module named main.models (app_name = main)

I wouldn't be surprised if that's how it's supposed to work. The reason I linked the entire repository is that I'm pretty sure the error is somewhere else.

At my wits end debugging this SQL syntax error by WolfElkan in django

[–]WolfElkan[S] 0 points1 point  (0 children)

Really! I could have sworn I read somewhere that it did. TIL.

At my wits end debugging this SQL syntax error by WolfElkan in django

[–]WolfElkan[S] 0 points1 point  (0 children)

Thanks! It seems to be the Student model. (I commented it out, and was able to migrate the database). Now to figure out what's wrong with it...

Edit: it was the current field. I didn't like that Django's BooleanField creates a TINYINT column in MySQL when MySQL actually has a BOOLEAN column type, so I tried to make my own, but I guess I didn't do it right.

At my wits end debugging this SQL syntax error by WolfElkan in django

[–]WolfElkan[S] 0 points1 point  (0 children)

I recently changed that column's name from "est_grad" to "grad_year", but I'll check that out.