DEV Community

Discussion on: Secret dev tools for every code newbie

Collapse
 
pinotattari profile image
Riccardo Bernardini

Glitch allows you to code collaboratively in realtime, much like Google Docs.

Urgh! 😄 Honestly, I never liked that kind of collaboration: N hands messing with the same object at the same time. I used few times with Google Docs (because others decided it was a nice option), but I never liked it.

For shared document editing I, honestly, prefer the old fashioned solution: one single editor has write privileges on the document and asks for inputs to the others. If you use the shared approach then you need a deep rewriting phase afterward since you need to clean all the "jumps" between parts written by different people. Integrating inputs received from others is much faster and easier.
If the document is very large (e.g. a book with chapter), assign a "block" (e.g. a chapter) to its own editor.

Collapse
 
jasonleowsg profile image
Jason Leow ~ plugins.carrd.co

I think you misunderstood. I made reference to Google Docs as an analogy to Glitch, not direct comparison. Glitch is actually for code editing, not writing a book.

Collapse
 
weldingtorchhh profile image
Welding-Torch • Edited

Interesting, so you prefer "asynchronous" editing.

Makes sense.