Yeeeears ago (around 2011/2012) I've built a simple bookmarking app called Miitla (MInd IT LAter), you can still find references to it[1]. I was focused on providing a simple bookmarking experience with tags and such. Unfortunately, I was not motivated enough to keep updating the project and in the end, I stopped. I got a few thousand users, but at the time my day job was generating nice income and I wasn't thinking about monetizing Miitla.<p>To this day, I regret that I did not pursue it and transformed into something bigger.<p>Congrats on the launch, what catches my attention is the simplicity. Keep it like this for long enough and you will get many users.<p>[1]<a href="http://ratemystartup.com/save-links-with-one-click-miitla-com/#" rel="nofollow">http://ratemystartup.com/save-links-with-one-click-miitla-co...</a>
Two thoughts:<p>- I like the no-nonsense landing page, but what I'd like <i>more</i> is to be able to see what the product actually looks like without having to sign up. At least screenshots, but a demo would be nice.<p>- I'm looking to migrate away from Pinboard, but I like how you can see all of a user's bookmarks (e.g: <a href="https://pinboard.in/u:justusthane" rel="nofollow">https://pinboard.in/u:justusthane</a>) unless they mark them private. I get that the point of Webtag is it's private by default, but it would also be cool if this was an option.
I'm curious, where and how is the information stored as part of the service.
Would be nice if you can share the deployment strategy that is being used as it suggests the framework for long term support.<p>Thanks and nice work
I love the homepage, simple and clean! Any screenshots of how it looks for logged users?<p>I noticed it uses MongoDB. That seems like an overkill to me, have you considered SQLite?<p>if you are open to taking feature requests:<p>- ability to add random notes<p>- any submitted link should be captured in archive / wayback machine<p>- (complicated) search within the submitted links content
I have just built a bookmark service dedicated for Hacker News, which use you own Notion pages as database.<p><a href="https://hn.toonmaterial.com" rel="nofollow">https://hn.toonmaterial.com</a>
Nice, looks like you're off to a great start.<p>Here are some features I love about Pinboard.in that you could consider adding to Webtag as it grows:<p>- iOS/Android share extension, so I can easily bookmark anything from my mobile device. This is crucial for me as the friction is reduced enough that I will actually bookmark things and helps me keep everything in one place.<p>- Auto-complete tags, boy is this handy.<p>- Use AI to guess tags that I can easily add with a click. See this browser extension for an example: <a href="https://chromewebstore.google.com/detail/pinboard-plus/mphdppdgoagghpmmhodmfajjlloijnbd" rel="nofollow">https://chromewebstore.google.com/detail/pinboard-plus/mphdp...</a><p>- A description field that will auto-populate with my highlighted text or default to the site's metadata description. This helps a lot for finding things again without having to stuff a lot of text in an unwieldy title. In the search, I can vaguely describe what I'm looking for and often find it again.<p>- Semantic search. Pinboard doesn't have this but it could become the holy grail of bookmarking services by adding it. So often I have moments where I recall something I read years ago, but cannot remember the exact wording or how to find it again in a verbatim search function.<p>- Archival of bookmarks. Even merely automatically submitting the page to an archival site would suffice. The bookmark app I wrote uses a headless browser to save an MHTML file plus yt-dlp to fetch media, but it doesn't have the above features so I don't use it, ha.<p>- Server-side rendering. The little loading animation is just enough to make the site feel slow and almost defeats your goal of a dead-simple UI. Edit: Also I am seeing 600-700ms response times on the bookmarks endpoint.<p>For your homepage, I would recommend adjusting the wording on "Plain-text-based bookmarking. No fancy images or graphics." Coming from Pinboard, I was unsure what this meant exactly. At first I wondered if the service archived only the text of bookmarked pages like a "reader mode" feature, especially with the "no limits on storage" note. Also it's not literally plain-text in the typical sense (e.g. .txt files or plain-text accounting). It's just a clean UI. Maybe say "Simple text-only UI" or similar.<p>On the logged-in menu, I would change "Home" to "My Bookmarks" or similar.<p>It might be helpful to communicate to prospective users how you plan to fund the project long-term. When selecting a bookmarking service, reliability and longevity are going to be top factors. Free forever, no business plan, etc do not inspire that kind of confidence.<p>Overall, it's a great start. I wish you luck!
For a long time I wanted to figure out a way to organize my "bookmarks" that I have scattered all over the place. I have many many favorited posts on HN, I used Reddit's "save" feature, I add videos to "watch later" or some other playlist in Youtube, etc etc. I thought maybe I could one day unify all this into one place where I can tag them so I know why I bookmarked them (I have definitely sifted through pages of my HN favorites trying to find something). At this point though, I have too much to go through that the task seems daunting. But now that we have AI, I have shifted my mindset to wanting to just feed everything to AI and just have a chat interface where I can ask it for what I want. I feel like that is the future of organization (at least for me it is). Ideally it would be something self-hosted
If you ever used w3m, it uses a local bookmark file. Something like this:<p><pre><code> $ cat ~/.w3m/bookmark.html
<html><head><title>Bookmarks</title></head>
<body>
<h1>Bookmarks</h1>
<h2>Searches</h2>
<ul>
<li><a href="https://www.google.com/">Google</a>
<!--End of section (do not delete this comment)-->
</ul>
<h2>Time Sink</h2>
<ul>
<li><a href="https://news.ycombinator.com/">Hacker News</a>
<!--End of section (do not delete this comment)-->
</ul>
</body>
</html></code></pre>
It's hard to understand from the description what this even is. Does it save your bookmarks in like a <ul> element? Is it clickable? What does it look like?
Really cool! I like that bookmarking seems to be making a comeback. I really like the low-tech approach. It would be cool if there was a social component to it as well.<p>I actually worked on a similar project centered around social bookmarking; <a href="https://huntergather.website/" rel="nofollow">https://huntergather.website/</a>.
I recently came up with a new way to bookmark with Logseq and Raindrop that I like a lot -- <a href="https://reticulated.net/posts/a-better-bookmark-experience-with-raindrop.io-and-logseq/" rel="nofollow">https://reticulated.net/posts/a-better-bookmark-experience-w...</a>
I currently use Firefox bookmarks, synced through my Mozilla account. What would be the advantages for me if I were to use Webtag?<p>Related: does anyone know if there's any limit to synced bookmarks/history in Firefox?
I wrote bookmark manager in Django.<p><a href="https://github.com/rumca-js/Django-link-archive">https://github.com/rumca-js/Django-link-archive</a><p>You can self host it.<p>You can add RSS sources and auto import new links regularly.<p>It may not be stare of the art, but gets the job done.<p>Demo below, but may not be working when you look at it. It runs on raspberry pi.<p><a href="https://renegat0x0.ddns.net/apps/catalog/entry/11503/" rel="nofollow">https://renegat0x0.ddns.net/apps/catalog/entry/11503/</a>
Hey folks, another option that I've settled on (after messing with shaarli, shiori and a few others) is Buku.<p>Usually I really like plain text instead of dbs, but the killer here for me, I realize, is that I'm not tied to any one method of input OR output. Mainly, I do adding through a bookmarklet, and retrieval through "bukuserver," a self-hosted web thing. But also, I have the option of the command line (for bulk adding) as well as browser addons and other things, and (I use Syncthing) it doesn't matter "where" the db is, either on my machine or hosted on a vps.<p><a href="https://github.com/jarun/buku">https://github.com/jarun/buku</a>
I would like something like this but self-hosted. I have a collection of .html bookmark files from over the years and would love to consolidate them all into one place without having to sync them to Google/Microsoft/3rd party.
I've also created an open-source plain-text bookmarking tool, Static Marks: <a href="https://darekkay.com/static-marks/" rel="nofollow">https://darekkay.com/static-marks/</a><p>The bookmarks are stored in one or more YAML files, and static-marks generates a single web page on build.