Personally, I compute in 3 ways:
1. Professionally
2. Recreationally
3. Personally
Personally as in, I need to accomplish a task in my normal life, and I use my computer skills to solve it in a way a non-techie wouldn't be able to.
For example, today on Reddit someone asked: "Is there a word, in english, that has the letter ‘V’ and is not followed by a vowel?"
So I ran this on my mac:
egrep '^[a-z].*v[^eaiouy]' /usr/share/dict/words
The part at the beginning means that the first letter should be lowercase (imo proper nouns don't really count)
And voila, a buttload of them showed up!
I've also used my cybersecurity knowledge to gain access to devices who's security was protecting me from myself, and done the same for many friends.
I enjoy things like that. What about you? Any such small personal tales?
Another is about mobile internet. Here you activate a prepaid plan for a day, but often the system “forgets” to restrict your internet access when the day is over and you go back to the very expensive default plan (there is no not having internet if you have credit on your account). I used an app at that time call Tasker that had a visual programming workflow like Shortcuts. At 11:50pm every night it turns off data on the phone and sends the code to deactivate the plan (needed to clean stale data on the system, so you can activate the plan again shortly after midnight).