this post was submitted on 07 Dec 2023
52 points (96.4% liked)

Selfhosted

39250 readers
233 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I'd like to sync my markdown notes between devices (laptop and phone), which service is better: Nextcloud or Syncthing? Any other important idea I should know?, like latency times, or maximum number of synced devices, what if I edit the same note from both places without internet and then both get connected to a network... For example, I know Nextcloud let me have a history of the notes.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 9 months ago (1 children)

I made some Termux shortcut scripts in bash for it. Works well, but not for everybody ;)

[–] [email protected] 1 points 9 months ago (1 children)

Never had merge conflicts I take it 😄

[–] [email protected] 1 points 9 months ago* (last edited 9 months ago) (1 children)

My phone script is quite simple, and I set it up on cron, so I don't get out of state very often. I handle if there could be conflicts via script on my Linux pc with stash and pull etc. Automated cron also

[–] [email protected] 1 points 9 months ago (1 children)

Yeah, and for that reason, I opted for syncthing instead of Git for this use case.

[–] [email protected] 1 points 9 months ago* (last edited 9 months ago) (1 children)

I've not needed to deal with a conflict, it's automated.

But what's the latency with syncthing or its instant?

[–] [email protected] 1 points 9 months ago (1 children)

Syncthing uses inotify to watch for changes, so it's pretty much instant

[–] [email protected] 1 points 9 months ago

Might look into it if I get conflicts, thanks!