Remix.run Logo
politelemon 5 days ago

Given that the aim is to still visit the URL, this appears to be browser bookmarks with extra steps. I am not seeing an advantage to the external storage mechanism and the overhead it brings.

Browsers have been doing an excellent job of managing bookmarks, you can tag and search for them from the address bar itself which is very convenient.

Wololooo 5 days ago | parent | next [-]

Well, actually I could see a use for this in specific context and use cases, for instance if you happen to have different dev environments you're able to just move from machine to machine while keeping all the bookmarks in the repository.

If you organise them you can even reference them from the codebase, or the documentation to avoid clutter. The format is simple and dumb enough so that a simple bookmark.txt can be converted into a dictionary, array that can be used in the program if some URLs are supposed to be used there.

It's not revolutionary by any means, but I have to confess that it didn't occur to me that's a great per repo documentation reference tool or per folder.

adastra22 5 days ago | parent | next [-]

You don’t have bookmark sync in your browser?

teiferer 5 days ago | parent | next [-]

Is there a reliable standard to do this across browser vendors and versions and not have to rely on a proprietary cloud implementation on somebody's server?

adithyassekhar 5 days ago | parent | next [-]

I think bookmarks.html is pretty standard.

teiferer 5 days ago | parent [-]

I was talking about a standard to connect to a (vendor-agnostic) bookmark sync server.

5 days ago | parent | prev [-]
[deleted]
Wololooo 5 days ago | parent | prev [-]

Sure, but what tells you that I want to log into those work machines with my personal account?

_kidlike 5 days ago | parent | prev [-]

we do something similar. IntelliJ (ultimate) has a text-based http client included. Like postman but you can commit .http files to the repo. Then this client has variables which can come from a json file. So basically all URLs that our software uses, are in that file. Eventually this led to the json file being used by scripts too.

kevinmgranger 5 days ago | parent | prev | next [-]

I've often wished I could find back-references and search my bookmarks as if they were part of my Obsidian database. This would help with that.

nvllsvm 5 days ago | parent [-]

I keep bookmarks as a Markdown file so I can sync it using Syncthing. I use either Obsidian or KRunner (desktop-only, similar to mac's Spotlight) to open bookmarks. It's been working well enough for me.

The KRunner plugin I use doesn't have a comprehensive Markdown parser, but it works great with the format I've been using. https://github.com/andrewrabert/krunner-markdown-bookmarks Ex:

  # Bookmarks
  ## Code
  - [GitHub](https://github.com)
  - [GitLab - Arch Linux](https://gitlab.archlinux.org)
  ## Social
  - [Hacker News](https://news.ycombinator.com)
  - [Reddit](https://www.reddit.com)
It would be cool to have an Obsidian plugin which retrieved favicons for the links.
newlisp 5 days ago | parent | prev [-]

chrome doesn't have tags for bookmarks though.