Archive

Posts Tagged ‘method’

Paypal Payment Method

February 1st, 2012 Comments off

Dear Freelancer,
I want Paypal Payment method on my Site
http://platinum-exchanger.info/

It is quite simple job which need to complete within 1 hour
I want to hire as soon as possible…

Stringprog.cpp

January 26th, 2012 Comments off

The file must be called stringProg.cpp
Main Method
1. Declare a string called myString.
2. Use Call-by-reference pass your string to a method called inputData(); (Hint: uses the & )
3. Use Call-by-value and pass your string to a method called outputData(); (Hint: does not use the & )
inputData Method (Receives string)
1. Get input using cin >> into the string variable you received into this method. (I will be entering my full name in the format of: Last, First Middle.
2. Using the …

Fx Winning Method Pro

January 19th, 2012 Comments off

FOREX WINNING METHOD PRO
Execution Rules.
The trading method works as follows:
1. The system work with daily pivot, Resistant, and Supports.
2. Sell Order Signal
From the daily pivot line the EA calculates 20 pips down, after the 20pips, the 21st pips bellow the pivot will start the selling signal as indicated on the attached picture.
3. Buy Order Signal
From the daily pivot line the EA calculates 20 pips up, after the 20pips, the 21st pips above the pivot will start the buy signal as in…

Categories: Programming Tags: , , , , , ,

Shopping Cart Modification Needed

November 15th, 2011 Comments off

We currently us xCart as our shopping cart, and need help in making a modification.
On the “Shipping and Payment” page, you will find three items. 1, delivery method, 2 is a pull down menu giving the customer a couple of different ‘Priority Options’ to select from, 3 is payment method.

The item we need modified is the second item, the pull-down “priority option” method.
We want to change the pull down menu to radio buttons, to have the same feel as the other two items on this page (deliver…

Fix Payment Method Adult Script

November 2nd, 2011 Comments off

*adult content*

i have a adult webcam site and i need the payment method fix on it for credit cards

and get cc bill working for credit cards and for checking accounts and over seas billing for credit cards

and i also want paypal hid from the people

DO NOT DELETE PAYPAL

if you still want this job send me a message here ok

thanks ken

it is set up for credit cards and paypal both

i dont want the paypal to show up on the page

i do not want it delted from the site

i want it to stay in the site

just not going to use it right now

http://xxchatgirls.com/index_ie.php

this is a link to the website

i want this done asap

i want some one that has done this kind of job before

this should be a very easy job about 20 to 30 min.

Tweetattacks Software Login Method

October 29th, 2011 Comments off

There is a program called tweetattacks

see here

http://tweetattacks.com/ (you can download the “lite version for free and test”)

that DOES NOT USE API

it logs in by actually visiting the page …inputting the login details into the page and performing the neccessary function you want…by actually using the browser

its brilliant…so brilliant i want to replicate a basic version of it

i basically want a script or program that uses that same “working” login method …or any other login method that does not use API

performs a function such as (tweeting,following, retweeting)

and logs out….then moves to the next account

accounts will be stored in a mysql database

they will start with username and password

but then once logged in …the script or program should collect

email address and update the mysql email field of the current user its logged into with the email address

this is the basic idea of this application…i have basic Php knowledge so knowing this is no easy task i definitely need a skilled creative developer with ideas to help put this script together

please respond back with your own budget and time of completion for this project

Rtu Risiko Manager

October 11th, 2011 Comments off

RTU RisiKo! Manager
Is an Android app which manage Italian RisiKo! (Risk) tournament.
Screen resolution is for Normal/Large screen device (WVGA800 (480×800) – WXGA (1280×800)) working only in landscape orientation.

All graphics elements and data will be provided by me.

***************
User experience
“Tournament”
Select which tournament will be managed (name and period)
Set tournament characteristic (number of rounds, drawing method, classification method and final tournament phase method)

“Player registration”
Select tournament round (which round will be played) (name and date)
Pick a player from a list (a counter signs how many player will play)
Add a player to the list and automaticaly pick him
No new player in final phase

“Drawing table seats”
Compose table players drawing seats according with the setted drawing method or final phase method

“Table Winner”
For each composed table determine the winner:
Each player shows his objective (is numbered)
Record conquered territory for each table player
Sum point in objective
Sum point out of objective
Add bonus if expetted by the round
Give classification points according with the setted classification method

“Classification”
Show the actual classification list

Fix Payment Method Adult Script

October 3rd, 2011 Comments off

*adult content*

i have a adult webcam site and i need the payment method fix on it for credit cards

it is set up for credit cards and paypal both

i dont want the paypal to show up on the page

i do not want it delted from the site

i want it to stay in the site

just not going to use it right now

http://xxchatgirls.com/index_ie.php

this is a link to the website

i want this done asap

i want some one that has done this kind of job before

this should be a very easy job about 20 to 30 min.

Modify Existing Website And Change Method Of Payment

September 9th, 2011 Comments off

I need to change my website home page by creating a new audio recording and text. I also want to cease using a merchant bank approach and use paypal instead and coordinate it with 1shoppingcart.com, who handles my database. I also want to create a link on homepage that can take people to my survey created in surveymonkey.com and give those who complete the survey the opportunity to take my personality profile for free. The profile is already on the site and the opportunity to take it for free is already in place. I just want to change from current offer that I’ve had over a year. The website is themissingstep.com.

Add A Google Checkout Payment Method To My Site

August 6th, 2011 Comments off

My website already has paypal payment option implemented but I need a Google Checkout option fast. Also when the buyer is done with his purchase, I would like a script that will deposit a “credit” (which the buyer is buying) to his account.

Modification Of A C# Method To Parse A Ctags File 2

July 28th, 2011 Comments off

I require a rewrite or modification of the attached method. The current method looks at an assembly file and retrieve all the Types.

Assembly assembly = Assembly.LoadFrom(this.openFileDialog1.FileName);
Type [] assemblyTypes = assembly.GetTypes();

I require the method to read/parse the Types from a CTAGS (http://ctags.sourceforge.net/) file instead. Attached is a generated CTAGS created file.

Arrays Classes And Objects

July 17th, 2011 Comments off

STEP 1: Cylinder (20 points)

Create a class called Cylinder.java that contains two double-precision instance variables named radius and height. The class should include a constructor that initializes the radius and height variables. Additionally, there should be two accessor methods that return an object’s radius and height, respectively, and a class method named volume() that returns the volume of a Cylinder object. The volume of a cylinder is given by its radius squared times its height times Pi. You can either use the value 3.1416 for Pi or use the Java provided value named Math.PI.

Write a class called CylinderTest.java and declare an array of three Cylinder objects to call the methods you declared in the Cylinder class. Make sure that all class methods are called from main(). Have main() display the value returned by volume() and verify the returned value by hand calculations (paper/pencil).

STEP 2: Date (20 points)

Create a program called Date.java to perform error-checking on the initial values for instance: fields month, day and year. Also, provide a method nextDay() to increment the day by one. The Date object should always remain in a consistent state. Write a program that tests the nextDay method in a loop that prints the date during each iteration of the loop to illustrate that the nextDay method works correctly. Test the following cases:

a) incrementing into the next month.

b) incrementing into the next year.

Sample program output:

Checking increment

Date object constructor for date 11/27/1988

Incremented Date:11/28/1988

Incremented Date:11/29/1988

Incremented Date:11/30/1988

Day 31 invalid. Set to day 1.

Incremented Date:12/1/1988

Incremented Date:12/2/1988

Incremented Date:12/30/1988

Incremented Date:12/31/1988

Day 32 invalid. Set to day 1.

Incremented Date:1/1/1989

Incremented Date:1/2/1989

Incremented Date:1/3/1989

Incremented Date:1/4/1989

Incremented Date:1/5/1989

Incremented Date:1/6/1989

Categories: Java Tags: , , , , , ,

Implement Traffic Methods

July 6th, 2011 Comments off

Need help in getting traffic to my new site. I need someone to implement all 6 traffic methods in the attached pdf. Method# involve forum posting. Method#2 involve making simple PowerPoint video presentation and uploading the video with tubemogule or Hey!Spread. Method #3 Add affiliate links to script Viral Inviter(Already installed). Method#4 involve Bookmarking 40 Web 2.0 Sites. Method#5 Need to Post to 15 Google Groups. Method#6 Need to make at lease 20 blog comments. This should take 4 or 5 hours to complete. See page 90-100 of attachment. Please respond with C91 in title in your response so I know you have read and understand this assignment.

Modification Of A C# Method To Parse A Ctags File

June 27th, 2011 Comments off

I require a rewrite or modification of the attached method. The current method looks at an assembly file and retrieve all the Types.

Assembly assembly = Assembly.LoadFrom(this.openFileDialog1.FileName);
Type [] assemblyTypes = assembly.GetTypes();

I require the method to read/parse the Types from a CTAGS (http://ctags.sourceforge.net/) file instead. Attached is a generated CTAGS created file.

Mortgage Calculator

June 17th, 2011 Comments off

Modify an existing program. You are given a minimal set of specifications for a single use case of a larger loan application system, and your task is to modify the supplied program shell so that the program satisfies the use case requirements. In a link in Step 1 below, there is an MS Word document (MortageCalculator_OOAD) that contains the functional, structural, and behavioral models of the use case, along with the detailed design of one method that you need to complete, two contract specifications for external methods that you need to integrate into the application, and one method specification.

All the methods that you need to modify are isolated in the MortgageInformationInput class. In addition, the methods you need to modify are adjacent to each other in the code. All the methods that you need to modify are isolated in the MortgageInformationInput class. These methods are included in the Data Processing region of the code (if the region is collapsed, click on the + icon to expand the region and display the code).

The displayAmoritizationTable method demonstrates how to retrieve information from an external object and how interclass communication, through method parameters, helps with connascence.

The program needs to be written in Java… I have attached further documents to provide additional information.

Free 1000 Signups From India Needed

June 5th, 2011 Comments off

Hello,

We are a consumer survey company who require min. 1000 unique signups to our survey website.All the signups must be from real people of India(means 1000 real people).The promotion method can be any method via orkut,twitter,facebook or any other method you like.The person who joins our survey website must complete atleast 1 survey after joining to our site.All the registration process are free of cost hence the user has to pay nothing.
We will provide you all tracking methods such as links etc so that you can monitor your earning.

For each member you bring to our website who joins our website and completes atleast one survey we will pay you $1 every person.Thus a total of $1000 + $100 as a bonus on performance.
The website details will be dicussed to interested bidders only.

Thanks.

The Extended Time Zone Class

May 30th, 2011 Comments off

STEP 1: Create a New Project

Create a new project which consists of two classes; the base Time class and a derived extTime class.

The base class should have data members that are used to represent the hour and the minute both of type integer. The derived class has one additional data member that represents the time zone. This data member should have a string data type.

STEP 2: Create and define member functions

Create a function for each of the operations listed below:

Base class:

* set the time
* return the time
* print the time
* increment the hour
* increment the minute
* a default constructor and a constructor with parameters.

Derived class: should have (in addition to the classes above) its own

* print which prints the time zone in addition to the time
* constructor

STEP 3: Construct Main Method

Construct the main method so that it can test the member functions of each of the parent and the child class by instantiating objects of these classes and calling the appropriate functions.

STEP 3: Create the Base Time Class
Back to top

Using the Class diagram, create the base Time class using the following specifications.

Create a property to set and get the hour attribute.
Create a property to set and get the minute attribute.
Create a default constructor that sets the hour to 12 and minute to 0.
Create a parameterized constructor that accepts the hour and minute and sets the appropriate attribute.
The increment hour method will take an integer parameter which is the hours to be added. The method needs to check if the increment is greater than 23 hours since the clock will need to roll over to the next day, but the hour should never be greater than 23 [Hint: use the modulus operator (%).] Also, if the incremented hour is less than zero, set the value to the appropriate value. For example, if the current hour is 3 and the increment is -4, the new hour would be 23.
The Increment minutes method will take an integer parameter which is the minute to be added. If the number of minutes is greater than 60, then calculate the number of hours and minutes, and add the hours to the hour attribute [Hint: use the modulus operator]. If the calculated minutes is less than zero, then reset the minutes to 0 and notify the user.
The displayTime method will display the time in 24-hour format, such as “23:45″.

STEP 4: Create the ExtendedTime Class
Back to top

Using the Class diagram, create the derived ExtendedTime class using the following specifications.

Create a property to set and get the time zone.
Create a default constructor that invokes the base class default constructor, and then sets the time zone to CDT (Central Daylight Time).
Create a parameterized constructor that accepts the hour, minute, and time zone, and invokes the base class constructor to initialize the hour and minute, and then initialize the time zone attribute.
The displayTime method should invoke the base class displayTime method and then add the time zone to the output message.

STEP 5: Create the Windows Interface Form
Back to top

Add a new form, called

Categories: C/C++, Programming Tags: , , , , , ,

Youtube Video View Supply Or Method Needed Asap

May 12th, 2011 Comments off

We need either 1 of two things. We need either to buy a method for giving Video Views that work as of the NEW UPDATE that Youtube just made a few weeks ago, or we need someone to provide us with the views. We take in a great deal of customers daily.

This is very important and we would like to run a test run on 1 video just to make sure you are able to give them then after that we are needing to begin ASAP!

Thank you!

Payment Method Api Integration On Opencart

May 5th, 2011 Comments off

Required the service of a well experienced integrator to integrate a PHP based payment method API to opencart. the PHP is a plug and play, work is required to pass order information to it, and receive response in XML and use the response to full the order within the shopping cart

Form And Submission Method

April 15th, 2011 Comments off

I need to copy a form (input form) from a website and modify it to submit via sendmail(php) in proper output format (printable)

The form is already made and just needs to be cloned and modified for sendmail.

The form is at http://www.affordabail.net/apply/ that I need copied

Java: Strings And Collections

April 8th, 2011 Comments off

STEP 1: Index

Write a Java GUI application called Index.java that inputs several lines of text and a search character and uses String method indexOf to determine the number of occurrences of the character in the text.

Sample Program output: View attachment STEP 1

STEP 2: Index2

Write a Java GUI application Index2.java based on the program in project1 that inputs several lines of text and uses String method indexOf to determine the total number of occurrences of each letter of the alphabet in the text. Uppercase and lowercase letters should be counted together. Store the totals for each letter in an array, and print the values in tabular format after the totals have been determined.

Sample Program output: View attachment STEP 2

STEP 3: ThreeArrayLists (20 points)

Write a program called ThreeArrayLists.java that declares three arrayLists referenced by the objects named priceList, quantityList, and amountList. Each arrayList should be declared in main() and should be capable of holding a minimum of 10 double-precision numbers.

The numbers that should be stored in price are 10.62, 14.89, 13.21, 16.55, 18.62, 9.47, 6.58, 18.32, 12.15, 3.98.

The numbers that should be stored in quantity are 4, 8.5, 6, 7.35, 9, 15.3, 3, 5.4, 2.9 4.8.

Your program should pass object references to these three arrays to a method named extend(), which should calculate the elements in the amount array as the product of the corresponding elements in the price and quantity arrays (for example, amount [i] = price[i] * quantity [i]).

After extend() has put values into the amount array, create a method that displays the results of all three lists. Appropriate formatting techniques need to be used to produce a formatted output.

Sample program output:

1) 10.62 * 4.0 = 42.48

2) 14.89 * 8.5 = 126.56

