diff --git a/app/templates/about.html b/app/templates/about.html index b208a9d..e6e17af 100644 --- a/app/templates/about.html +++ b/app/templates/about.html @@ -18,7 +18,7 @@

An ebooks bot, named after the Twitter account horse_ebooks, is a bot that learns from posts made by users and generates its own posts, similarly to how your phone keyboard predicts what you're about to type next. The results are always messy, frequently nonsensical, and occasionally hilarious.

What happened to the old FediBooks?

-

It was too ambitious a project, and I got burned out on it. Progress was slow and the code was messy. I had a ridiculous number of features planned for it, such as complex decision trees, allowing for absurdly specific rules like "only reply to users with a T in their username if it's between 4am and 5pm on a Wednesday". I had too much planned, and additionally, I don't particularly like developing desktop apos.

+

It was too ambitious a project, and I got burned out on it. Progress was slow and the code was messy. I had a ridiculous number of features planned for it, such as complex decision trees, allowing for absurdly specific rules like "only reply to users with a T in their username if it's between 4am and 5pm on a Wednesday". I had too much planned, and additionally, I'm don't particularly like developing desktop apps.

The source code is still available here, although it's of little use to anyone.

Why create FediBooks?

diff --git a/app/webui.py b/app/webui.py index f479722..334e69d 100644 --- a/app/webui.py +++ b/app/webui.py @@ -35,7 +35,7 @@ def login_check(): if request.path not in ['/', '/about', '/welcome', '/login', '/signup', '/do/login', '/do/signup', '/static/style.css'] and not request.path.startswith("/push"): # page requires authentication if 'user_id' not in session: - return redirect(url_for('home')) + return redirect(url_for('render_home')) @app.route("/") def render_home():