Spreadsheets Revolutions

Juan Villela

I don’t recommend this approach; there are plenty of more user-friendly solutions to this “problem”. But that’s no fun. So let’s over-engineer the hell out of this.

Anyhow, we’re back on Airtable. It’s nice, relatively inexpressive, and has a great API. And you know what’s the best part? I don’t have to maintain shit. I upload, download, and call it a day.

To get a little more context on what’s going on, read Part 1 and Part 2 of the Spreadsheets series. But in short, I was dissatisfied with the current bookmarking solutions, so I made a custom one instead. This started with a myriad of Airtable bases, and then —for some stupid reason— I decided to roll out my own hosted database.

Don’t get me wrong; I loved having a custom database + API that I could tailor to my needs. However, not only did it not offer much more over Airtable, but it was also far more expensive. Aside from that, I didn’t have the time to maintain another API on top of the growing list of personal projects and a day job.

That said, my mistake was focusing on the wrong area. Rather than rolling a custom database, I should’ve made an API for data entry instead of relying on a small army of Shortcuts. So that’s what I did.

The Bookmarker

This whole thing’s primary (if not only) purpose is to save data. This comes from multiple sources, so we must pull and parse data from different websites. Some of these have public APIs I can leverage to extract the metadata I need. But for things like articles, I read the HTML and pull what I need via a handful of regular expressions. It sounds daunting, but it’s just knowing what you’re looking for. If you squint enough, you’ll see that the web is made up of standards. Pulling a title and author from an article should be the same across the board. Right?

As I mentioned before, this was originally all done via Shortcuts. But that quickly became cumbersome. The next best thing was to grab the URL for the bookmark and send it to an API where the relevant data could be extracted. For reference, these are the columns on these tables:

interface BookmarkData {
  title: string;
  creator: string;
  url: string;
  tags: string[];
}

Some column names change based on the category, like tweets and Reddit posts. But for most, that’s the data model. url and tags remain constant. These two are the only things I send to the API. Everything else is automatically extracted from the server for me.

Once the data arrives, the API figures out the category and if it needs to hit any external APIs. It then gives the payload the shape according to the Airtable base and sends it over for saving. All of this takes place on a Cloudflare Worker. It’s available on-demand and is compiled into plain JavaScript from Typescript. You can review the code at my bookmarker repo.

But to get a better idea, this is what the setup looks like:

GArdadbDeHSBUtiaoSReBtFvoeLrooekl,moErMmeikxmteacRnmtaodrteeaetikmrrAasaoCknDivaeaarSTetrltthaeaaogTgAAbrroPPltarIIeccysukters

All this is standard stuff. I shifted the load from my phone to a server. The most prominent feature here is archiving.

The Archiver

I have a not so irrational fear of losing my data. Besides that, bookmarking a piece of content to discover that the creator has taken it down, or worse, that the platform where it was hosted removed it themselves, is just awful.

This is commonly known as link rot or platforms being assholes. To circumvent that, I’ve invested a lot of time and effort to ensure all my data is backed up in several places. Regarding my bookmarks, I keep a copy of the media type on a B2 bucket. That is a downloaded copy of the article, podcast, video, etc. I wrote an archiving script on a scheduled CI called archiver. Aside from archiving bookmarks, it also keeps a JSON file copy of every Airtable base. Here’s a nifty diagram for this setup:

FilUtUpepdrDlaootBwaeoDndoelAGktotiemeaortardtrmBaAkiC2bisnolrenaetwtna/Medwben/lEdtGexieAiaatrDsscatTFhtiyBiianpulvgefeefAeLLrriicnnhkkives

And although it might seem overkill, while testing this script, I found over a dozen bookmarks that were already dead links. And new ones have popped up since. So, it’s already paying off.

Is It Worth The Trouble?

Yes. I’d like to re-quote Reconcilable Differences 112:

it doesn’t cost me very much at all to write these things down; it could cost me later in the future not to remember something

And I’ve found this to be true on several occasions. Be it for an article I’m writing or to solidify a point in a conversation. Or maybe I want to re-listen to that podcast episode because it was pretty good. Our brains are relational databases. This bookmarks database is an external API I reference for additional information. I know what I’m looking for; I don’t know what to say. But I know where to look. And when I do, I need it to be there.

See Also

Owning Your Data

When your data is the source of revenue, whoever has it will do anything to protect it and reassure you that it is best placed in their hands. But when it isn't at risk of being lost, it's being utilized to violate your privacy.

Spreadsheets Reloaded

In this second installment of Spreadsheets, I want to detail my attempt at making a database for all my lists. I don't recommend this approach; there are plenty of more user-friendly solutions to this problem. But that's no fun.

Spreadsheets

I like lists. I make them all the time to help me keep track of just about anything I need to know. After some time, these became spreadsheets. And now, it's a sizable amount of Airtables.