3) 13.21 * 6.0 = 79.26

4) 16.55 * 7.35 = 121.64

5) 18.62 * 9.0 = 167.58

6) 9.47 * 15.3 = 144.89

7) 6.58 * 3.0 = 19.74

8) 18.32 * 5.4 = 98.93

9) 12.15 * 2.9 = 35.24

10) 3.98 * 4.8 = 19.1

Categories: GUI, Java Tags: , , , , , ,

Programming Project 1269140642

March 21st, 2010 Comments off

Comments are REQUIRED

Directions

The file must be called <YourNameProg1.java> (driver program)
IpAddress.java (IP Address class file)

Example: JohnDoeProg1.java (driver program)
IpAddress.java (stores IP address as an array of four octet int’s.

Ensure you include ALL files required to make your program compile and run.I would like to see your .java files only.

Proper coding conventions required the first letter of the class start with a capital letter and the first letter of each additional word start with a capital letter.

Overall Requirements

Every computer on the Internet has a unique identifying number, called an Internet protocol (IP) address. To contact a computer on the Internet, you send a message to the computer’s IP address. Here are some typical IP addresses:

216.27.6.136
224.0.118.62

There are different formats for displaying IP addresses, but the most common format is the dotted decimal format. The above two IP addresses use the dotted-decimal format. It’s called

Categories: Java Tags: , , , , , ,

Shopping Cart Customization

March 21st, 2010 Comments off

Hello,

We need to customize the prestashop e-commerce shopping cart for one of our jewellery client. Please have a look at http://www.rnjinfotech.co.in/demo/daulat

Important point for customization

1) Paypal is integrated but there is issue while payment. The default currency is Rupees but while making payment its always shows amount in dollar even without converting it on paypal page.

