Author Topic: Looking for someone who can help me with my Java HW  (Read 1472 times)

0 Members and 1 Guest are viewing this topic.

Offline SSIPAK

  • * Maker
  • Thread Starter
  • Posts: 449
  • ★ Bootlegcaps ★
Looking for someone who can help me with my Java HW
« on: Wed, 14 May 2014, 02:38:28 »
Hey,

I have bunch of hw from introduction to java class that is due this friday. I was wondering if there is someone who can help me out with these and I will send you some gift for helping me out. Message me if you are interested. Thanks.
« Last Edit: Wed, 14 May 2014, 04:11:55 by SSIPAK »

Offline hjkl_over_wasd

  • Posts: 67
Re: Looking for someone who can help me with my Java HW
« Reply #1 on: Wed, 14 May 2014, 03:02:58 »
I don't want your money, but if you want, you can PM me a link to a private gist with the source code and specific questions. Assuming you have a github account. If not, you should get one and learn how to use it over the summer. I also have assignments due to Friday, but I'm in EU, so I'm half a day ahead of you if you're in America. I'll probably have some time to look at it tomorrow, since I have an assignment due in six hours and I've pulled an all-nighter in order to get it done on time.

Offline bueller

  • MX baller
  • * Esteemed Elder
  • Posts: 3769
  • Location: Perth, Australia
  • Church of the Ergo Clear
Re: Looking for someone who can help me with my Java HW
« Reply #2 on: Wed, 14 May 2014, 04:53:52 »
+1 for using git, I started using it recently and while it was daunting at first it's dead easy once you get the hang of it. Had it save my arse the other day too.
It's a good width!  If it's half-width it's too narrow, and full-width is too wide. 

[WTT] bueller's trade thread - CLACKS WANTED

Offline tbc

  • Posts: 2365
Re: Looking for someone who can help me with my Java HW
« Reply #3 on: Wed, 14 May 2014, 04:59:09 »
i think you have to use tfs and svn before you can appreciate how common sense and usable git is.
ALL zombros wanted:  dead or undead or dead-dead.

Offline hjkl_over_wasd

  • Posts: 67
Re: Looking for someone who can help me with my Java HW
« Reply #4 on: Wed, 14 May 2014, 05:17:27 »
i think you have to use tfs and svn before you can appreciate how common sense and usable git is.

I respectfully and completely disagree. I never defiled my mind with svn and I've only used git for version control and use it regularly and as it should: cheap branches all day every day.

Offline bueller

  • MX baller
  • * Esteemed Elder
  • Posts: 3769
  • Location: Perth, Australia
  • Church of the Ergo Clear
Re: Looking for someone who can help me with my Java HW
« Reply #5 on: Wed, 14 May 2014, 05:40:20 »
i think you have to use tfs and svn before you can appreciate how common sense and usable git is.

I respectfully and completely disagree. I never defiled my mind with svn and I've only used git for version control and use it regularly and as it should: cheap branches all day every day.

I think he meant using SVN shows you how easy git is in comparison, I used SVN for a year before I switched and I'd totally agree.
It's a good width!  If it's half-width it's too narrow, and full-width is too wide. 

[WTT] bueller's trade thread - CLACKS WANTED

Offline hjkl_over_wasd

  • Posts: 67
Re: Looking for someone who can help me with my Java HW
« Reply #6 on: Wed, 14 May 2014, 09:24:06 »
Indeed. Pardon me. The all-nighter must have clouded my abilities to read.

Hope that didn't ruin my paper, which I just submitted.

Offline metalliqaz

  • * Maker
  • Posts: 4951
  • Location: the Making Stuff subforum
  • Leopold fanboy
Re: Looking for someone who can help me with my Java HW
« Reply #7 on: Wed, 14 May 2014, 09:32:32 »
As someone who uses SVN every day, I find git to be difficult to fit into my current workflow.

Offline nuclearsandwich

  • Posts: 752
  • Location: Santa Clara Valley, CA
Re: Looking for someone who can help me with my Java HW
« Reply #8 on: Wed, 14 May 2014, 09:34:51 »
i think you have to use tfs and svn before you can appreciate how common sense and usable git is.

I respectfully and completely disagree. I never defiled my mind with svn and I've only used git for version control and use it regularly and as it should: cheap branches all day every day.

I think he meant using SVN shows you how easy git is in comparison, I used SVN for a year before I switched and I'd totally agree.

You don't even need to switch entirely. You can svn clone any repository on GitHub :trolleybus:

Offline phoenix1234

  • Posts: 584
  • Location: Saigon - Vietnam
Re: Looking for someone who can help me with my Java HW
« Reply #9 on: Wed, 14 May 2014, 10:27:55 »
I think SVN and Git were built for different processes and software development teams. Generally, SVN is centralized control and Git is de-centralized. Indeed, we can force them to work on the other way around but it is not supposed to be.  If you have a team working on the same repository, then SVN is a good choice, but if you are working alone or your team members are following different repositories, then Git is a good choice. However, if you are working alone and you already had a reliable SVN server, then you can see that SVN is very good too.

The OP is asking how to solve the Java HW. So I wish he can find someone to help him with that. Anyway, Java is widely used and probably he can seek for more help on stackoverflow anytime.
« Last Edit: Wed, 14 May 2014, 10:30:49 by phoenix1234 »
I like linear switches

Offline hjkl_over_wasd

  • Posts: 67
Re: Looking for someone who can help me with my Java HW
« Reply #10 on: Wed, 14 May 2014, 11:16:53 »
I don't see a single benefit of having source control centralized.

Why on earth is SVN a good thing if you're working as a team? Git has really great support for branches and doesn't cause a cluster**** every time you want to merge branches like SVN is known for. That will allow people to work on their own branches and merge them together with great ease. Have you ever pulled a git repository? Those DAG structures are fast as hell! You can even commit without being connected to the SVN server, or even the Internet for that matter.

If you have a linux box available and ssh keys setup a git repository is done in fraction of a second:
Code: [Select]
git init --bare
SVN is only good if all you know is SVN, but even then you're at a loss because you have to adopt to the git way of doing things: branch ALL the things! Eventually, you'll get that job where people aren't working on a legacy code base.

SVN might be a good choice if you're forced to use it, but for that you still have git-svn.