Every so often, you get stuck...and sometimes you run into a problem that you know you've solved before, right? Often for me it's some annoying issue with a dev tool.
After having to experience re-Googling and re-researching, I've been trying to use browser bookmarks and notes as a sort of library by topics/tags to keep a history of fixes to problems that I encounter. Sometimes they never come up again, but occasionally they do.
What tools do you guys use to combat the dreaded re-Googling? Or are you okay with re-Googling?
Top comments (28)
That depends on what I'm trying to recall and how frequently I need it.
If it is a terminal command, the shell history is more than enough. If it is a somewhat complicated command that I need too frequently, I create an alias or a script for it.
When I depend on some code snippet too frequently, I tend to create a template for it in my editor or IDE.
The code changes or patterns I have to recall, I find them in my version history. Indeed I consult it a lot!
If it is an answer to a problem, I count with my browser history. (Indeed, I've got really frustrated when Firefox started to limit the history it saves.)
Often, when I find a solution to a problem myself, I post the question in Stack Overflow (if it is acceptable there) and answer it myself. It tends to work very well, I frequently go back to my profile to look for those bookmarks.
Very rarely, if I find a very good text, I add it to my Pinboard bookmarks.
If it is some non-googleable stuff (intranet content, company policy etc.) and I keep consulting it, I bookmark it in Firefox and that is it.
Indeed, it appears I'm more Google-tolerant than most people :) I guess the main reason are the scripts and templates: most of my colleagues save them in text files but I'd rather have them as much automated as possible. It demands some patience at first but we get better at this when we practice it.
I like the idea of posting it as a question on StackOverflow. That way you're not just helping yourself out, but you're helping out many more people. Great idea :)
I got tired of re-Googling stuff, so I started doing a couple of things:
I have a couple ideas that I have yet to put into practice but am pretty excited about .... one is to look for a stackoverflow question about the same bug & answer it, the other is to spin up a quick gist or blog post describing it and my fix. Would keep the information in an easily-findable spot for later and also possibly help the next person who comes along.
Ah, I missed that you were using gists too! I like to keep it all in one gist so it's easy to find, but I haven't added a whole lot to it so I'm not sure it'll scale.
I think as long as there's a good table of contents it should work out fine! Or multiple gists with a gist of reference links...
Because I have a jekyll blog, writing them as blog posts is just as simple for me.
This is one of my favorite topics!
Holding on to techniques and ways to leverage tools (at the commandline and otherwise) is crucial for technical experts.
-> Browser extensions.
You can collect browser bookmarks into groups and manage them as text with a browser extension called OneTab. Give it a test - you'll probably like it for helping with managing the "sets of tabs" that result from research.
-> Private data saved online.
There's a tool called "Google Keep" that rocks for managing short or long slabs of text like digital post-it notes. Google doesn't talk about it much, but it's pretty awesome.
-> Public data saved online.
Some mailing lists keep their history. That can work for sharing techniques with a group/team that anyone on the team can later go back and refer to.
Totally public blogging and wiki also work when you're careful with what you copy/paste. For an example of how public blogging can do this for you, check out my blog awkiscool over on quora - it has a bunch of stuff I wrote mainly so I could find it in the future.
I'm curious about this as well. I have some personal methods, like the notes app on my Mac. I prefer it to similar things I have used, but nothing I have used seems like the ideal solution.
Something nice in my mind would be an app where I can dump links into and it would download them, and then crawl and index the content. So in the future I can just have an OS-enabled hot key to quickly search the local index with zero latency.
Would love to know if something like that exists with good UX.
That sounds like a perfect tool. Some spin on something like this?
I'm hijacking the "name" field in Chrome bookmarks to add tags so they come up easily in search. Like "Some title (tag tag tag)".
But I also use the Notes app on my Mac. I guess I use the Notes app when they're fixes I resolve on my own (and therefore my own writeup/explanation) because there aren't external url references. So my fixes are scattered in two places, Notes and Chrome bookmarks.
Yeah, it would be like that. I'd see it as a browser extension with a "send-to-my-index" button of sorts which would then archive it locally and index for full-text search.
I think the key is it has to be easy to use and work like Mac launcher or Alfred, etc. Or else I might never end up using it.
I'd be surprised if something like this doesn't exist. I'll send some more eyeballs to this thread at some point so we can get to the bottom of this.
In fact I developed it as a sideproject.
It does full text indexing, there are chrome/firefox extensions and there are a simple fabebook and twitter autoimport integrations, but it's not local, it's an online service.
Nowadays only few coworkers and me are using it, if you're interested i can send you and invite for registration.
The page is ricube.net
[Pocket] is easy to dump links into, and it downloads the pages.
Now that they've been acquired by Mozilla it should become easy to add the remaining required features as
I also really like the idea of not having to trust links to work in the future.
I use mkdocs, a simple markdown to html builder. I use it for oneliners, code snippets or short bulletlist styled instructions.
I mount the remote folder and when making a change to that folder (edit a file, add a file etc) the markdown files get build to html on the server so the changes will be available online immediately. I'm using
I have used gists in the past and then fleshed out out in a post in my blog, with credit as appropriate. Sometimes they only make it to a draft post though, and I need to add more tags really to make it more searchable.
Useful to have it online so I can reference from anywhere with a connection. Also if it only helps one other person when they Google it then that's good :)
jacqui.tk/blog to see what I mean.
I actually use a Personal Wiki for this. I write the most common patterns and things I write in my target programming language and also add new things I find as I research issues (tiddlywiki.com/).
It's a single self-contained HTML file.
This is super hard, especially when you're working alone and not in a team of people. In a team, this information tends to get shared somehow, and you might get lucky and someone remembers it.
At work, we use the wiki in gitlab for stupid problems that others might run into. If you've figured out something hard by repeatedly banging your head against it, there's a chance somebody else will also need to figure that out at some point (it doesn't have to be you), so it's worth writing it down.
Not perfect, though. Sometime you get to the end of a rat-hole and can't even remember what all the steps were that got you there. Definitely interested in hearing what others do!
is difficult. I make manuals in word about installations and write encountered errors and solutions. If something is short I use my blog so I can use it online. Save bookmarks but now they are a lot and never need to use it again or they deleted the web post. My fast resource is remember how to re-googling, besides can help to find updated solutions.