TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Tell HN: Making Twitter likes backup tool as side quest of browser/second brain

8 点作者 gleb-arestov超过 2 年前

1 comment

gleb-arestov超过 2 年前
I want to build a browser that captures everything I saw on the internet, allows me to search it, run graph algorithms (like PageRank). Improves navigation (by showing trails as tree instead of tabs). Heavily offline focused (Backend only for updates, maybe for analytics).<p>Difference with rewind.ai: linkkraft does not have funding, i&#x27;m solo, no apps &amp; image&#x2F;video&#x2F;audio recognition. Focus on web, trails, research and using web copies, selections&#x2F;highlights as part of your notes &amp; whiteboards. Preserving all possible graphs.<p>My inspirations: <a href="https:&#x2F;&#x2F;pages.gseis.ucla.edu&#x2F;faculty&#x2F;bates&#x2F;berrypicking.html" rel="nofollow">https:&#x2F;&#x2F;pages.gseis.ucla.edu&#x2F;faculty&#x2F;bates&#x2F;berrypicking.html</a>, <a href="https:&#x2F;&#x2F;beepb00p.xyz&#x2F;promnesia.html" rel="nofollow">https:&#x2F;&#x2F;beepb00p.xyz&#x2F;promnesia.html</a>, Jeff Raskin (Global Search, Zoom UI) <a href="https:&#x2F;&#x2F;linkkraft.com&#x2F;notes&#x2F;backstory" rel="nofollow">https:&#x2F;&#x2F;linkkraft.com&#x2F;notes&#x2F;backstory</a><p>I&#x27;ve built a prototype with trails tree &amp; HTML snapshoting. For each my step even inside SPA linkkraft creates HTML snapshot. <a href="https:&#x2F;&#x2F;arestov.github.io&#x2F;linkkraft-notes&#x2F;comparing&#x2F;linkkraft-vs-chrome.mp4" rel="nofollow">https:&#x2F;&#x2F;arestov.github.io&#x2F;linkkraft-notes&#x2F;comparing&#x2F;linkkraf...</a> <a href="https:&#x2F;&#x2F;arestov.github.io&#x2F;linkkraft-notes&#x2F;trails-tree-plus-offline-for-tool-for-thoughts&#x2F;linkkraft-fresh-offline-spa.mp4" rel="nofollow">https:&#x2F;&#x2F;arestov.github.io&#x2F;linkkraft-notes&#x2F;trails-tree-plus-o...</a><p>Across similar software (&quot;too many tabs&quot; solvers, snapshoters) combination of trails tree &amp; snapshots that reinforces is unique in linkkraft.<p>To make snapshot it takes current state of DOM, current state of styles (to capture CSSinJS stuff), take resources like font&#x2F;images from network storage (Chrome Dev Tools protocol) and saves it as HTML on disk.<p>I&#x27;ve been developing created frontend in-memory graph DB &#x2F; state manager for 1) replication 2) incremental sync 3) fast rendering (without VDOM&#x2F;react). Used in <a href="https:&#x2F;&#x2F;seesu.me" rel="nofollow">https:&#x2F;&#x2F;seesu.me</a> &amp; <a href="https:&#x2F;&#x2F;meetsidekick.com" rel="nofollow">https:&#x2F;&#x2F;meetsidekick.com</a>.<p>So, I have in memory db in main process of electron that send chunks to render process with replica. And to LevelDB to persist graph.<p>From user perspective, I also want to have a copy of all my bookmarks (Cause things disappear from internet and things are slow in internet). As special wish: twitter likes&#x2F;bookmarks (because I use intensively for inspiration from other makers and Twitter is especially slow &amp; unavailable for scoped search).<p>There are changes in twitter HQ, that looks reasonable to speedup ability to make backup for twitter likes&#x2F;bookmarks.<p><a href="https:&#x2F;&#x2F;youtu.be&#x2F;yTpysdSM9WQ" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;yTpysdSM9WQ</a><p>I have 3 tech tasks for that: 1. Scan&#x2F;scroll likes pages (actually it would be better to inject code in twitter page to make direct requests to API) 2. Fetch page HTML snapshot. I&#x27;m thinking to not fetch page from start, but instead reuse SPA. Something like push to history API, so without full reload I&#x27;ll get renderer page and comments triggered to load. 3. Speedup resources fetching a) run everything as soon as possible (not when everything is ready) b) use key&#x2F;value ( url+etag) cache for hash. Which is used to dedup images, fonts, styles.<p>For me it&#x27;s not to escape twitter, but to speed up interaction and discover even more things on twitter