Pocket gets worse the more you use it (2019)
21–30 of 161 posts
Re: Pocket gets worse the more you use it (2019)
#22My use case for Pocket is completely different from the author’s. I use it every day to get web content onto a Kobo ereader. It strips ads and often gets stuff behind paywalls. My family shares the same pocket account and we often end up discussing things that get synced to all the kobos in the house. This functionality is so useful and seems like a well kept secret. If it went away I’d really be upset.
Re: Pocket gets worse the more you use it (2019)
#23Earlier quoted context omitted.
i'm with you as long as -- by design -- it consists of the plainest of plain text, and will migrate with me along my life. otherwise all the shine and chrome in the world won't make it superior to a filing cabinet and some free time. that's the difficulty point for all of these personal PIM type tools, they all have their own biased view on things like file format and 'touchability' of stored data in the (unannounced…
The only revenue stream that isn’t user-hostile is subscriptions. And people generally hate that: imo, the web ended up ad-supported because users did not want to pay every website they used directly and it remains ad-supported because users continue to reject the viable alternatives (subscriptions, services like Blendle, some micropayment scheme).
Re: Pocket gets worse the more you use it (2019)
#24SingleFile even has an iOS extension (and easySearch is very nice for iOS search - although not quite as nice as a desktop experience, owing to iOS limitations).
Re: Pocket gets worse the more you use it (2019)
#25Earlier quoted context omitted.
Yes. You need notes that you can search through, and useful information that you've collected. Otherwise you're limited by what you can hold in your head - and as you get older and take on more ambitious work you'll find that's a pretty big restriction. My version of that is spread out across way too many places now - it's mainly https://til.simonwillison.net/ and https://simonwillison.net/ for published notes, 700+…
i'm with you as long as -- by design -- it consists of the plainest of plain text, and will migrate with me along my life. otherwise all the shine and chrome in the world won't make it superior to a filing cabinet and some free time. that's the difficulty point for all of these personal PIM type tools, they all have their own biased view on things like file format and 'touchability' of stored data in the (unannounced…
Re: Pocket gets worse the more you use it (2019)
#26Earlier quoted context omitted.
by saving things for later you mean that a site copy is stored somewhere, so you could find it again years later?
The paid version does this. It keeps the text even if the original article was removed.
Re: Pocket gets worse the more you use it (2019)
#27Pocket isn’t a bookmark database, it is a tool for saving things to read later. The user interface is primarily built for reading, not organizing. I use Pocket extensively for reading, but I use Raindrop separately for organizing and managing content that I want to archive for future access with proper search, filtering, and categorization. To me, these apps serve separate functions and need different user interfaces…
Re: Pocket gets worse the more you use it (2019)
#28Earlier quoted context omitted.
> everyone needs a personal-knowledge-base What is that? Do I need it?
Yes. You need notes that you can search through, and useful information that you've collected. Otherwise you're limited by what you can hold in your head - and as you get older and take on more ambitious work you'll find that's a pretty big restriction. My version of that is spread out across way too many places now - it's mainly https://til.simonwillison.net/ and https://simonwillison.net/ for published notes, 700+…
I have ambitions to do this occasionally, and I tracked things and took notes a lot for a while, but I never found myself using it.
Re: Pocket gets worse the more you use it (2019)
#29Earlier quoted context omitted.
Yes. You need notes that you can search through, and useful information that you've collected. Otherwise you're limited by what you can hold in your head - and as you get older and take on more ambitious work you'll find that's a pretty big restriction. My version of that is spread out across way too many places now - it's mainly https://til.simonwillison.net/ and https://simonwillison.net/ for published notes, 700+…
i'm with you as long as -- by design -- it consists of the plainest of plain text, and will migrate with me along my life. otherwise all the shine and chrome in the world won't make it superior to a filing cabinet and some free time. that's the difficulty point for all of these personal PIM type tools, they all have their own biased view on things like file format and 'touchability' of stored data in the (unannounced…
The main script is:
~$ cat share/bin/n
#! /usr/bin/env bash
cd $HOME/share # or wherever you want to put your notes
echo >> notes.txt
echo -n '# ' >> notes.txt
date '+%a %d %b %Y %T %Z' | tr -d "\n" >> notes.txt
echo ' #' >> notes.txt
if [[ $# -ne 0 ]]; then
echo $@ >> notes.txt
tail notes.txt
else
vim "+normal Go" +startinsert notes.txt # or nano: nano -R +-1 notes.txt
fi
This script is accessible from all my personal machines as well as appropriate work machines. It works well enough. I've devised a small system of tags and keywords, but that part is not particularly interesting. I just put the keywords at the beginning of a line and search for them with /^thekeyword/.More structured notes go into dokuwiki or just a LibreOffice file in the project folder.
All this is almost guaranteed to be readable in 20 years. The LibreOffice files may be at more risk, but at least there is more than one tool available to read them.