2) The price of each product will depend on weight of product, daily rate of gold and profit margin which will added by admin on daily basis. A method has been implemented under currency section in admin to add daily gold rate and profit margin but price need to be calculated based on above defined rule and price will be displayed accordingly in shopping cart instead of normal method.

3) Customer requires import and export functionality of selected product. So basically they will be maintaining a local copy of cart they will upload all the product in that local copy then they want to export selected product related information from local copy and will import them on online shopping cart. So a customize export and import method required.

4) Short description and description of product in admin section need to automatically updated when admin update three features i.e. Purity, Weight, Type related to that product.

5) Method need to be implemented so that illegal users can’t copy, download or take screen shot or printout of the images or pages.

please go through requirement and only bid if you can complete the task and have prior experience in prestashop.

Regarding payment, no immediate escrow. Once we see some progress then we can think of escrow. we are forced to follow this step due to bad experience with past programmer on same project.

Programming Project 1269140642

March 20th, 2010 Comments off

DUE: SUNDAY 8pm EST ( 1 Driver Program , 1 regular java program please read attachement if description is confusing as they are the same information. )

Comments are REQUIRED; flow charts and Pseudocode are NOT REQUIRED.

Directions

Points

The file must be called <YourNameProg1.java> (driver program)
IpAddress.java (IP Address class file)

