|
|
|
#1 (permalink) | |||||||||||||
|
New to Overclock.net
|
Anyone knows and good (and I really mean it) in JAVA? I need a bit of the help. I have the code, and I just need to understand the programming cycle and all mambo-jumbo.
If required, I am ready to pay for the service ![]()
__________________
Man is born crying. When he's cried enough, he dies
|
|||||||||||||
|
|
|
|
|
#2 (permalink) | ||||||||||||
|
PC Gamer
|
how involved is it. how many lines of code?
__________________
--Saint Louis Overclockers-- CS:S PLAYER STEAM: weezymagic If you think rap sucks or isn't "real music", quit being pretentious and go sample something that isn't on the radio:
De La Soul, Lupe Fiasco, Common, Talib Kweli, Mos Def, Brand Nubian, Canibus, A Tribe Called Quest, The Roots, Gang Starr, Digital Underground, Kanye West, Immortal Technique, etc. Better yet, try to make a 4 minute spoken word poem read to a beat that doesn't suck or sound corny if you think hip hop has no talent.
|
||||||||||||
|
|
|
|
|
#3 (permalink) | |||||||||||||
|
New to Overclock.net
|
It is a client server artiecture to break RSA number via factorization method. Here is the short description of it including the classes
http://www.muamshai.com/project/Shortdescription.doc
__________________
Man is born crying. When he's cried enough, he dies
|
|||||||||||||
|
|
|
|
|
#4 (permalink) | |||||||||||
|
PC Gamer
|
Meh... me only know html + css :/
spam :P
__________________
Upgrades Q6600 quad core 8800GTX x-fi soundcard
|
|||||||||||
|
|
|
|
|
#5 (permalink) | ||||||||||||
|
110100001101001111000
|
1) Are you trying to figure out the math or the coding?
2) Do you have to write the code based on that API description, or are you just trying to figure out how to use those existing methods to make your own program? 3) What is this for?
__________________
|
||||||||||||
|
|
|
|
#6 (permalink) | |||||||||||||
|
New to Overclock.net
|
This seems more of a logic problem then a problem with the code itself. What can't you figure out?
__________________
12136 -3DMark06 http://service.futuremark.com/orb/re...0&UID=13752166 ![]() Crucial Ballistix Club ![]() And you know what? Macs are too hip. Oh, look at me! I do graphic design! I wear women's jeans and hang out in coffee shops! I'm a DJ! Well good for you. My computer is not a fashion statement. It's a computer.
|
|||||||||||||
|
|
|
|
|
#7 (permalink) | |||||||||||||
|
Apple Doesn't Love You
|
I'll help you with the java stuff, the algorithms are up to you though
|
|||||||||||||
|
|
|
|
#8 (permalink) | ||||||||||||||
|
New to Overclock.net
|
Quote:
You have to be able to problem solve in order to be a good coder . The lack of experience with the syntax itself is what we're here for.
__________________
12136 -3DMark06 http://service.futuremark.com/orb/re...0&UID=13752166 ![]() Crucial Ballistix Club ![]() And you know what? Macs are too hip. Oh, look at me! I do graphic design! I wear women's jeans and hang out in coffee shops! I'm a DJ! Well good for you. My computer is not a fashion statement. It's a computer.
|
||||||||||||||
|
|
|
|
|
#9 (permalink) | |||||||||||||||
|
New to Overclock.net
|
Quote:
2) I have the code, I just need to understand what's going on, and how to compile it. 3) Forced to do an assignment on Java, and this language I won't be using it as I do pretty much everything in PHP. Quote:
![]() DESCRIPTION: ------------- When you enter a modulus (which is a multiple of two prime numbers say 17*19 = 323 <= modulus) then it converts that input into string. Then we calculate the number of bits. That result is divided into two halves, and then we check how many clients are connected, and dispatches the job to them. The server waits until any of its clients finds the result, the client sends the result to the server and then server terminates all of its clients and find those two prime numbers and then prints it on the screen. The server also prints the starting and ending time of the task. If one client is disconnected then the server sends unfinished job to the available client (fault tolerance). Client sends their status after every 2^16 bit calculation. This is in the word document. Proceed to the java stuff. RSA theory is not important CLASSES: ---------------- As far as I checked following classes do the following job: 1. Divider.java divides the input modulus (variable numerator of string type). I don't know how BigInteger manipulation works. Say if variable numerator = 33 then what will be the resultant number of bits and what does integer.pow((count/2)+1)).toString(); line does. I have no idea how it interacts with server and client 2. Ranges.java: If I am correct, it divides ranges among clients. How it does, I have no idea. 3. Calculator.java: I don't know what it does 4. WrongOutputException.java...I don't know what it does but it does something 5. Client folder has client program modules. I don't know what they do. I need to know what these classes are doing 6. Components folder got something. I don't know what is inside I need to know what these classes are doing 7. Server part got server modules. What they do? Only God knows.....I need to know what these classes are doing The executables in the folders are not important I assume. They are probably garbage but I am still keeping them in .rar file QUESTIONS: 1. The question that was asked by my superior: "What I would be interested too is how you subdivide and distribute the tasks to the different clients, and how you plan to recover partially completed tasks from unavailable clients. Do you have any thought about this already? 2. Also, when you will start the program then you will see START RANGE and END RANGE in server application. How these number come? How PROCESSED number come? 3. I would like to know how to run and compile those .java files. Do I need Borland JBuilder 2007? Is any modification to interface needed? FILES: 1. Source Files (http://muamshai.com/project/source.rar) 2. Short Description (http://muamshai.com/project/Shortdescription.doc) 3. Compiled Client (http://muamshai.com/project/Client.EXE) and Server (http://muamshai.com/project/server.EXE) executables 4. Setup video: Here is the setup video (hxxp://www.muamshai.com/project/Video0.wmv) replace hxxp with http so that you can download the video file. This site starts to play wmv videos on the browser The server module needs to be started first... Hope that this won't disturb your daily routines, and if you think that this is way beyond "a bit of help" then let me know ![]()
__________________
Man is born crying. When he's cried enough, he dies
Last edited by Oombongo : 06-11-08 at 01:54 AM. |
|||||||||||||||
|
|
|
|
|
#10 (permalink) | ||||||||||||
|
Intel Overclocker
|
You can compile .java source with the Java JDK using javac.exe.
__________________A popular IDE is NetBeans (which comes bundled with the JDK if you download it from Sun). However if you know what IDE whoever wrote your sample used you might want to use that instead.
Last edited by Ledward : 06-16-08 at 07:55 AM. Reason: fixed spelling |
||||||||||||
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
|
|