mbirth 🇬🇧

Collector of social media accounts. Speaks 🇬🇧 and 🇩🇪.

  • 0 Posts
  • 21 Comments
Joined 3 years ago
cake
Cake day: June 1st, 2023

help-circle







  • As someone who always had some kind of PDA (CASIO digital diary, Palm, Compaq iPaq) and switched onto the smartphone bandwagon pretty early (SonyEricsson P800/P910i, Qtek 9000, various Androids and various iPhones) … I don’t think I could enjoy the experience with a dumb phone. I love modern technology too much.

    I once had a colleague that religiously only used a Nokia 3210 (the newer 3G/4G model). Which meant 160 character messages only. No emojis, no photos (as MMS were expensive). He was also the kind of person to use paper maps when driving - incl. stopping to look for alternative routes if some road was blocked or jammed. That’s definitely not for me.

    The only way this could work for me would be to have some small PDA that can connect to the phone to use the Internet. And I appreciate that both devices have been merged into smartphones at some point.










  • And if you want some customisation, e.g. some repeating string over and over, you can use something like this:

    yes "b0M" | tr -d '\n' | head -c 10G | gzip -c > 10GB.gz
    

    yes repeats the given string (followed by a line feed) indefinitely - originally meant to type “yes” + ENTER into prompts. tr then removes the line breaks again and head makes sure to only take 10GB and not have it run indefinitely.

    If you want to be really fancy, you can even add some HTML header and footer to some files like header and footer and then run it like this:

    yes "b0M" | tr -d '\n' | head -c 10G | cat header - footer | gzip -c > 10GB.gz