Online and shared programming

Asked

Viewed 1,840 times

0

I wonder if someone can tell me (if there is) some online C++ programming platform so that two or more people can program in real time and share this program between them? I have a working group and we want to program and edit at the same time, each developing a part of the code, online...is this possible? Can you tell me a platform?

  • Visual Studio 2019 has a feature called Live Share that apparently does this, but I didn’t get to use it

  • 2

    https://repl.it/languages/cpp, in the menu on the left there is the option "Multiplayer"

  • 1

    Tinh o http://c9.io that was very interesting and with Multiuser edition, but after Amazon bought it became extremely bureaucratic to access the interface.

2 answers

2

Repl.it gives you an Instant IDE to Learn, build, collaborate, and host all in one place.

Repl.it is an online programming environment, has a Debugger and many other tools that help you program.

It is possible to use several languages, including C++, and it is possible for two or more people to program in the same project in real time, sharing this program with each other and chatting in a chat: repl.it - multiplayer.

Video that shows the features of multiplayer repl.it.

Create an account on repl it. is free, however, in the free version, all programs are public. For programs developed to be private, and only made public if the user so wishes, it is necessary to pay for the "Premium" version. Anyway, repl it. is a very powerful tool, even without the "Premium version".

The IDE of repl it. has the following presentation:

IDE do repl.it para C++

-1

what we usually use is the project versioning.

This being a tool that manages the whole life of a given project, keeping the history, or version, of each project document. Remembering that document can be anything, an image, a code, a pdf, etc.

With this we have several tools with the project, for example, restore deleted files at any stage of the project, decide what code to use in case two programmers modify the same file.

Today we have a widely used and completely free Git.

"GIT is a widely used versioning tool for projects with a large number of contributors, not to mention the platform on which it runs GITHUB, an online service that provides a free GIT server for opensource projects. So this will be the tool used in the project."

If you don’t already know, patch take a look at this article from the Git site itself https://github.com/MuvucaGames/Tutoriais/wiki/%5BWIP%5D-Tutorial-complete-over-version-with-GIT.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.