Live data from Hacker News

A receipt printer cured my procrastination

laurieherault.com

161–170 of 634 posts

Re: A receipt printer cured my procrastination

#161

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.

I am glad to see that I am not the only one doing this :)

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…

I imagine you've considered it already, but maybe your work would be willing to put the 2FA secret into something like 1Password, which you could access on your computer instead of your phone.

Re: A receipt printer cured my procrastination

#164
post #144

Earlier 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).

The comments here have the genre of "2 factor, 1 device"...

Re: A receipt printer cured my procrastination

#165

I 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…

That gives me an idea. We could have some kind of random character that comes out with each task from the printer, with different rarity levels. It is an idea that might hook some people and help them stay consistent.

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

#166

Earlier 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!

My first comments may have sounded pessimistic, but I do think you've found a couple interesting ideas that I haven't seen before, in making individual notes for your daily habits and throwing the crumpled notes in a jar. I have a couple pads of sticky notes in front of me right now, to get started on items for tomorrow, so thanks for the inspiration.

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…

Check this out: https://github.com/Authenticator-Extension/Authenticator

Re: A receipt printer cured my procrastination

#170

Earlier 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…

Just to add, 'pass' has an otp extension to simplify this a bit [1]

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
Post reply on HN