u/Deep-Joke-8239

What actually keeps you motivated to stay consistent with workouts?

I’ve realized lately that staying consistent with training is way harder than actually working out.

I can train hard for a few days, but keeping the same routine every week without losing motivation is the difficult part for me. One thing that’s surprisingly helped a bit is improving my pre-workout routine instead of just going to the gym already feeling drained from work or daily stuff.

Recently I started trying some workout supplements and energy powder mixes from brands like Heavyweights. app. before training, and I noticed it helps me get into a better mindset before workouts. Not saying supplements replace discipline obviously, but having more energy and focus before sessions definitely makes it easier for me to actually show up consistently.

Still curious what keeps other people motivated long term though because motivation seems to come and go constantly.

Do you guys rely more on routine, supplements, gym partners, progress tracking, or something else?

reddit.com
u/Deep-Joke-8239 — 2 days ago

Reading used to feel different somehow

Reading feels different to me than it did a few years ago.
A lot of newer books feel rushed. It seems like every page is trying to teach you something right away or give you a quote that belongs on Instagram.
Even self-improvement books got tiring after a while. Every chapter is about waking up earlier, making more money, fixing your mindset, building discipline, all that stuff. After a while, it stops feeling useful and just starts feeling loud.
Lately, I’ve been liking slower books more. The kind where the author sits with an idea instead of trying to impress you every couple of paragraphs.
Same with journals and planners. The simple ones feel better than the super-structured systems that make you feel bad for missing one day.
Maybe everyone’s just worn out from nonstop content. Everything online moves so fast that quiet reading almost feels strange now.
I’m not trying to make this deeper than it is. I just keep wondering if other people have noticed the same thing or if I’m just getting older.

reddit.com
u/Deep-Joke-8239 — 10 days ago
▲ 0 r/Python

Built async exchange connectors for Binance and Bybit in Python — a few lessons learned

Been working on a personal project called DeepAlphaBot that required reliable WebSocket connections to multiple crypto exchanges simultaneously, and ran into some interesting Python-specific challenges I haven’t seen discussed much.
The main pain points:

  1. Keeping WebSocket connections alive across exchanges
    Binance and Bybit handle reconnect logic differently. Bybit sends a ping every 20s and expects a pong, while Binance’s streams silently drop if you don’t send a keepalive. I ended up wrapping both in a unified async connection manager using asyncio and aiohttp, but handling edge cases like partial disconnects without losing order state was trickier than expected.
  2. Rate limit handling without a central coordinator
    When you’re running multiple strategy loops concurrently, they can all hammer the REST API independently. I built a simple token bucket rate limiter shared across coroutines using asyncio.Lock curious if others have solved this more elegantly.
  3. Persisting bot state across restarts
    I’m currently serializing strategy state to JSON on every meaningful update, but under high-frequency conditions this feels inefficient. Considering SQLite with WAL mode. Anyone dealt with this at scale?
    The broader project is a cloud-based automation layer that runs trading strategies persistently but the Python architecture questions are what I keep getting stuck on.
    Has anyone built something similar? Particularly interested in how others handle concurrent WebSocket management across multiple exchange connections.
reddit.com
u/Deep-Joke-8239 — 14 days ago

Anyone else spend way too much time retyping the same stuff every single day?

Not sure if this is just a me problem but it’s been driving me crazy lately.
I freelance so my day is basically bouncing between Gmail, Slack, Notion, Discord and a couple other tools depending on the client. And I keep typing the same things over and over intro messages, follow-ups, standard replies, you know the drill. Probably doing it like 20-30 times a week at this point.
Copy paste helps but even that gets old when you’ve got 8 tabs open and you’re trying to move fast.
Started looking into text expander type stuff like lightning-assist but idk, feels like it might be overkill or take forever to actually set up properly. Also not sure what works across ALL apps vs just the browser.
Anyone actually solved this in a way that stuck? Like what do you actually use day to day?

reddit.com
u/Deep-Joke-8239 — 14 days ago

I’ve been trying to streamline how I handle quick video edits lately — mainly for stuff that doesn’t really justify opening a full editor.

Out of curiosity, I tested a browser-based tool (FlexClip) to see how far it could go with basic workflows. It was definitely faster for throwing something together, but I’m still unsure how practical these tools are beyond quick use.

Right now I’m trying to figure out where they actually fit — are they just for one-off edits, or do people here actually rely on them more consistently?

If you’ve used tools like this, I’d be curious:

what kind of projects you use them for

when you decide to switch back to a full editor

whether they’ve actually saved you time long term

Just trying to get a sense of how others are approaching this.

reddit.com
u/Deep-Joke-8239 — 25 days ago