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…
A receipt printer cured my procrastination
131–140 of 634 posts
Re: A receipt printer cured my procrastination
#132This 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…
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
#133Earlier 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.
Re: A receipt printer cured my procrastination
#134Re: A receipt printer cured my procrastination
#135Re: A receipt printer cured my procrastination
#136Great article, Laurie. Can you provide more technical details on the software you used to send tasks to print?
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
#137Earlier 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…
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
#138Earlier 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…
Re: A receipt printer cured my procrastination
#139Author 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.
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
#140Does 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…