• 1 Post
  • 58 Comments
Joined 3 years ago
cake
Cake day: May 24th, 2021

help-circle
  • That video!! Yeah, I don’t believe it either. Sort of reminds me of doing Kung Fu as a kid. We’d do public demonstrations and would sometimes ham it up a bit for the audience. I wonder if that’s what’s going on.

    Have you practiced push hands? There’s a neat effect I can only describe as sort of being able to bounce off the other person. You can get some decent air with it! I also wonder if there’s a bit of that going on with a lot of exaggeration.


  • I agree with you about the “weird stuff”. I teach Tai Chi and I’m very careful about the words I use, especially when it comes to describing mechanical forces. I’ll often mention that I don’t mean some notion of “life force” but rather the physical Newtonian force that your body is subject to while performing the movements.

    I find Tai Chi to be deceptively complicated with deep physical and psychological components. I have a hard time articulating what it is to others since it’s not really a martial art, and it’s not really meditation, and it’s not just a bunch of movements or calisthenics. But it does have very real effects and I love it!

    It sounds like your experience is quite similar to mine and I’m happy you found a good teacher and are enjoying the practice! 😀












  • I hear you. It does make the software easier to use, but I also wish there was more control over when it was actually running. I usually just shut down the background process entirely until I want it running again, but it’s a manual process.

    I’ve been wondering if something like Tasker would help but I’ve never looked into it.






  • Finally some positivity around async Rust!

    I write a lot of embedded C for a living, and can’t wait for the ecosystem to get better so I can switch to Rust. Threading always starts simple. All I need is to spawn a thread and wait for a message on a queue. Then requirements change and I’m waiting on multiple messages from multiple other threads and suddenly I’m writing yet another state machine that async Rust would write for me.

    I also wish I had “coloured” functions in my embedded code. Often times it’s not even documented if a function blocks or not, and sometimes the behaviour changes depending on compile time configuration (blocking, or interrupt driven, or DMA, etc.).

    Async Rust certainly has it’s complexity too, but at least to my brain it would make a lot of my code much simpler.

    I need to find some time to really dig into Embassy one of these days.