TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Experimental web browser optimized for rabbit-holing

613 pointsby cernocky8 months ago

63 comments

berkes8 months ago
Slightly unrelated:<p>&gt; As an aside, I also use this technique for navigating code with Vim, where a single shortcut goes to a definition of a function in a new pane<p>I was intrigued by this, and searched the author&#x27;s github for their .vim. This is how they do that:<p>nnoremap gF &lt;c-w&gt;vgF<p><a href="https:&#x2F;&#x2F;github.com&#x2F;szymonkaliski&#x2F;dotfiles&#x2F;blob&#x2F;357fc7c76ca86042effba7836fc8b4101057d285&#x2F;Dotfiles&#x2F;vimrc#L570">https:&#x2F;&#x2F;github.com&#x2F;szymonkaliski&#x2F;dotfiles&#x2F;blob&#x2F;357fc7c76ca86...</a><p>and<p>nnoremap &lt;silent&gt;gD :call CocActionAsync(&#x27;jumpDefinition&#x27;, &#x27;vsplit&#x27;)&lt;cr&gt;<p><a href="https:&#x2F;&#x2F;github.com&#x2F;szymonkaliski&#x2F;dotfiles&#x2F;blob&#x2F;357fc7c76ca86042effba7836fc8b4101057d285&#x2F;Dotfiles&#x2F;vim&#x2F;after&#x2F;plugin&#x2F;coc.vim#L56">https:&#x2F;&#x2F;github.com&#x2F;szymonkaliski&#x2F;dotfiles&#x2F;blob&#x2F;357fc7c76ca86...</a><p>---<p>Edit: This is what I ended up with, lua, nvim: `buf_set_keymap(&#x27;n&#x27;, &#x27;gds&#x27;, &#x27;&lt;c-w&gt;v&lt;cmd&gt;lua vim.lsp.buf.definition()&lt;CR&gt;&#x27;, opts)`<p>I made it a different map from the normal gd, so that I can choose to open in a new split or just jump to the one in my current window - I don&#x27;t want a new split if e.g. a variable is define just 20 lines above my current one.
评论 #41740941 未加载
评论 #41744396 未加载
评论 #41744723 未加载
评论 #41823169 未加载
felipesabino8 months ago
This is pretty neat!<p>And I strongly suggest that you contact Kay Xu &lt;Kai.Xu@nottingham.ac.uk&gt;, who is doing research on sensemaking [1] [2] and berrypicking [3], I think he is currently working on newer and better version of his approach with browser extensions (as opposed to a separate renderer), and you both would benefit from collaboration.<p>[1] <a href="https:&#x2F;&#x2F;vis4sense.github.io&#x2F;sensemap&#x2F;paper.pdf" rel="nofollow">https:&#x2F;&#x2F;vis4sense.github.io&#x2F;sensemap&#x2F;paper.pdf</a><p>[2] <a href="https:&#x2F;&#x2F;vis4sense.github.io&#x2F;sensemap&#x2F;" rel="nofollow">https:&#x2F;&#x2F;vis4sense.github.io&#x2F;sensemap&#x2F;</a><p>[3] <a href="https:&#x2F;&#x2F;web.archive.org&#x2F;web&#x2F;20080112091521&#x2F;http:&#x2F;&#x2F;www.gseis.ucla.edu&#x2F;faculty&#x2F;bates&#x2F;berrypicking.html" rel="nofollow">https:&#x2F;&#x2F;web.archive.org&#x2F;web&#x2F;20080112091521&#x2F;http:&#x2F;&#x2F;www.gseis....</a>
评论 #41739294 未加载
kristopolous8 months ago
I made something like this over 20 years ago.<p>It also had full text searching of the contents of the page and also worked as a browser history.<p>I used it for a few years.<p>The real solution I saw in a roomful of butcher paper tucked in cabinets in the basement of a really dedicated guy who had a learning disability. He went through textbooks and had to come up with his own special syntax in order to comprehend the text by rearranging the contents on these giant rolls effectively making a hybrid between a mind map and a zui.<p>He had a &quot;linking&quot; idea that involved an indexing system where you&#x27;d get another roll of paper out of the cabinet earmarked with labels and then unrolled it to the &quot;linked&quot; region. Then he&#x27;d fold it back on a table and have them both side by side.<p>The general applicability was immediately apparent. I worked on it as a new way to browse the web over 10 years ago for a few months but then didn&#x27;t stick with it.<p>I keep telling myself I&#x27;ll work more on it but you know, anxiety and depression sucks. You can even use llms to do smart ontological labeling now.<p>The pieces are right fucking there. All I need to do is pick them up.
评论 #41740579 未加载
评论 #41739816 未加载
评论 #41748100 未加载
评论 #41755935 未加载
projektfu8 months ago
&quot;I shared a preview on Twitter, to a surprisingly overwhelming response, but I got distracted with other things and never got back to the project&quot;.<p>Creates rabbit-holing browser, gets distracted....<p>All jokes aside, the description of the Vim functionality reminds me of the Whisper browser for Squeak, that had something of a depth-oriented SmalltalkBrowser to avoid the inevitable proliferation of windows in the normal course of things. Interesting that enough functionality for reorienting source browsing like that in Vim is about two lines of config. But, of course, the Whisper browser had stacking of things as well as sideways browsing, and new UI.
gmurphy8 months ago
This is sweet! When we made Chrome some of us (OK only me) were enamoured with an IE shell browser named iRider - it had tree style tabs and pinning, so was useful in very similar ways<p>IIRC one of the things they did well that could work here is batch control of tabs by dragging across them - you could click on a close or pin button, then drag vertically across other tabs to apply that action - it made handling the glut ever-spawning tabs very easy
评论 #41739218 未加载
评论 #41742145 未加载
Yoric8 months ago
Looks like the stuff of dreams <i>and</i> nightmares for a ADHD user.<p>Am I the only one who regularly ends up a browsing session with 300 tabs? This feels like a feature I&#x27;d overuse, and which would only make my life much worse.
评论 #41742235 未加载
评论 #41740597 未加载
评论 #41746000 未加载
评论 #41739425 未加载
评论 #41740067 未加载
评论 #41740222 未加载
评论 #41739898 未加载
评论 #41739989 未加载
评论 #41740332 未加载
sigtstp8 months ago
Interesting! Some overlap with these Firefox add-ons:<p>- Tree Style Tabs: <a href="https:&#x2F;&#x2F;addons.mozilla.org&#x2F;en-US&#x2F;firefox&#x2F;addon&#x2F;tree-style-tab" rel="nofollow">https:&#x2F;&#x2F;addons.mozilla.org&#x2F;en-US&#x2F;firefox&#x2F;addon&#x2F;tree-style-ta...</a> (more simplistic, no session saving functionality)<p>- Tree Tabs: <a href="https:&#x2F;&#x2F;addons.mozilla.org&#x2F;en-US&#x2F;firefox&#x2F;addon&#x2F;tree-tabs" rel="nofollow">https:&#x2F;&#x2F;addons.mozilla.org&#x2F;en-US&#x2F;firefox&#x2F;addon&#x2F;tree-tabs</a> (more complex, can also save sessions, but incompatible with some other add-ons and not evaluated for security by Mozilla)<p>Neither rearrange tabs in the window, just offer an alternate tree listing of open tabs.
评论 #41741968 未加载
评论 #41747518 未加载
评论 #41742646 未加载
评论 #41740622 未加载
Kydlaw8 months ago
Everybody is talking about the existential risk posed by AI but this guys release this tool in the wild without any rail guards... concerning, really.<p>A bit more seriously, it can be really useful to have a graph of ArXiv tabs instead of a linear range of tabs, this can be very handy when doing a dive in scientific literature.
评论 #41739712 未加载
评论 #41739784 未加载
est8 months ago
yes bring us back proper &quot;hypertext&quot;.<p>A browser should behave just like browsing documents, we can go back and forth, each &quot;view&quot; should be cachable and savable, not the 20MB main.min.js SPA crap!
alexpotato8 months ago
Best line ever from a post about someone who built a browser optimized for rabbit-holing:<p><pre><code> I shared a preview on Twitter ↗, to a surprisingly overwhelming response, but I got distracted with other things and never got back to the project.</code></pre>
foul8 months ago
&gt;Yes, it&#x27;s sometimes good to know how you ended up somewhere, but I think what&#x27;s most valuable about &quot;research&quot; is the synthesis part — grabbing parts of larger wholes, rearranging, recombining, thinking with the material. A small step in this direction could be persisting scroll position or maybe selection, and making the history editable — allowing users to remove dead ends, add notes, etc.<p>I need to know how this guy will escape the curse of reimplementing a less-VR version of XanaduSpace over HTTPS. Will search his RSS.
underlines8 months ago
I specifically just switched back from chrome to Firefox after about 10 years, because there were still no native hierarchical tab solutions in chrome.<p>FF + sideberry for every day use and rabbit holing.
btbuildem8 months ago
I&#x27;ve been using Gingko Writer [1] since it was &quot;gingkoapp&quot; -- it&#x27;s similar in how information is structured (hierarchical vs linear), but focused on creating, not consuming. The tool permits a rather free-flow approach to compiling things in various scopes [2], and can render a final linear work product from it.<p>OP&#x27;s browser and gingko mashed up together would be the perfect thing -- find&#x2F;explore&#x2F;learn, annotate, synthesize, organize, and combine into a finished thing, be it a reference or a proof.<p>1: <a href="https:&#x2F;&#x2F;gingkowriter.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;gingkowriter.com&#x2F;</a><p>2: <a href="https:&#x2F;&#x2F;vimeo.com&#x2F;639232763" rel="nofollow">https:&#x2F;&#x2F;vimeo.com&#x2F;639232763</a>
gillesjacobs8 months ago
The parallel browsing has strong resemblance to Xanadu from Ted Nelson&#x27;s, which was a proposed web protocol and browser.<p>But I am vague about Xanadu&#x27;s browser as I only seen it as a brief flash in Werner Herzog&#x27;s Lo and Behold, Reveries of the Connected World.
评论 #41764347 未加载
bloopernova8 months ago
I really would like to implement that multiple panes feature into Emacs, that &quot;column-mode&quot; could be interesting for code browsing.<p>And a column mode for Tree Style Tabs in Firefox (or Orion&#x2F;Servo&#x2F;etc)
unsigner8 months ago
This is also how search in IDEs should work.<p>Each new search term should open a new results panel, with space for the source code on top, and a list of hits at the bottom. Results panels are in an infinite horizontal row.
alfanick8 months ago
This brings back memories. Szymon is&#x2F;was also active in minimal&#x2F;experimental music scene [0] back in the days. I think in my hometown (Poznan, Poland) back those 10-15 years ago, there was some self-made small art-hacker community. Great to see his work again!<p>[0]: <a href="https:&#x2F;&#x2F;flic.kr&#x2F;p&#x2F;9jz4Gh" rel="nofollow">https:&#x2F;&#x2F;flic.kr&#x2F;p&#x2F;9jz4Gh</a>
0823498723498728 months ago
As a &quot;Watership Down&quot; fan, if I were ever go down the rabbit-holing rabbit hole, I&#x27;d be tempted to name the resulting tool &quot;flayrah&quot; (or maybe &quot;Rabscuttle&quot;).<p>But in the meantime (my current rabbit holing technology being a text file in a side window), I&#x27;m more than happy to try out everyone else&#x27;s!
ashkankiani8 months ago
I had this exact idea and I&#x27;ve described it to colleagues before. Fun to see parallel evolution. It feels like a simple concept that should already exist, so I&#x27;m surprised it&#x27;s not more commonly attempted. But you&#x27;re missing a few of the features that I came up with that build on the initial idea. I haven&#x27;t gotten around to implementing it yet, but it&#x27;s on my todo list for this year&#x2F;next year.<p>I was planning to build it with ultralig.ht, but I&#x27;m not 100% sure if it&#x27;s ready for it. But since most of the content I&#x27;m interested in for research is textual&#x2F;reader mode, and the rest can be viewed with yt-dlp, I think it can render them and it seems the lightest weight. Otherwise it&#x27;s webkit or servo that I could think of for this.<p>Good to know there&#x27;s interest in this.
评论 #41739260 未加载
amadeusw8 months ago
This is great, I appreciate the ability to save and restore the &quot;trails&quot;.<p>Similarly to OP and many other like-minded commenters, I&#x27;ve also built an interface for rabbit-holing [0]. This is a 10 year old, purely JS+CSS solution you can open in your browser. It&#x27;s limited to Wikipedia and its UI seems broken after Wikipedia&#x27;s style updates, but nevertheless wanted to share the source code [1] for anyone who&#x27;s interested<p>[0] <a href="https:&#x2F;&#x2F;amadeusw.com&#x2F;WikiDive&#x2F;" rel="nofollow">https:&#x2F;&#x2F;amadeusw.com&#x2F;WikiDive&#x2F;</a> [1] <a href="https:&#x2F;&#x2F;github.com&#x2F;AmadeusW&#x2F;WikiDive">https:&#x2F;&#x2F;github.com&#x2F;AmadeusW&#x2F;WikiDive</a>
popol19918 months ago
We developed a solution in the same space called Skipper (<a href="https:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;skipper-fewer-tabs-more-f&#x2F;cjiinmicahhdcmfpdohhaahgkdiehfga" rel="nofollow">https:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;skipper-fewer-tabs-...</a>)<p>Two features to help with rabbit holing, both automatic:<p>1. Close tabs that are not used for the ongoing topic<p>2. Group the browsing history by topic so that users can go back and review their research journey<p>Here&#x27;s the website: <a href="https:&#x2F;&#x2F;www.skipper.co&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.skipper.co&#x2F;</a>
noisy_boy8 months ago
I raised the feature of side by side panes as something desirable in Firefox and got pushback in replies[0] proclaiming people couldn&#x27;t imagine why anyone would want it &#x2F; that it was solely a domain of the DE. Happy to see that someone figured out that it did make sense.<p>[0]: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;context?id=40786937">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;context?id=40786937</a>
forgotpwd168 months ago
Looks similar to TST extension. Actually not sure what the difference is. Even the outline is available in TST. Based on first screenshot more design-y?
matltc8 months ago
Cool, thanks for sharing.<p>Been using the grouping and pinning feature in chrome for a bit then saving the groups i care about to try to emulate this behavior, but still a long way off from ideal; the one dimension of tabs at the top level means the UI gets crowded quickly.<p>Had the tree-style tabs extension for a bit but didn&#x27;t love its interface and found it to be more trouble than it was worth.
NeroVanbierv8 months ago
While writing my thesis, I made a similar thing as a chrome extension.<p>It kept track of all tab opens &amp; showed it in a node structure.<p>Screenshot: <a href="https:&#x2F;&#x2F;github.com&#x2F;Taborniki&#x2F;node-search&#x2F;blob&#x2F;pre-alfa&#x2F;demo.png">https:&#x2F;&#x2F;github.com&#x2F;Taborniki&#x2F;node-search&#x2F;blob&#x2F;pre-alfa&#x2F;demo....</a>
danbruc8 months ago
Is there a way to get this running without having to install the tool chain to build this? Is this an Electron app? Is Electron Fiddle [1] what I am looking for? Can I have Electron Fiddle in the browser?<p>[1] <a href="https:&#x2F;&#x2F;www.electronjs.org&#x2F;fiddle" rel="nofollow">https:&#x2F;&#x2F;www.electronjs.org&#x2F;fiddle</a>
madrox8 months ago
Lately, I&#x27;ve been thinking about how you might bring notebooks to web browsing...something that would make it easier for an LLM to interact with your browsing and thought process. This was timely because it got me thinking more about how what I&#x27;m thinking of relates to rabbit-holing.
jeffhuys8 months ago
Orion - Safari with support for FF&#x2F;Chrome extensions (ALSO on iOS. For free), and has tree-style tabs if you enable it.<p>My browsing has become so much more enjoyable. Also, since it’s almost the same as Safari, great resource management, great gestures, great performance. Definitely recommended
semo8 months ago
Similarly Sidebery has been immensely useful for my browsing &#x2F; work flows.
sourcepluck8 months ago
I wonder if someone will implement this in Nyxt... it seems appropriate for such a browser.
评论 #41745962 未加载
deepnet8 months ago
This is brilliant. I currently do this in org mode, pasting bookmarks in long indented trees of research.<p>This is that but next level, many thanks for sharing your work.<p>Following rabbit holes, if the trail is preserved, turns my ADHD from inconvenient distraction into a research superpower.
mikojan8 months ago
You can do this in a generalized fashion using a paper WM and hitting shift+click on links.
xrisk8 months ago
Needs a 2021 tag.
atVelocet8 months ago
There was also this approach many years ago which i absolutely adored: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=9724414">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=9724414</a>
评论 #41741080 未加载
dbspin8 months ago
This is exactly how the old OPML browsers used to work back in the web 2.0 era. Always thought it was a neat interface, although I&#x27;d keep content in one pane, scrollable back to previous windows.
Nevermark8 months ago
This is a little like I a features I wish macOS spaces or Vision Pro screen arrangements provided.<p>To be able to group, name, save, browse and retrieve multi-space&#x2F;screen contexts.<p>I would end up with some projects I open and close frequently. And a growing list of started projects, which would be much more likely to continue for being so easy to resume.<p>Not being able to put away and resume contexts (of any kind) is a significant cognitive and productivity impediment.<p>A separate do-undo chain or tree for context edits, in addition to content, would be nice too. I.e. see a context history of what windows I closed, to quickly reopen something.<p>Seeing a lot of this in a browser is inspiring.
solarkraft8 months ago
We can definitely still innovate in the browser space - I quite like the history concept.<p>Firefox‘s history could definitely use a remake, I find it pretty close to useless currently.
mikewarot8 months ago
This is the first time I&#x27;ve seen actual utility in being able to stuff a &quot;web browser&quot; in a pane of a GUI program developed in the language of your choice. The ability to take the metadata of browsing, the links, and especially the knowledge of the connections between clicked URLs, as the basis of a knowledge graph, is the closest I&#x27;ve seen someone come to the Memex[1] in a long time.<p>Add the ability to add notation, ratings, etc... to that knowledge in a structure, and I think you&#x27;ve got a winner.<p>Oh.. and store EVERYTHING required to show the page, or save a view of it that&#x27;s independent of the live internet... that&#x27;s the other key part of the Memex.<p>[1] <a href="https:&#x2F;&#x2F;www.theatlantic.com&#x2F;magazine&#x2F;archive&#x2F;1945&#x2F;07&#x2F;as-we-may-think&#x2F;303881&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.theatlantic.com&#x2F;magazine&#x2F;archive&#x2F;1945&#x2F;07&#x2F;as-we-m...</a>
评论 #41746018 未加载
DaanDL8 months ago
I love this idea, I&#x27;ve been using Arc Browser for a while now and it looks like this would be a very nice addition to that browser.
nihatemreyuksel8 months ago
Love this idea! A browser tailored for wiki-style exploration would be amazing, especially for diving deep into interconnected topics.
emrah8 months ago
Chrome apparently also keeps track of &quot;trails&quot; but i did not find the implementation particularly useful unfortunately
whitmank8 months ago
I can&#x27;t seem to get it to run, electron-webpack not found after npm install. 404 for electron github?
vfclists8 months ago
On Firefox just use TreeStyleTabs and its companion addons, such as Copy This Tree To Clipboard
chankstein388 months ago
I would LOVE this on mobile! It&#x27;s so hard to keep track of mobile tabs. Android would be nice!
boomskats8 months ago
&gt; For example, a good window manager could replace Cartographist almost completely<p>I can see a neat way of doing this with Niri[0] and its recent IPC layout interface, combined with an extension like URL in Title[1] to expose the full window URL to the wm. Someone may need to hold my beer<p>[0]: <a href="https:&#x2F;&#x2F;github.com&#x2F;YaLTeR&#x2F;niri">https:&#x2F;&#x2F;github.com&#x2F;YaLTeR&#x2F;niri</a> [1]: <a href="https:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;url-in-title&#x2F;ignpacbgnbnkaiooknalneoeladjnfgb" rel="nofollow">https:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;url-in-title&#x2F;ignpac...</a>
laurentlassalle8 months ago
How does it compare to horse browser?
评论 #41742023 未加载
G_o_D8 months ago
Isn&#x27;t Chrome Journeys similiar feature that tracks which site you opened from which
smrtinsert8 months ago
I&#x27;ve been wanting something like this for a while now. Very cool idea!
maverick748 months ago
Amazing!!!<p>I want this in my regular browser (you ear me Mozilla &amp;&amp; Servo devs?!)
satisfice8 months ago
I followed the installation instructions and I just get errors.
deepsun8 months ago
Curious why it cannot be an extension to an existing browser.<p>PS: awesome idea!
opem8 months ago
I was just thinking about something like this yesterday XD
anougaret8 months ago
I love this, I think there is the same problem with IDEs
wganger8 months ago
I often wish that slack had this same feature
snshn8 months ago
I use Firefox with Tree Tabs extension for that.
评论 #41739988 未加载
评论 #41739811 未加载
jschrf8 months ago
Reminds of Hofstadter&#x27;s concept of the &quot;Parallel Terraced Scan&quot;. Kind of a mix between breadth-first and depth-first search or unsupervised learning.<p>Nice write-up here: <a href="https:&#x2F;&#x2F;www.menimagerie.com&#x2F;manuscripts&#x2F;2018&#x2F;6&#x2F;9&#x2F;v-douglas-hofstadter-and-parallel-terraced-scan" rel="nofollow">https:&#x2F;&#x2F;www.menimagerie.com&#x2F;manuscripts&#x2F;2018&#x2F;6&#x2F;9&#x2F;v-douglas-h...</a>
评论 #41747784 未加载
qwertox8 months ago
(2021)
DanielLee8888 months ago
Need to check it.
评论 #41817132 未加载
K0IN8 months ago
i need this as a chrome plugin asap :)<p>It looks really cool and clean!
dwayne_dibley8 months ago
Love this idea.
stainablesteel8 months ago
nice design! i like the idea
atx2bos8 months ago
need this for LLM chatbots
baq8 months ago
I mean this is amazing if panes on the left are what the back button history is!