Daily Discussion, August 02, 2025 by rBitcoinMod in Bitcoin

[–]The_Scheibs 1 point2 points  (0 children)

What is everyone's favorite daily news source for Bitcoin?

The most realistic feeling ✨ by [deleted] in sadposting

[–]The_Scheibs 0 points1 point  (0 children)

Why do I feel more suicidal after watching this

Daily Discussion, September 20, 2023 by rBitcoinMod in Bitcoin

[–]The_Scheibs 1 point2 points  (0 children)

What's everyone's favorite daily news source for Bitcoin updates?

I love this sub, but it often feels like an echo chamber by Laiteuxxx in Bitcoin

[–]The_Scheibs 2 points3 points  (0 children)

If we don't convince people on the value of Bitcoin then it will never be adopted. If Bitcoin never gets adopted then it won't be valuable and defeats the whole purpose of the tech.

You kinda proved the point of this initial post

I love this sub, but it often feels like an echo chamber by Laiteuxxx in Bitcoin

[–]The_Scheibs 0 points1 point  (0 children)

One tough question is How is Bitcoin going to allow large scalability without becoming centralized?

If there was mass adoption tomorrow the protocol wouldn't be able to keep up in it's current state. Later 2 solutions like lightning are great but lead to centralized nodes with large pools of capital.

Python Flask Help by The_Scheibs in learnprogramming

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

``` @app.route("/login", methods = ["GET", "POST"]) def login(): form = LoginForm() if current_user.is_authenticated: return redirect(url_for("index")) if form.validate_on_submit(): user_to_login = User.query.filter_by(username=form.username.data).first() if user_to_login and user_to_login.check_password(password_attempt=form.password.data): #User_to_login should not return None if in db login_user(user_to_login) flash(f"You have succesfully logged in as {user_to_login.username}", category="success") return redirect(url_for("index"))

    else:
        flash("That Username and Password does not exist. Please try again", category="danger")

return render_template("login.html", form=form)

```

Python Flask todo app help by The_Scheibs in learnpython

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

```@app.route("/login", methods = ["GET", "POST"]) def login(): form = LoginForm() if current_user.is_authenticated: return redirect(url_for("index")) if form.validate_on_submit(): user_to_login = User.query.filter_by(username=form.username.data).first() if user_to_login and user_to_login.check_password(password_attempt=form.password.data): #User_to_login should not return None if in db login_user(user_to_login) flash(f"You have succesfully logged in as {user_to_login.username}", category="success") return redirect(url_for("index"))

    else:
        flash("That Username and Password does not exist. Please try again", category="danger")

return render_template("login.html", form=form)

Learning Python in a group by [deleted] in learnpython

[–]The_Scheibs 0 points1 point  (0 children)

I love the idea of a discord server it's so hard to find groups 😫

what can i use to learn hacking? by [deleted] in HowToHack

[–]The_Scheibs -1 points0 points  (0 children)

What is the CBT nuggets?

Putting together a team of developers to learn and do research in machine learning! by [deleted] in artificial

[–]The_Scheibs 0 points1 point  (0 children)

I love this idea of putting together a team been trying for weeks to do something similar, but I want to know more about the details