← Back Home

What I accomplished today

memo

I feel exhausted right now. Had to stay up. Yesterday until 11:30, 12. Helping Laura with her forehand, but thankfully we got that fixed. I woke up this morning, got 8 hours, but I just overall feel tired. The recovery optimization is something I need to work on. Even doing the morning start routine is a bit hard.

There’s always the question of what happens if I just chilled out this morning. What happens if I just let go and not worried about strictly starting. Usually it then goes to the Instagram algorithm, but I realized that

I keep pushing robotics as the primary focus and goal, but that pressure seems to be causing exhaustion. If my identity was more fluid, and I could identify more as an athlete, someone who wants to be physically well first, getting up in the mornings would feel more aligned.

I’m not sure if I’m getting the same spark or the same driving force. I know I need to do hard things, and disciplining myself over and over again, and pushing hard things in the morning is one way, but it does drain you time and time again.


Robotics

Terminal session startup sequence:

source /opt/ros/humble/setup.bash # Base ROS2 source ~/microros_ws/install/local_setup.bash # micro-ROS tools source ~/conquerer_ws/install/local_setup.bash # Your robot code

~/ (home directory) ├── microros_ws/ # micro-ROS tools (build once, use everywhere) │ ├── src/ │ ├── build/ │ └── install/ │ └── setup.bash # Source this for micro-ROS tools │ └── conquerer_ws/ # Your robot-specific code ├── src/ │ ├── conquerer_control/ │ ├── conquerer_sensors/ │ └── conquerer_navigation/ ├── build/ └── install/ └── setup.bash # Source this for your nodes

![[Pasted image 20260204155224.png]]