Rent A Coder Alert: If you are receiving an error that says: 'page not found', or 'system could not find the file specified' on this site, it is caused by a bug in your browser. Please click here to fix it. (To disable this alert, click here).

    How Software Gets Done  
The RAC business office will be closed on Monday May 26, 2003 in observance of the United States holiday of Memorial Day. Please note that we will still approve bid requests and do phone verifications but they will only be done two times during the day, once in the morning and once in the late afternoon. We wish all celebrating Memorial Day a happy one. (current site time 5/24/2003 9:31:10 PM EDT)


(No Login on Secured Page)

Custom Software Buyers
Request new bids
Search Coders
My Account
 
My Buyer 'To Do' List
 
My bid requests
  My escrow account
 
My General Info
Verification
 
Help for Buyers
Articles for Buyers
FAQ for Buyers
Latest News
 

Custom Software Coders

Newest open work
Browse all work
Search all work
My Account
 
My Coder 'To Do' List
 
My bids
 
My General Info
  My credit account
 
Help for Coders
Articles for Coders
FAQ for Coders
Latest News
 

Affiliates

My account
 
My pipeline
 
My credit account
 
Help for Affiliates
Latest News
 
Newest Open Bid Requests.
XP Icons Needed
By CorporateWeb on May 24
Max Bid: $20


Email Extraction from Names
By franjavier on May 24
Max Bid: Open to fair suggestions


Company Logo
By Ghwerig on May 24
Max Bid: $50

(Screen Shot)

iPAQ printing facility (light)
By dev. printing for iPAQ on May 24
Max Bid: $220


broadband animated demo
By rik2 on May 24
Max Bid: $10


4D Connectivity library -Open4D
By paws on May 24
Max Bid: $1,000


Click here to put this ticker on your own site

Open Work Categories.
Database 
(153 open)
   Access 
(59 open)
   MySQL 
(75 open)
   Oracle 
(8 open)
   SQL Server 
(59 open)
   Other DB 
(22 open)
Documentation / Tech Writing 
(19 open)
Data Entry 
(20 open)
Game Development 
(18 open)
Graphics / Art / Music 
(62 open)
   Graphics 
(67 open)
     3d Animation 
(21 open)
   Art (Misc.) 
(22 open)
   Music 
(17 open)
   3d Modeling 
(16 open)
Language Specific 
(114 open)
   ASP 
(63 open)
   ASP .NET 
(16 open)
   C# 
(32 open)
   C++ / C 
(104 open)
   Carbon (Mac OS) 
(3 open)
   Cocoa / Obj-C 
(1 open)
   Cold Fusion 
(8 open)
   Delphi 
(35 open)
   Java 
(56 open)
   JSP 
(4 open)
   Perl 
(38 open)
   PHP 
(87 open)
   XML/XSL 
(23 open)
   Visual Basic 
(136 open)
   Visual Basic .Net 
(58 open)
   Other 
(52 open)
Misc 
(36 open)
   CAD 
(5 open)
MultiMedia 
(41 open)
Network 
(38 open)
   Network Design 
(10 open)
   Network Implementation 
(11 open)
Platforms 
(69 open)
   Windows 
(149 open)
     MS Exchange 
(3 open)
     MS Office 
(14 open)
     Other 
(14 open)
   Darwin 
(3 open)
   Internet Browser 
(41 open)
   Linux 
(54 open)
   UNIX 
(30 open)
   Hand Held/PDA Programming 
(12 open)
Requirements 
(8 open)
Security 
(32 open)
Testing / Quality Assurance 
(15 open)
Web 
(169 open)
   Page Design 
(91 open)
   Flash 
(63 open)
   Web Services 
(77 open)
   Web (Other) 
(94 open)
Training 
(12 open)
   Computer Based 
(14 open)
 
Other
 
Other Sites

Download the free Rent A Coder IE toolbar!
 
Show Bid Request

ibm check digit scheme
Bid Request Id: 5813
Bookmark in my 'To Do' list
Posted by: masm (4 ratings)
(Software buyer rating 10)
Non-action Ratio: Above Average - 30.00%
Posted: Dec 1, 2001
6:56:44 AM EDT
Bidding Closes: Dec 15, 2001
6:57:18 AM EDT
Viewed (by coders): 496 times
Phase:
100% of work completed and accepted. Coder has been paid.
Max Accepted Bid: Bidding is closed
Project Type: Personal Project / Homework Help
Bidding Type: Open Auction
Categories: Web, Language Specific, Java, Other
Enter chat room for this bid request
(0 active users at May 24, 2003 9:31:10 PM EDT)

Description:

I need you to write a program (in JavaScript preferably), but I will accept Java applet format if you don't know JavaScript. i'd probably pay a little more if you could figure out how to do it with JavaScript. I already finished 6 of my check digit programs using JavaScript. But this ibm check digit scheme requires that i get the length of numbers entered to determine whether the length of numbers is even or odd and then perform a different equation of permutations depending on whether its even or odd.

a more detailed explanation is shown below.

THE IBM Scheme

