• 2 Posts
  • 20 Comments
Joined 2 months ago
cake
Cake day: February 5th, 2025

help-circle




  • So my biggest tip, if you want to start out exercising make sure you have a clear goal. For me the goal is to feel good in my limbs and body, so I don’t have pains and aches and have more energy. For others it is looks or muscles or mental health or whatever.

    If you know why you are doing something it is a lot easier to do. I think focus often ends up on the visible aspects like looking better or losing a little weigth but these goals will take a lot more commitment than just feeling good by exercising, so make sure you know what the goal is and that you are realistic about it.

    For doing at home, you could start with easy yoga and some weights and a RUBBER BAND. Rubber bands are fucking awesome for at home exercise. Put it under your foot, around a doorknob… Whatever. Short jogs are underrated. Five minutes around the block is a good warmup.

    Jog five minutes, do a yoga set 20-30 minutes (find on youtube for example, eventually design your own), then rubber band exercises for ten or so and done. That is a good exercise you can do at home in many different ways.





  • One thing about the thumbdrives, a LOT of features did not work for me when running live bootable, and it almost put me off. Then I made the actuall full install and a lot of the stuff that had not worked now did. Just so people understand the live bootables are very much just a demo, and doesn’t say much about compatibility really.


  • Nice I didn’t know that ^^ should probably learn at least the basic bash operators, I am just hacking together the different commands I happen to know at the moment really

    Edit: why echo instead of printf?

    This was causing a lot of issues with newlines, like when I fetched the log to view it my $ was right after the log entry so I switched it back. But it is probably useful in the future to use >> instead :)






  • It is not as cryptic as it sounded I just explained it badly.

    Log everything you do in human readable text, because realistically as a beginner going through machine generated logs is not very fun, and .bash_history will be filled with stuff that isn’t relevant always.

    It is just a bash script that logs a message with the current date to a file I can access from MacOS as well (on the shared partition) so that I can see what I did if I mess up too bad…

    Edit:

    Here it is:

    # Log argument to changelog.txt with current date and time.
    
    function log()
    {
    	local changelog="/run/media/jamie/DUAL/changelog"
    	local text="$(cat $changelog)" 
    	if [ "$1" == "--view" ]; then
    		cat $changelog
    	else
    		printf "$text\n$(date +%D:%H:%M): $1\n" > $changelog
    	fi
    }
    

    Each line looks like this: 03/16/25:11:49: Running dnf upgrade

    I will probably add some stuff so I can get the last 5 lines or something if I want, but at the moment this is really fine.





  • Maybe you are odd to us! I think many neurotypicals are odd, but not because they are neurotypical specifically.

    People are different and it is generally a bad idea to assume it is because of some diagnostic they got or not.

    I think the more you get to know most people they seem stranger and stranger, especially as you grow up and start to understand the reasons people value what they value and just how different everyone is.