The author shares their journey and methods for managing a vast collection of over 10,000 bookmarks, transitioning from third-party services like delicious and Pocket to using Raindrop and a custom shell script solution.
Abstract
The author begins by expressing dissatisfaction with previous bookmark management solutions, such as delicious and Pocket, due to issues like lost bookmarks and premium feature limitations. After experimenting with different methods, the author settled on Raindrop for its user-friendly interface and useful features. For personal bookmark management, the author, who is comfortable with shell scripting, developed a plain text-based system using a links.conf file. This system allows for efficient organization and retrieval of bookmarks through custom shell commands. The author also details how to extract bookmarks from OneNote using MS Graph Explorer and process the HTML content to integrate with their text-based system.
Opinions
The author prefers a simple, direct approach to bookmark management, favoring solutions that offer full-text search capabilities and a friendly user interface.
They value the ability to have control over their private bookmarks, leading them to create a custom solution that fits their needs as a developer.
The author found Pocket's requirement to upgrade to a premium account for full-text search functionality to be a drawback.
Raindrop is praised for its nice features and more friendly UI compared to other services the author has used.
The author is skilled in shell scripting and leverages this expertise to manage their bookmarks efficiently, indicating a preference for command-line tools among tech-savvy users.
They consider the use of MS Graph Explorer to extract links from OneNote to be a practical solution to the challenge of migrating bookmarks from one format to another.
The author recommends trying out an AI service that they find to be a cost-effective alternative to ChatGPT Plus (GPT-4), suggesting a value for performance in their tool recommendations.
How do I manage my 10000+ links?
Sometimes, the simplest way might be the best way.
For a long time, I used delicious to manage bookmarks. I stopped using it when it was acquired by Yahoo. After that, I started to use pocket for several years. For a while, many bookmarks I saved before could not be found, and they were displayed as blank. Pocket didn’t give me powerful support to solve it. In addition, to have a full-text search, I need to upgrade to a premium account. Gradually, I rarely use it anymore.
Finally, I discovered raindrop which has a more friendly UI and nice features. Now, I mainly use raindrop.
Solution for the Private Bookmarks Management
As a developer, I am comfortable with shell script. Therefore, I use plain text to manage my private bookmarks.
The format is simple:
[URL];Description or Tags
Before I started to use the plain text file to store my private bookmarks, I saved most of them in my OneNote pages by adding text links.
Therefore, the challenge is to extract the hundreds of links from my OneNote pages. MS Graph Explorer makes it possible. The next sub-section tells how to use MS Graph Explorer to get OneNote page content in HTML format.
Extract link URLs from OneNote with Graph Explorer
Log in Graph Explorer with MS account and go to the section OneNote
Click GET my notebooks, click the button Run Query
It will return all metadata of the OneNote books under your name.
In the response, you can find sectionsUrl and sectionGroupsUrl which can be used to access sections.
Copy and paste sectionsUrl in the text field on the top position of the page, and Run Query to get sections response which contains pagesUrl. You can use pagesUrl to access pages.
The response of the pages contains contentUrl which can be used to access page content.