Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I commit all my computer science homework assignments to GitHub? [closed]

After reading a community wiki on Quora, I decided it would be good to start experimenting with GitHub. I thought, "What a better way to experiment than with introductory computer science homework?" However this practice opens up my solutions to the web, and I am concerned that other students might plagiarize with it. I have read other questions on StackOverflow about version control and homework.

Thus, a few questions come to mind as I consider this practice:

  1. Does putting homework code on GitHub open it up to be copied?
  2. Are people that plagiarize familiar with GitHub?
  3. Should I be concerned?
  4. Would plagiarism detection software scan GitHub
like image 806
Elliott Avatar asked Nov 14 '13 14:11

Elliott


People also ask

Should I put my homework on GitHub?

No, solutions to homework assignments are not likely to impress potential future employers. Many professors would prefer that you not post solutions to homework assignments to public Github repositories.

Should I add all my projects to GitHub?

Should I put my project on GitHub? Absolutely! The easiest way to get noticed as a new developer is by showing that you're trying and learning in your free time. Hiring managers and recruiters love seeing that someone is active in the tech community and is consistently trying to improve their skill set.

Can I put assignments on GitHub?

Once you create the assignment, students can start work on the assignment using Git and GitHub's features. Students can clone the repository, push commits, manage branches, create and review pull requests, address merge conflicts, and discuss changes with issues.


2 Answers

Does putting homework code on GitHub open it up to be copied?

If you create a public repository, then yes. Private repositories cost money (7$/month for 5 private repositories) though, as pointed out by carols10cents there is a free student version https://github.com/edu

Are people that plagiarize familiar with GitHub?

Open source is all about sharing. That is kind of it's point. Don't store things you want to keep private in a public place.

Should I be concerned?

For general homework no. Again, don't put essays and personal writing in a public repository. That would be similar to putting your essays on a public blog.

Would plagiarism detection software scan GitHub

I don't know. Probably, eventually.

Git can be used without github. To really learn git, you do not need github or bitbucket or any other paid service. GitHub is just a public set of servers to store/share/backup your work on.

Git is great for tracking revisions. If you have ever used Google Docs (Google Drive) and looked at it's history feature, you are probably familiar with how nice it is to be able to revisit changes and old versions of your work. Git formalizes this by allowing you to comment on your commits, branch your work into multiple versions, or just experiment without worrying about overwriting the original work.

Update

I read the Quora post and thought I might add this.

The very best thing that you can do to improve your skills is rent a server of your own from a vendor like Rackspace, Digital Ocean, or Linode to name just a few of the providers. These services can run as little as $5/month though $10-$20 a month is more typical. From there you will have to learn how to configure a Linux machine. You can install a git repository, mail servers, web servers, whatever you want, in a very low risk environment. Make a mistake and you can just reset the server to its virgin state. I recommend installing an Ubuntu distro because of its large community and relative ease of installing new software.

One of the problems with developers is that they often are too dependent on sysadmins for tasks that really should be part of their repertoire.

like image 145
Nathaniel Johnson Avatar answered Oct 15 '22 12:10

Nathaniel Johnson


Does putting homework code on GitHub open it up to be copied?

It depends. If the repository is public, anyone can see it, and fork it. They may even send you pull requests! If the repository is private, on the other hand, it can only be seen by people that you allow. You need a paid subscription to create private repos.

Are people that plagiarize familiar with GitHub?

That's off-topic. But IMO, you should always suppose plagiarizers are familiar with everything.

Should I be concerned?

It's just homework. Why do you care? It's not like that's your doctor thesis or your next patent material, is it?

Would plagiarism detection software scan GitHub

I know there's software that does that with Wikipedia. I wouldn't be surprised if someone made that for Github. But usually such software checks whether you've copied something from well known sites - if you are the author of the original content, you have nothing to worry about. If other people are plagiarizing you, it means you are good at what you're doing.

Last but not least: you might want to read about Creative Commons. Unless you really want to keep your work top secret, it's better to use a CC license than to lose a night's sleep over people copying your work.

like image 28
Geeky Guy Avatar answered Oct 15 '22 12:10

Geeky Guy