The identification number a1, a2, a3, .......,ai, ......., a n-1, a n is composed entirely of digits and has a variable length n. The check digit position is n. Legal numbers satisfy the formula.

(if n is even)
P[a1]+a2+P[a3]+a4+P[a5]+...+P[an-1]+an = 0 mod 10 -means divisible by ten and has a remainder of 0.

(if n is odd)
a1+P[a2]+a3+P[a4]+a5+......+P[an-1]+an=0 mod 10

Here P is the permutation array index 0 1 2 3 4 5 6 7 8 9
P 0 2 4 6 8 1 3 5 7 9

Example: n=8
01231786 is a legal number since
P[0]+1+P[2]+3+P[1]+7+P[8]+6=
0+1+4+3+2+7+7+6=
30 = 0 mod 10 ----this means 30 divided by 10 =3 therefore remainder is 0.

n=9
200209435 is legal since
2+P[0]+0+P[2]+0+P[9]+4+P[3]+5=
2+0+0+4+0+9+4+6+5=30 = 0 mod 10

this method catches all single digit errors and almost all transposition errors.

The project is to write two separate programs. One for checking the digit entered and validating it when the user clicks the check button and returning a message like: "The number entered has been validated by the ibm scheme." or "The number entered is not a valid entry, please check your number for errors and re-enter" when the user clicks check.

The second program is a completion program which will have the user enter in an incomplete number(missing one digit), and hit the complete button and the program will complete the number entered by appending the last digit that makes the number entered a valid entry.

let me know if the details of this project are clear and whether you can program it in either JavaScript or Java Applet. Please provide price quote immediately. I need this project done fast. in an hour ideally. Thanks.



Deliverables:
Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. Complete copyrights to all work purchased.


Special Conditions / Other:
must be completed quickly and code must be thoroughly commented(every single line). If you're not an experienced programmer you need not apply. If your rating is less than a 10, you need not apply. not even 9.9. unrated programmers, unless you can show examples of your previous work, you need not apply. must provide estimate of price and how quickly you can program it with your bid comment.


Remember that contacting the other party outside of the site (by email, phone, etc.) on all business projects < $500 (before the buyer's money is escrowed) is a violation of both the software buyer and seller agreements. We monitor all site activity for such violations and can instantly expel transgressers on the spot, so we thank you in advance for your cooperation. If you notice a violation please help out the site and report it. Thanks for your help.
 
Bidding/Comments:
All monetary amounts on the site are in United States dollars.
Rent a Coder is a closed auction, so coders can only see their own bids and comments. Buyers can view every posting made on their bid requests.

See all rejected bids (and all comments)
Name   Bid Amount 
 
Date   Coder Rating  
This bid was accepted by the buyer!
Coder
(23 ratings)
in Lahore, Punjab
Pakistan
Bid id: 62,701
 
$40 (USD) Dec 1, 2001
8:16:18 AM EDT
 9.78
(Excellent)
   
I can do this for you in an hour (or two at the maximum)
I have 2+ years of experience in JavaScript, I dont have any example of my professional work with me right now but I assure you that I can do it, the rest is upto you

Regards
Coder
 
 
 
 
  See 4 private reply(ies)
to/from Coder.
 

Coder
(23 ratings)
in Lahore, Punjab
Pakistan
Bid id: 62,705
 
N/A Dec 1, 2001
8:40:14 AM EDT
 9.78
(Excellent)
   
I might not have a rating of 10 but I have go 3 10s versus ur 2 10s and with Coder being generous in rating than buyers, you have got to consider me!
 




Quick Search
 

 Advanced Search
Newest Open Work
Latest News

 
Credentials


 

 
Rent A Coder upholds the rigorous business practices required to be both a BBB member and Square Trade vendor.
  • All customer issues addressed within 2 days
  • Openly disclosed pricing and return policies
  • Participation in mediation at buyer request
  • Superior selling track record
This site is verified through its parent company, Exhedra Solutions, Inc.
 

Rent A Coder Top Coders.


Securenext
Rated a 9.98 on 99 jobs 
Anuj Gakhar
Rated a 9.98 on 92 jobs 
Codman
Rated a 9.97 on 145 jobs 
Buddies
Rated a 9.82 on 76 jobs 
Andrei Remenchuk
Rated a 10 on 12 jobs 
Michael Sharp
Rated a 9.98 on 179 jobs 
RNA
Rated a 9.92 on 37 jobs 
markesh
Rated a 10 on 22 jobs 
teleCODERS
Rated a 9.93 on 67 jobs 
hernest
Rated a 10 on 109 jobs 

See all top coders...

(What makes a top coder?)

Top Exam Scorers
 
Other
Rent A Coder is PayPal verified through its parent company, Exhedra Solutions, Inc.

Created in partnership with:

 


Affiliate Sites



Latest News | About Us | Kudos | Feedback/Contact    Affiliates | Advertise    Privacy | Legal

Copyright © 2001, Exhedra Solutions, Inc. All rights reserved.
By using this site you agree to its Terms and Conditions.
"Rent A Coder" (tm), "Safe Project Escrow" (tm) and "How Software Gets Done" (tm)
are trademarks of Exhedra Solutions, Inc.