Example: JohnDoeProg1.java (driver program)
IpAddress.java (stores IP address as an array of four octet int’s.

Ensure you include ALL files required to make your program compile and run.I would like to see your .java files only.

Proper coding conventions required the first letter of the class start with a capital letter and the first letter of each additional word start with a capital letter.

Overall Requirements

Every computer on the Internet has a unique identifying number, called an Internet protocol (IP) address. To contact a computer on the Internet, you send a message to the computer’s IP address. Here are some typical IP addresses:

216.27.6.136
224.0.118.62

There are different formats for displaying IP addresses, but the most common format is the dotted decimal format. The above two IP addresses use the dotted-decimal format. It’s called

Categories: Java Tags: , , , , , ,

Inventory Add On Project

March 6th, 2010 Comments off

I have most of the work done already and need to modiy my program by creating a subclass of the product class that uses one additional unique features of the product you chose (example:for the DVD subclass, you could use movie title, for example). In the subclass, create a method to calculate the value of the inventory of a productwith the same name as the method previously created for the product class. The subclass method should also add a 5% restocking fee to the value of the inventory of that product. Like I said I have most of the program done just need help on this part.

Sports Personality

March 1st, 2010 Comments off

Sports Personality Collection
Write a program that stores details of a sports personality collection.
Level 1 maximum 50% (depending on implementation, demonstration, viva and documentation) must include the following:
 Declaration and initialisation of variables
 Separate arrays to store individual details of each item
 A menu of options dependent on an integer variable
 Method to add items
 Method to search for an item and print details
 Method to print items
 Useful comments, good indentation, good use of variable names

Example

Bank Accounts

February 22nd, 2010 Comments off

Write a bank account program that handles bank account balances for an array of bank accounts. There are two types of bank accounts – checking and savings. Use this UML diagram:

BankAccount
| |
checking Savings

Implement the following classes and methods.
BankAccount class: deposit method, withdraw method, display method

Checking class: writeACheck method, display method

Savings class: addInterest method, display method

I can send the project in an email if anyone is interested in taking on this project. I would like this project completed NLT 3pm 23Feb10.

Add New Payment Method Cs Cart

February 12th, 2010 Comments off

Hello there,
I need a freelancer who can add a new payment method for me in CS Cart 2.0.* for my skin.

Payment method is very easy, the costumer should see four identical lines like this beneath each other at the checkout for the payment:

n1 n2 n3 n4 Password Value
1234 1234 12345 1234 mypassword 10

And I would like to have a sentence before that with a link to a payment howto in a small popop.

All the data of the Payment section given by the user should be seen in the admin panel for progressing the order.

Thx 4 reading, waitong for your messages.

Assingment # 5

February 8th, 2010 Comments off

CSE 205 – Assignment #5

Due Date: Friday, February 19th by 8:00PM

Minimal Submitted Files

You are required, but not limited, to turn in the following source files:

Assignment5.java (Download this file and use it as your driver program for this assignment. You need to add more code to complete it.)
Drink.java
DrinkInBox.java
DrinkInCylinder.java
DrinkParser.java

Requirements to get full credits in Documentation

The assignment number, your name, StudentID, Lecture time, and a class description need to be included at the top of each class/file.
A description of each method is also needed.
Some additional comments inside of methods to explain code that are hard to follow
Skills to be Applied

In addition to what has been covered in previous assignments, the use of the following items, discussed in class, will probably be needed:

Inheritance
The protected modifier
The super Reference
Abstract class
NumberFormat
ArrayList

Program Description

Class Diagram (download the .ppt file of the figure):

In Assignment #5, you will need to make use of inheritance by creating a class hierarchy for drinks to sell.

Drink class

Drink is an abstract class, which represents the basic attributes of any drink in a container. It is used as parent of the drink hierarchy. It has the following attributes (should be protected):

Attribute name
Attribute type
Description
volume
int
The volume of the drink
unitPrice
double
The price per unit of the drink
totalPrice
double
The total price of the drink
drinkId
String
The Id of the drink
The following constructor method should be provided to initialize the instance variables.

public Drink(String, double)

The instance variable volume is initialized to 0, totalPrice is initialized to 0.0, unitPrice is initialized to the value of the second parameter, and drinkId is initialized to the string value of the first parameter.

The following accessor method should be provided to get the drinkId :

public String getDrinkId()

The class Drink also has an abstract method (which should be implemented by its child classes, DrinkInCylinder and DrinkInBox) to compute the volume of the drink:

public abstract void computeTotalPrice();

The following public method should be provided:

public String toString()

toString method returns a string of the following format:

nThe DrinkId:tt10001n
The Volume:tt150n
The Unit Price:tt0.0015n
The Total Price:t$330.00nn

DrinkInCylinder class

DrinkInCylinder is a subclass of Drink class. It represents a drink in a can (cylinder). It has the following attribute in addition to the inherited ones:

Attribute name
Attribute type
Description
radius
int
The radius of the cylinder of the drink.
height
int
The height of the cylinder of the drink.
The following constructor method should be provided:

public DrinkInCylinder(String, double, int, int)

The radius is initialized to the value of the third parameter, the height is initialized to the value of the fourth parameter, and the constructor of the parent class Drink should be called using the first and second parameters. Leave volume and totalPrice as their default value.

The following method should be implemented:

public void computeTotalPrice()

First, it computes the volume for the cylinder of the drink. (computed by PI*(radius*radius*height), the constant value PI is defined in the Math class. — (int) (Math.PI*(radius*radius*height)) Also, compute (radius*radius*height) first since they are all integers. PI is a float point number, so you need to cast the final value to an integer (“volume” is an integer.) Then compute the total price of the drink. (computed by volume * unitPrice)

Also, the following method should be implemented:

public String toString()

The toString() method inherited from Drink class should be used to create a new string, and display a cylinder drink’s information using the following format:

nThe Drink in a Cylindern
The Radius:tt5n
The Height:tt10n
The DrinkId:ttsona200n
The Volume:tt785n
The Unit Price:tt0.0022n
The Total Price:t$1.73nn

This toString method should make use of the toString method of the parent class.

DrinkInBox class

DrinkInBox is a subclass of Drink class. It represents a drink in a carton. It has the following attributes:

Attribute name
Attribute type
Description
height
int
The heigt of the box of the drink.
width
int
The width of the box of the drink.
depth
int
The depth of the box of the drink.
The following constructor method should be provided:

public DrinkInBox(String, double, int, int, int)

The height, width, depth are initialized to the value of the third parameter, the fourth parameter, and the fifth parameter, respectively, and the constructor of the parent class Drink should be called using the first and second parameters. Leave volume and totalPrice as their default value.

The following method should be implemented:

public void computeTotalPrice()

First, it computes the volume of the box of the drink. (computed by height*width*depth)
Then compute the total price of the drink. (computed by volume * unitPrice)

Also, the following method should be implemented:

public String toString()

The toString() method inherited from the Drink class should be used to create a new string, and display a box drink’s information using the following format:

nThe Drink in a Boxn
The Height:tt5n
The Width:tt10n
The Depth:tt5n
The DrinkId:ttmilk515n
The Volume:tt250n
The Unit Price:tt0.0055n
The Total Price:t$1.38nn

This toString method should make use of the toString method of the parent class.

DrinkParser class

The DrinkParser class is a utility class that will be used to create a drink object (either a cylinder drink object or a box drink object) from a string. The DrinkParser class object will never be instantiated. It must have the following method:

public static Drink parseStringToDrink(String lineToParse)

The parseStringToDrink method’s argument will be a string in the following format:

For a cylinder drink,

shape/drinkId/unitPrice/radius/height

For a box drink,

shape/drinkId/unitPrice/height/width/depth

A real example of this string would be:

Cylinder/soda200/0.0054/5/10

OR

Box/milk03/0.0035/10/15/10

This method will parse this string, pull out the information, create a new DrinkInCylinder or DrinkInBox object using their constructor with attributes of the object, and return it to the calling method. The type will always be present and always be either Cylinder or Box. (It can be lower case or upper case) You may add other methods to the DrinkInCylinder and DrinkInBox class in order to make your life easier.

Assignment5 class

In this assignment, download Assignment5.java file by clicking the link, and use it for your assignment. You need to add code to this file. The parts you need to add are written in the Assignment5.java file, namely for the four cases “Add Drink”, “Add Compute Total Prices”, “Search for Drink”, and “List Drinks”.

All input and output should be handled here. The main method should start by displaying this updated menu in this exact format:

ChoicettActionn
——tt——n
AttAdd Drinkn
CttCompute Total Pricesn
DttSearch for Drinkn
LttList Drinksn
QttQuitn
?ttDisplay Helpnn

Next, the following prompt should be displayed:

What action would you like to perform?n

Read in the user input and execute the appropriate command. After the execution of each command, redisplay the prompt. Commands should be accepted in both lowercase and uppercase.

Add Drink

Your program should display the following prompt:

Please enter a drink information to add:n

Read in the information and parse it using the drink parser.

Then add the new drink object (created by drink parser) to the drink list.

Compute Total Prices

Your program should compute total price for all drinks created so far by calling computeTotalPrice method for each of them in the drink list.

After computing total prices, display the following:

total prices computedn

Search for Drink

Your program should display the following prompt:

Please enter a drinkID to search:n

Read in the string and look up the drink list, if there exists a drink object with the same drink ID, then display the following:

drink foundn

Otherwise, display this:

drink not foundn

List Drinks

List all drinks in the drink list. Make use of toString method defined in DrinkInBox and DrinkInCylinder classes.

A real example is looked like this:

The Drink in a Cylinder
The Radius: 5
The Height: 10
The DrinkId: soda200
The Volume: 785
The Unit Price: 0.0054
The Total Price: $4.24

The Drink in a Box
The Height: 10
The Width: 15
The Depth: 10
The DrinkId: milk03
The Volume: 1500
The Unit Price: 0.0035
The Total Price: $5.25

If there is no drink in the drink list (the list is empty), then display following:

no drinkn

Quit

Your program should stop executing and output nothing.

Display Help

Your program should redisplay the “choice action” menu.

Invalid Command

If an invalid command is entered, display the following line:

Unknown actionn

Test cases:

Input

The following files are the test cases that will be used as input for your program (Right-click and use “Save As”):

Test Case #1
Test Case #2
Test Case #3
Test Case #4

Output

The following files are the expected outputs of the corresponding input files from the previous section (Right-click and use “Save As”):

Test Case #1
Test Case #2
Test Case #3
Test Case #4

Error Handling

Your program is expected to be robust to pass all test cases.

Categories: Java Tags: , , , , , ,

Java Ipaddress

January 17th, 2010 Comments off

Directions
Points

The file must be called <YourNameProg1.java> (driver program)
IpAddress.java (IP Address class file)

Example: FirstLastProg1.java (driver program)
IpAddress.java (stores IP address as an array of four octet int’s.

Ensure you include ALL files required to make your program compile and run.
I would like to see your .java files only.

Proper coding conventions required the first letter of the class start with a capital letter and the first letter of each additional word start with a capital letter.
4

Overall Requirements

Every computer on the Internet has a unique identifying number, called an Internet protocol (IP) address. To contact a computer on the Internet, you send a message to the computer’s IP address. Here are some typical IP addresses:

216.27.6.136

224.0.118.62

There are different formats for displaying IP addresses, but the most common format is the dotted decimal format. The above two IP addresses use the dotted-decimal format. It’s called

Categories: Java Tags: , , , , , ,

Project 1 2026

January 12th, 2010 Comments off

Comments are REQUIRED; flow charts and Pseudocode are NOT REQUIRED.

Directions

I need to be able to edit portions of the code at a later date.

The file must be called <AmilcarSilvaProg1.java> (driver program)
IpAddress.java (IP Address class file)

Example: KenDeweyProg1.java (driver program)
IpAddress.java (stores IP address as an array of four octet int’s.
Ensure you include ALL files required to make your program compile and run).

Would like to see your .java files only.

Proper coding conventions required the first letter of the class start with a capital letter and the first letter of each additional word start with a capital letter.

Overall Requirements

Every computer on the Internet has a unique identifying number, called an Internet protocol (IP) address. To contact a computer on the Internet, you send a message to the computer’s IP address. Here are some typical IP addresses:

216.27.6.136
224.0.118.62

There are different formats for displaying IP addresses, but the most common format is the dotted decimal format. The above two IP addresses use the dotted-decimal format. It’s called

Categories: Java Tags: , , , , , ,

Java-ip Address Display Prgm

January 11th, 2010 Comments off

Comments are REQUIRED; flow charts and Pseudocode are NOT REQUIRED.

Directions
Please create in Eclipse IDE. I need to be able to edit portions of the code at a later date.

The file must be called <BrianKenttaProg1.java> (driver program)
IpAddress.java (IP Address class file)

Example: KenDeweyProg1.java (driver program)
IpAddress.java (stores IP address as an array of four octet int’s.
Ensure you include ALL files required to make your program compile and run.

Would like to see your .java files only.

Proper coding conventions required the first letter of the class start with a capital letter and the first letter of each additional word start with a capital letter.

Overall Requirements

Every computer on the Internet has a unique identifying number, called an Internet protocol (IP) address. To contact a computer on the Internet, you send a message to the computer’s IP address. Here are some typical IP addresses:

216.27.6.136
224.0.118.62

There are different formats for displaying IP addresses, but the most common format is the dotted decimal format. The above two IP addresses use the dotted-decimal format. It’s called

Categories: Java Tags: , , , , , ,

Mt4 Programmer Required

January 5th, 2010 Comments off

I need an MT4 programmer to customise a trading method- There will be a main trend indicator, which I will like displayed at the top left hand corner, then a daily trigger indicator at the bottom. When both indicators signal in unison at GMT 00:00 then that is a valid signal for trade entry! Option to e-mail/text signal to user(s) required.

Using the atr to define Take profits, BreakEvens, Stop loss, which much of the work on this side has been done already. I have a trade manager EA for it(at instant trade execution it places the defined atrSL, atrBE, and atrTP, then manages the trade) to completion.

Secondly, based on the same above method I will like to have fully automated EA whereby at a valid signal point the EA executes the trade itself. i.e just fusing the trade manager EA with the signal generation.

Thirdly, and possibly, I will like to customise the Forex funnel EA to work based on the direction of the signal generated by the above trading method, whereby it will enter only BUY trades for the day if the valid signal says so, and only SELLS for the day for the vice-versa. *Here opposing signal should exit current trades, but the new entry lot size will be double that of the exited, then the next trade should begin with minimum set lot size.

In all it seems to be 3 projects in one, BUT they are all more or less based on the same trading method described at the beginning.

Kindly let me know if you can do this, and give me a quote.

Streamlining Publishing Method

January 4th, 2010 Comments off

Modify current facebook applications feeds to work with publish.stream methods. This modification will need to be changed on 2 appplications.

Java Task Using Netbeans

December 31st, 2009 Comments off

I need a professional java program to do a small project should take a pro an hour or two Payment via escrow after project fully completed and sent via email with the code program must be created on net beans and also copy and pasted to Microsoft word also proof program works, must be logically set out so easy to read A test plan describing the tests that you ran on the program and their results. The program includes things such as:

Ipb 3.0 – Auto Poster

December 28th, 2009 Comments off

Hello,

I am looking for a way to build up my forum posts. There are 2 methods I am interested in using.

method 1: use “KEYWORD” to grab RSS feeds / Google news… Edit the content to be unique ( Synonym change )

method 2: use “KEYWORD” to crawl exsiting forums related to keyword, grab user posts…Change synonyms to make as unique as possible… post content to my forum.

method 3: Your idea for adding unique content in an automated fashion to my IBP Forum.

Please understand that I would like to see this script in action before I send money, also if you are placing a bid on this project please in the reply simply state “read&ready” otherwise your bids will be ignored.

Thanks,

Help Test Sites Payment Method

December 24th, 2009 Comments off

I need someone to help me test my two sites’ payment systems. You MUST have a Paypal account and a credit card.

Here is what you will do:

Make a deposit: you must make a small deposit (only $1-5) and after it has been confirmed, it will be refunded in full.

Request Withdrawl: You must request a withdrawl, the withdrawl will not actually be processed with Paypal.

You must do this with 2 sites, one has only Paypal, the other has Paypal and Google Checkout, you must make a payment with Google Checkout. I need to test how the payment system works. All your money will be refunded after that specific test is finished. I can communicate through GTalk or email.

Please, no outrageous bids. This should take at most 30 minutes of your time, probably less. You will not actually be spending any of your money, the payments will be refunded when the test is complete, and you are only required to make deposits of a few dollars.

Dots

December 7th, 2009 Comments off

**Must be done in eclipse**
DUE Dec 7th 11:00pm est

The game of Grids is played by two players on an 8 by 8 grid of dots. Grids is a turn-based game, meaning that player one takes a turn, then player two takes a turn, then player one again, and so on, until the game ends. A turn consists of selecting a single dot from the grid. Once a dot is selected, it cannot become unselected, and it cannot be selected again. Initially, none of the dots in the grid are selected. The game ends when all dots have been selected. The goal of each player is to complete as many boxes as possible, and the player who completes the most boxes wins. A box is completed by selecting fourth dot surrounding a square on the board. With a well chosen move, a player can complete up to four boxes in one turn. The pictures below help to clarify the situation:

Filled circles represent dots that have been selected. Empty circles represent unselected dots.

A move that completes one box A move that completes three boxes

Your goal is to write a Java applet that allows two human players who are sitting at the same computer to play Grids with each other. Your applet must obey the following constraints, but you are otherwise free to design the applet as you please.

Categories: Java Tags: , , , , , ,

Java Cse 110 Program

December 3rd, 2009 Comments off

I need my java programming lab done by tomorrow.
Design and write 3 classes

Java Programming Problem

November 15th, 2009 Comments off

Problem

In a course, a teacher gives the following tests and assignments:

-A lab activity that is observed by the teacher and assigned a numeric score.
-A pass/fail exam that has 10 questions. The minimum passing score is 70.
-An essay that is assigned a numeric score.
-A final exam that has 50 questions.

Write a class named CourseGrades. The class should have a GradedActivity array named grades as a field. The array should have four elements, one for each of the assignments previously described. The class should have the following methods:

setLab: This method should accept a GradedActivity object as its argument. This object should already hold the student’s score for the lab activity. element 0 of the grades field should reference this object.

setPassFailExam: This method should accept a PassFailExam object as its argument. This object should already hold the student’s score for the pass/fail exam. Element 1 of the grades field should reference this object.

setEssay: This method should accept an Essay object as its argument. (See programming Essay class file, which is attached.) This object should already hold the student’s score for the essay. Element 2 of the grades field should reference this object.

setFinalExam: This method should accept a FinalExam object as its argument. This object should already hold the student’s score for the final exam. Element 3 of the grades field should reference this object.

toString: This method should return a string that contains the numeric scores and grades for each element in the grades array.

Demonstrate the class in a program.

Categories: Java Tags: , , , , , ,
Bear