I like how the author mentioned typing speed tests as a “warm up” to the day. I frequently find myself going to do a typing speed test when I’m at my desk but unable to work, and have often wondered why I do that and if anyone else does that.
A receipt printer cured my procrastination
161–170 of 634 posts
Re: A receipt printer cured my procrastination
#162Clarity is key
Re: A receipt printer cured my procrastination
#163> Why can I focus for hours on a game but procrastinate when writing an email? OK I got a bit triggered by this sentence. Not at TFA, but sharing my own experience: Games are fun . And I don't mean Type 1 vs Type 2 fun and the email is somehow type 2 fun. I mean that the stimulation / "hit" from a game is just higher than 90-99%% of work tasks (writing a new CLI or optimizer excluded!!). We pile on much stimulation t…
> I'm sure phones are just as stimulating for some. This is one of my big objections do 2FA. My work has been pushing it hard, and from a security perspective, I get it. However, it’s all via an Authenticator app on the phone. We can no longer set down our phones and simply work. To start working, and periodically throughout the day, we are now forced to pickup our phones to authenticate. This invites the chance to s…
Re: A receipt printer cured my procrastination
#164Earlier quoted context omitted.
> I'm sure phones are just as stimulating for some. This is one of my big objections do 2FA. My work has been pushing it hard, and from a security perspective, I get it. However, it’s all via an Authenticator app on the phone. We can no longer set down our phones and simply work. To start working, and periodically throughout the day, we are now forced to pickup our phones to authenticate. This invites the chance to s…
1Password can be your 2fa and autofill those fields. It has a built in scanner which will look at your screen and read the QR code on the screen (no separate device needed).
Re: A receipt printer cured my procrastination
#165I had a time when my condition was acting up and I was struggling to deal with JIRA and got the idea of making paper tickets with a receipt printer. I bought a few receipt printers on Ebay and learned how to use them but never really wound up coupling them to JIRA because handwritten tickets were good enough and my condition got better. Wound up printing a lot of Pokémon characters do, as reference art for Pokémon is…
Yes, I have a printer with both RJ45 and USB. I spent a bit more to get that, so I can stay flexible depending on what I want to do with it.
Re: A receipt printer cured my procrastination
#166Earlier quoted context omitted.
Nothing helps me procrastinate like trying out a new trick, a new tool, a new list-making method, etc. I've killed time on dozens of different solutions, and some of them were pretty good at getting me to focus and work hard on implementing that new method, but none translated much into getting more actual work done earlier. Nothing really helped with that until one day I realized I was getting too old to keep being…
I totally recognize myself in your comment!
I've tried sticky notes before, but tended to use those just for the bigger tasks, while thinking I should put my regular daily habits on a single sheet that I could check off, to keep the sticky notes from becoming an unruly mess. But then the daily list always got neglected. I still got the dishes done, but I wouldn't get it checked off, so the overall system fell apart. Putting every task in the same single-note format may feel like overkill, but may be what it takes to work.
Re: A receipt printer cured my procrastination
#167> Why can I focus for hours on a game but procrastinate when writing an email? OK I got a bit triggered by this sentence. Not at TFA, but sharing my own experience: Games are fun . And I don't mean Type 1 vs Type 2 fun and the email is somehow type 2 fun. I mean that the stimulation / "hit" from a game is just higher than 90-99%% of work tasks (writing a new CLI or optimizer excluded!!). We pile on much stimulation t…
> I'm sure phones are just as stimulating for some. This is one of my big objections do 2FA. My work has been pushing it hard, and from a security perspective, I get it. However, it’s all via an Authenticator app on the phone. We can no longer set down our phones and simply work. To start working, and periodically throughout the day, we are now forced to pickup our phones to authenticate. This invites the chance to s…
Re: A receipt printer cured my procrastination
#168Re: A receipt printer cured my procrastination
#169Re: A receipt printer cured my procrastination
#170Earlier quoted context omitted.
> I'm sure phones are just as stimulating for some. This is one of my big objections do 2FA. My work has been pushing it hard, and from a security perspective, I get it. However, it’s all via an Authenticator app on the phone. We can no longer set down our phones and simply work. To start working, and periodically throughout the day, we are now forced to pickup our phones to authenticate. This invites the chance to s…
You should try a CLI-based workflow for 2FA. As long as you can exfiltrate the secret (and you often can by pretending you can't scan QR codes), then you can use oathtool to generate passcodes. 1. use 'pass' to save the secret: 'pass edit work.secret' 2. use oathtool to generate 2fa given a secret: ' #!/bin/bash oathtool -b --totp "`pass show $1.secret`" >&1 ' use it like '2fa work' If you have 'xsel' you can even do…
With that, you can do
$ zbarimg -q --raw qrcode.png | pass otp insert
$ pass otp # or pipe to xsel
[1] https://github.com/tadfisher/pass-otp