Live data from Hacker News

A receipt printer cured my procrastination

laurieherault.com

131–140 of 634 posts

Re: A receipt printer cured my procrastination

#131

Great article and great system. A little out of scope since the article wasn’t about the finer points of ADHD but I’ve always wondered if we’re being disingenuously hard on ourselves by labeling it a disorder. So many people show the symptoms and they’ve only gotten worse as the world has become more complicated that it seems less like a problem with the individual and more like an natural effect of putting what are…

Your remark is very interesting. I was recently thinking that ADHD is kind of like an allergy to the modern world.

Re: A receipt printer cured my procrastination

#132
post #80

This reminds me somewhat of a system by David MacIver: https://drmaciver.substack.com/p/using-a-list-to-manage-exec... He builds his list from scratch every morning. The list is flat, so as you go about your day and subtasks occur to you, they are added to the list without explicit links to the main task. I thought it might be risky to start with a blank list, because something important might be forgotten. But it tu…

It would do people a whole lot of good, if they start looking at a great day as executing well tested 'checklist' rather than a 'todo list' built from scratch every day.

No wonder some of the most productive people like Knuth, or people like presidents many times have fixed schedules, clothes they wear, food they eat etc etc.

If something is working, do it more often, you want to do more of what works, at some point things that don't work wont be on your check list.

Re: A receipt printer cured my procrastination

#133
post #96

Earlier quoted context omitted.

Thanks for your comment! I have the same question as hyperific — which app are you using?

https://sweepy.com/ There is also one that is called "tody" that we didn't try out. Both require a small subscription fee though, which I really dislike. I wish I had found a nice open source alternative. Besides the subscription fee (which was like 18€/year for us both), I have no complaints yet about the app.

Thanks for your answer!

Re: A receipt printer cured my procrastination

#136
post #123

Great article, Laurie. Can you provide more technical details on the software you used to send tasks to print?

Thank you :)

It is a piece of software I developed myself using Tauri. The only major difficulty is that you need to send a specific format to these printers. But there are plenty of libraries that make it fairly easy to do.

Re: A receipt printer cured my procrastination

#137

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…

Even if you only have the QR code, you can download the image or screenshot it and then extract the secret without ever having to use a smartphone by using zbarimg and then manually extracting the secret from the URI:

    sudo apt-get install zbar-tools oathtool
    zbarimg qr-2fa-code.png
    
Output:

    QR-Code:otpauth://totp/username?secret=ABCDEFSECRET012349BASE32&period=30&digits=6
If you have some 2FA that you need to enter 10 times per day, then you can also add a global shortcut to automatically paste it. Of course, this undermines the "second device" security. Some PC password managers also support 2FA, e.g. https://github.com/paolostivanin/OTPClient ( sudo apt install otpclient )

Re: A receipt printer cured my procrastination

#138
post #108

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…

Hmm. I wonder if there would be a market for a super simple TOTP authentication device with an e-paper display. Kind of like those RSA tokens with the LCDs, but more modern and able to hold any number of TOTP credentials. Getting the credentials loaded could be a bit of a pain without a camera for QR code scanning. Easiest solution would be via Bluetooth to a companion app, which you would probably want anyway for pe…

Sounds like a job for a second phone, one which you'd just be extra careful to only use for one purpose. It can be cheap as balls, but it will have a QR-compatible camera and whatever else we may have come to expect from such a device. :)

Re: A receipt printer cured my procrastination

#139

Author here. It’s my first article. I’m a bit nervous but excited to get your feedback. If you deal with procrastination too, I hope this method helps you like it helped me.

Just so you know.

Offtopic but rewarding your article on Firefox on Android, there's a slight misalignment on the side. The left side gets cut off about 5-8 pixels, I'd say. It cuts off most of the first letter on every line.

It might be just my phone, of course. But I don't have any particular extensions installed or anything else.

Re: A receipt printer cured my procrastination

#140
post #57

Does anybody else feel like he has invented pomodoros and todo.txt

I am the author, and thank you for your comment! What I am talking about is really very different from the Pomodoro method. That method uses 25-minute sessions, while I am talking about micro-tasks of 2 to 5 minutes printed on receipt tickets. As for todo.txt, I mentioned in the article that this kind of tool with a hierarchy does not work for me at all, given the massive number of tasks I have. And I proposed a more…

Hi Laurie, reading your article, I'm wondering to myself, maybe I should copy this, and add a Duolingo aspect to it, the first feature I can think of is a button (near the printer, or a virtual one on the app) that is basically "Give me a random task". Duolingo also has lessons (where the learner has to complete several questions), and maybe a "lesson" can be a big task, that encompasses its subtasks.
Post reply on HN