Remix.run Logo
Wololooo 5 days ago

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.