Back to blog
7 min readMay 12

I bookmarked that Stack Overflow answer three years ago and now I cannot find it

You saved that answer about a tricky timezone bug years ago. Stack Overflow's favorites list has no tags and no notes. Here is what to do instead.

I bookmarked that Stack Overflow answer three years ago and now I cannot find it

You hit a familiar bug. Something about Python timezone math giving you results an hour off depending on whether daylight savings was active when the timestamp was created. You remember reading the definitive explanation on Stack Overflow. You remember the answer was long, had four code blocks, and ended with a clean one-liner using pytz.normalize. You remember favoriting it. You open your Stack Overflow profile, click the Saves tab, and scroll. The list goes back five years. Nothing about timezones jumps out by title.

You give up after two minutes and re-Google the bug. You find the same answer. You favorite it again, two rows up from the one you favorited three years ago.

Why does the Stack Overflow saves list fail at recall?

The saves list (renamed from "favorites" a few years back) shows you a reverse-chronological list of every question whose answer you bookmarked. Each row shows the question title and a timestamp. That is the entire surface. There is no per-save note. There is no tag you can add. There is no "why I saved this" field. There is no full-text search across the bodies of the answers you saved. If the keyword you remember is in the answer text but not in the question title, you cannot find it through the saves page.

Stack Overflow has a global search bar, but it searches the public corpus, not your saves. You can scope a search to a tag or a user, not to your own bookmarks. So the practical workflow for any active developer is: search the public corpus to re-find the same answer you already favorited. Your favorites can start to feel like a write-only list once your save count crosses a few dozen.

Why has the saves feature changed so little?

The saves surface has seen limited iteration over the years. Looking at what shipped: a rename from Favorites to Bookmarks to Saves, and the addition of lists (similar to GitHub stars lists). Based on what is publicly visible, no note field, no tag field, and no full-text search across saved answer bodies have been added to the saves surface in that time. Some users on meta.stackoverflow.com have discussed wanting a per-save note field, though we have not seen a public roadmap commitment either way.

Lists let you bucket saved questions into named collections. They work the way GitHub's lists work: useful if you file at the moment of saving, less useful months later when the taxonomy you picked does not match how you now think about the problem. And lists still do not let you attach a note to a save.

What context does Stack Overflow lose when you save an answer?

A Stack Overflow answer is rarely useful on its own. The value is the answer plus the comments under it (which often contain the real gotcha, the edge case, the warning that the code does not work on Python 3.11+) plus the question that prompted it (which gives you the matching keywords for future recall) plus your own situation at the time (you saved it because you had this exact bug on the staging server in June).

When you click the bookmark icon, Stack Overflow stores one of those four things. The link to the question page. That is it. The comments are still there if you click through; they are not indexed for you. The question title is the only searchable string. Your situation, the thing that made this answer worth saving over the many other answers on the same tag, is not captured anywhere.

How is this the same pattern as GitHub stars and Slack saves?

It is the same shape exactly. Low-friction save button. Flat chronological list. Shallow keyword search. Some developers describe the same recall problem when they look at their GitHub stars list or their Slack saved messages: saving was one click at the time, and recall later requires either perfect memory of the title or a separate indexing layer they end up building themselves. For your own Stack Overflow saves, that means you are losing access to high-quality, peer-reviewed answers to problems you have already solved once.

The marginal value of having a Stack Overflow answer indexed against your own search vocabulary is high, because Stack Overflow answers are mostly self-contained: they ship the fix in the code block. If you can ask for it in your own words later, the answer is back in your hands in seconds.

What about Stack Overflow's collectives or teams?

Collectives and Stack Overflow for Teams are separate products. Collectives are tag-curated communities (the AWS collective, the Google Cloud collective, and so on); they do not change how your personal saves work. Stack Overflow for Teams is a private Q&A platform with its own bookmark store, separate from your public Stack Overflow profile. Teams has additional features around article-style posts and more granular permissions; the personal bookmark surface there is broadly similar in shape to the public one.

If your company runs Stack Overflow for Teams, anything you save inside that workspace lives inside that workspace, which is worth keeping in mind when you think about where your accumulated context will be reachable from later.

How does dEssence help?

dEssence is memory you don't have to maintain. Three co-equal save surfaces feed one recall layer: the Chrome extension, Telegram bot, or the web app at dessence.ai. On a Stack Overflow answer page, click the dEssence icon and type a sentence about why you saved it. From your phone, forward the link to the Telegram bot with a one-line note. Or paste the answer URL and a description into the web app at dessence.ai. There is nothing to file: no folders, no tags, no organizing. The loop is simple, save it, forget it, ask for it later.

Later means actually later: when the timezone bug surfaces on a Thursday, you ask in your own words. "That Python timezone thing where DST messed up the math." The answer comes back with your note attached. The Stack Overflow bookmark itself can stay where it is; dEssence is the recall layer that sits on top.

Honest about where dEssence is: it is in beta. There is no native iOS or Android app yet (Chrome extension, Telegram bot, and web app at dessence.ai are the three surfaces). The paid tier ($9 per month Pro) is not finalized, and the free tier today is capped at 500 items. No team features yet. If you save heavy, the cap will show up before the paid tier is locked in.

Frequently asked questions

How do I find my old bookmarks on Stack Overflow?

Open your profile and click the Saves tab (formerly Bookmarks, formerly Favorites). The page lists every question whose answer you bookmarked, in reverse chronological order. You can filter by list if you used the lists feature, but there is no full-text search across the answer bodies and no per-save note field. If the question title does not contain your search term, you will have to scroll.

Can I search inside my Stack Overflow saved answers?

Not from inside the saves page. The Stack Overflow global search bar searches the public corpus and supports filters like user:, tag:, and is:answer, but it does not have an is:bookmarked filter against your own saves. The practical workaround most developers use is to re-search the public corpus and re-find the same answer.

What is the difference between Stack Overflow saves, lists, and the older Favorites feature?

Favorites was the original name; it was renamed to Bookmarks, then to Saves. Lists were added on top of saves as named buckets you can drop a saved question into, similar to playlist folders. The underlying record is still a flat link to a question page with a timestamp. None of those iterations added a note field, tags, or search inside answer bodies.

Why doesn't Stack Overflow let me add notes to bookmarks?

The saves surface has stayed largely unchanged through several UI redesigns, and a per-save note field has not been added to it. Some users on meta.stackoverflow.com have discussed wanting one, though we have not seen a public roadmap commitment either way.

What is the best way to organize Stack Overflow answers I want to keep?

The approach that survives long-term is to capture the answer outside of Stack Overflow, with the one or two sentences of context that make it findable later (the bug you had, the language and version, the framework). Some developers do this in a personal markdown file; some use a generic save tool like Raindrop or Pocket; some use a dedicated recall layer that lets you ask in your own words.

The pattern is the same as with GitHub stars, Slack saves, and Pocket: a low-friction save button without a recall layer attached to it. The accumulated context is worth something, and the gap between saving and finding-later is where it gets lost.