+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: Any Chess Players here?

  1. #1
    fguy64's Avatar
    fguy64 is offline x10 Sophmore fguy64 is an unknown quantity at this point
    Join Date
    Apr 2009
    Posts
    218

    Any Chess Players here?

    It's a great game, I've played all my life. If any of you want to talk chess, or maybe play some "postal style" internet chess at gameknot.com, let me know.

    I'm also interested in finding someone who is into chess and Java programming who would like to collaborate on my programming project, cause there is more potential work here than I will ever have time for. The project is at a stage where it would not be necessary to go to a lot of effort to understand my code. Maybe we can learn from each other. Anyways, I'm sure most people here have their own projects to worry about, so I won't hold my breath, but if you are interested, let me know here in the thread or by personal message.
    Last edited by fguy64; 05-29-2009 at 11:11 AM.

  2. #2
    ichwar's Avatar
    ichwar is offline Community Advocate ichwar is an unknown quantity at this point
    Join Date
    Dec 2008
    Location
    NC, USA
    Posts
    1,454

    Re: Any Chess Players here?

    You'd better believe it's a great game! I've been playing since I was 8 and now at 16 I can't find anyone who can beat me (and I know a fair amount of people too)

    But I don't know the first thing about coding in java. Maybe I can still help you out anyways?
    Edit:
    hmmm, I can beat fchess at the "think" and mate in 2 settings, so you're right, it does need a bit of work.
    Last edited by ichwar; 05-29-2009 at 12:32 PM. Reason: Automerged Doublepost

  3. #3
    fguy64's Avatar
    fguy64 is offline x10 Sophmore fguy64 is an unknown quantity at this point
    Join Date
    Apr 2009
    Posts
    218

    Re: Any Chess Players here?

    Quote Originally Posted by ichwar View Post
    You'd better believe it's a great game! I've been playing since I was 8 and now at 16 I can't find anyone who can beat me (and I know a fair amount of people too)

    But I don't know the first thing about coding in java. Maybe I can still help you out anyways?
    cool, well we can play online if you like. I like gameknot.com. It's not realtime and you can move at your convenience. If you like, set up an account and PM me your id, I'll let you know what mine is and we'll play a game.

    As for the project, I can't see how you could contribute without at least some minimal java skills. It wouldn't have to be a lot, I could tell you the best way to get started with java. Everything you need is available for free on the net. You have a bit of download and installation to do to get yourself setup. Let me know if you are still interested. We can probably work something out.

    Do you know any other Object Oriented programming language such as C++ ?

  4. #4
    ichwar's Avatar
    ichwar is offline Community Advocate ichwar is an unknown quantity at this point
    Join Date
    Dec 2008
    Location
    NC, USA
    Posts
    1,454

    Re: Any Chess Players here?

    I know C#.
    But I'd be interested in learning some basic java I guess.
    Last edited by ichwar; 05-29-2009 at 01:05 PM.

  5. #5
    fguy64's Avatar
    fguy64 is offline x10 Sophmore fguy64 is an unknown quantity at this point
    Join Date
    Apr 2009
    Posts
    218

    Re: Any Chess Players here?

    OK C++ will make it easier to learn a little java.

    here is your essential resource for all things java. In particular, look for a link that says getting started. There is information there about how to compile and run java routines. That is essential if you want to get involved in this project.

    http://java.sun.com/docs/books/tutorial/

    you will need the java development kit, it's avaialable here

    http://java.sun.com/javase/downloads/index.jsp

    I uses JDK 6 release 13, so I suggest going with that for now. I do all my coding using Notepad, I don't bother with NetBeans. You can do it either way. If you are not sure, then stick with Notepad, you can always switch to an IDE later if you get serious. You can see it is bundled with NetBeans, there's no problem with downloading and installing it, you don't have to use it all the time.

    ON my website there is a link to a technical overview of the program. Have a look at that, that will give you a basic overview of how things work right now.

    You will need to understand FEN notation and PGN notation. These are strictly chess concepts. here are two links.

    http://en.wikipedia.org/wiki/Forsyth-Edwards_Notation

    http://www.chessclub.com/help/PGN-spec

    OK, as you can see, you will need to spend some time preparing. In the mean time, I will give some thought as to the sorts of things you could do. Take your time. If your eyes are glazing over, or your enthusasm waning, no sweat, I won't mind if you back off from this. just let me know.

    Any questions, ask away. Here is fine, but probably we should switch over to PM.

  6. #6
    ichwar's Avatar
    ichwar is offline Community Advocate ichwar is an unknown quantity at this point
    Join Date
    Dec 2008
    Location
    NC, USA
    Posts
    1,454

    Re: Any Chess Players here?

    Quote Originally Posted by fguy64 View Post
    OK C++ will make it easier to learn a little java.

    here is your essential resource for all things java. In particular, look for a link that says getting started. There is information there about how to compile and run java routines. That is essential if you want to get involved in this project.

    http://java.sun.com/docs/books/tutorial/

    you will need the java development kit, it's avaialable here

    http://java.sun.com/javase/downloads/index.jsp

    I uses JDK 6 release 13, so I suggest going with that for now. I do all my coding using Notepad, I don't bother with NetBeans. You can do it either way. If you are not sure, then stick with Notepad, you can always switch to an IDE later if you get serious. You can see it is bundled with NetBeans, there's no problem with downloading and installing it, you don't have to use it all the time.

    ON my website there is a link to a technical overview of the program. Have a look at that, that will give you a basic overview of how things work right now.

    You will need to understand FEN notation and PGN notation. These are strictly chess concepts. here are two links.

    http://en.wikipedia.org/wiki/Forsyth-Edwards_Notation

    http://www.chessclub.com/help/PGN-spec

    OK, as you can see, you will need to spend some time preparing. In the mean time, I will give some thought as to the sorts of things you could do. Take your time. If your eyes are glazing over, or your enthusasm waning, no sweat, I won't mind if you back off from this. just let me know.

    Any questions, ask away. Here is fine, but probably we should switch over to PM.
    looks fun, I've got a couple of other coding projects so give me a few days to get familiar with java and then I'll let you know.:cool:

  7. #7
    fguy64's Avatar
    fguy64 is offline x10 Sophmore fguy64 is an unknown quantity at this point
    Join Date
    Apr 2009
    Posts
    218

    Re: Any Chess Players here?

    sounds good, looking forward to this.

  8. #8
    ichwar's Avatar
    ichwar is offline Community Advocate ichwar is an unknown quantity at this point
    Join Date
    Dec 2008
    Location
    NC, USA
    Posts
    1,454

    Re: Any Chess Players here?

    ok, first off, I'm having trouble installing the java development kit. I download the .jnlp file but I double click it and nothing happens. I'm assuming you know about what I'm talking about?

  9. #9
    fguy64's Avatar
    fguy64 is offline x10 Sophmore fguy64 is an unknown quantity at this point
    Join Date
    Apr 2009
    Posts
    218

    Re: Any Chess Players here?

    actually, no I don't. I'm a Windows guy, and any jdk I've ever downloaded is an exe installer file. First off, what is your operating system? If it's something other than Windows, then I can't really say much.

    Only one suggestions, make sure your system has been appropriately backed up. Last thing I want is to try deal with a messed up system here. I'm really not interested in deal with tech support issues here.

    anyways, what is your operating system? I can tell you what file to download.

  10. #10
    ichwar's Avatar
    ichwar is offline Community Advocate ichwar is an unknown quantity at this point
    Join Date
    Dec 2008
    Location
    NC, USA
    Posts
    1,454

    Re: Any Chess Players here?

    Quote Originally Posted by fguy64 View Post
    actually, no I don't. I'm a Windows guy, and any jdk I've ever downloaded is an exe installer file. First off, what is your operating system? If it's something other than Windows, then I can't really say much.

    Only one suggestions, make sure your system has been appropriately backed up. Last thing I want is to try deal with a messed up system here. I'm really not interested in deal with tech support issues here.

    anyways, what is your operating system? I can tell you what file to download.
    don't worry about tech support. If I ruin my system, I'll take care of it.;)

    My os is Ubuntu 9.04 64-bit.

+ Reply to Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. My chess application on X10
    By fguy64 in forum Review My Site
    Replies: 13
    Last Post: 05-21-2009, 08:57 AM
  2. Role Players wanted for discussion
    By Any_Key in forum Off Topic
    Replies: 1
    Last Post: 04-09-2009, 05:11 PM
  3. Is Chess a sport?
    By Perfect7 in forum Crossfire
    Replies: 53
    Last Post: 06-12-2008, 04:07 PM
  4. Chess legend Fischer Dies
    By Starshine in forum Off Topic
    Replies: 2
    Last Post: 01-20-2008, 12:19 AM
  5. Guild Wars reaches 1 million players
    By Nathan in forum Gamer's Lounge
    Replies: 3
    Last Post: 09-27-2005, 12:57 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers