Savings Account
I need a Saving Accounts program exactly like the one that is already posted. Can anyone help?
I need a Saving Accounts program exactly like the one that is already posted. Can anyone help?
The file must be called <LastFirstWeek5CatMouse.java> (driver program)
Mammal.java
Cat.java (which extends Mammal)
Mouse.java (which extends Mammal)
Ensure you include ALL files required to make your program compile and run.
I would like to see your .java files only.
Ensure proper programmers line and block comments are used.
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.
5%
Overall Requirements
Write a program that simulates the battle between a cat and mice.
Use this class hierarchy:
Cat
Looking for a programmer who can provide a code that can render a small dimension flash files/animation in old model java-based phones (perhaps J2ME MIDP/CLDC 1.0 compatible, minimum phone display dimension is 128×128) WITHOUT the need for Flashlite. Over-the-Air application installation and RTMP/RTSP capabilities would be greatly preferred.
PM me for suggestions and clarifications. Willing to give bonus if satisfied.
I currently have a large software system that is 95% complete. The people I was working with unexpectedly left the project. The site is PHP and runs from a mySQL database. This is what I need:
1- Design implementation. I have all of the PSDs, I just need them implemented accordingly.
2- Debugging. I will tell you how certain things are supposed to function, and the coding needs to be tweaked to make that happen.
3- Custom coding. There are about 2 functions currently missing. They are minor.
PLEASE KEEP IN MIND: I am a programmer myself, I just don’t have the time to dedicate to this to get it done in the required time frame. Therefore, we will both be able to speak on the same level about what needs to be done.
Also, it may take a bit of time to familiarize yourself with this program, so include that fact in your bid.
Lastly, I am looking to build a lasting relationship. Once you complete this project, I will consider hiring you on a monthly basis for simple maintenance and custom coding. Thanks!
I need assistance in resolving a easy java project within 4days. I will need documentation for it also.
Should not be a problem to java experts. Message me
Greetings Vendors:
In an ongoing effort to provide cost-effective solutions to help doctors’ offices become technologically state-of
I need assistance in resolving a easy java project within 3days. I will need documentation for it also. MAX bid amount is awarded if the project is very good.
Should not be a problem to java experts. Message me =)
Need to convert an app made with scratch project http://scratch.mit.edu/projects/vfilip/859424 into java . Pls signup there download scratch and install it and download this project after logging it .Open it with scratch . all code will be visible there in a full graphic environment easily understandable .Full source code & full documentation needed for a starter in java . The app should be executed in a web browser , in pc and in smart phones . The app coded in java should be executed and produce the same results as it is in the scratch executed , however 20 more symbols will be added , that are not coded in scratch .An alteration should be made so that user in configuration panel user selects the symbols that this programm will generate randomly . Pls do not bid if u do not download the project and see it’s source code . This is a tutorial app in learning traditional greek traditional music . User gives a tempo (beats/minute) at start and then it generates randomly symbols .Each symbol may include up to 3 notes executing in sequence of multiple or subdivision of 1 beat . The student will have to recognize the symbol and say the subsequent notes by his own The programmer must be skilled graphics and sound in java. There are 13 notes each one at give frequency generated as a MIDI tone. Direct communication with java programmer through Skype should be provided on a daily basis . You should use the same names of variables & graphiics that are used in the scratch project
Hello,
I need someone who can do 2 jobs for me.
1. Create a Java Slideshow with images and build the slideshow in my website.
This slideshow is for a hosting website,i need images in it of brands we work with like Dell,SuperMicro etc etc.
I will tell you the brands(about 6),you need to create the slideshow and get some pictures of those brands and make sure they are sharp enough.
After this is done you have to built the slideshow in my website.
Here is an example of a slideshow I like : www.deziweb.com ,you can see it on the right(Powered by..)
2.Design a domaincheck box and built this box in my website.
Taking care of the images and the style of my website.
Here is an example : www.trafego.nl.
You can see the domaincheck box on the right.
To tell you,the website is in dutch and also I am dutch,but this doesn’t matter.
The budget of both jobs is quite low,maximum $25 for both jobs together.
I need someone who is experienced in different kind of skills,cause I need more to be done soon.
Communication via Google Talk,to discuss my needs in detail.
Payment after the jobs are done via Paypal.
Looking forward to work with you.
I am looking for someone that know how to program both Android and iPhone applications. I know how to program using Java and the android SDK and need some assistance with a project that I am working on. I am creating an application.
I do not want to spend too much time on the details but I need someone that knows how to create an application that uses the Google maps API, the SMS telephony features, SDK tools to access on the device, and create dialog screens for users.
If this sounds like your skill set, we can negotiate a price. As i said before, I have somewhat of a skeleton of what I desire. Please let me know if you are interested.
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.
We need to develop a Digital Signature and Contract Lifecycle Management Website, integrating the following technologies:
http://drupal.org/
http://www.diginotar.com/products/trustedidentitymanager.aspx
http://www.primekey.se/Products/EJBCA+PKI/
http://www.primekey.se/Products/SignServer/
The site will be similar to: http://docs.ascertia.com
The services the site will provide are:
Service 1: Digital Certificates
A. Personal Certificate.
The customer will:
1) Register / log in Drupal
2) Pay for his certificate (using ubercart)
3) Verify his identity online, answering questions through Equifax web service.
4) Download his certificate (generated using EJBCA PKI)
B. Business Certificate
The customer will:
1) Register / log in to Drupal
2) Pay for his certificate (using ubercart)
3) Receive a mail with instructions
4) Upload a copy of personal ID and other papers required.
A site operator will:
1) Log in to the site
2) View a list of Business Certificates Requests (BCR)
3) View the customer uploaded files.
4) Approve the requests.
The site will:
1) On every approved BCR generate a certificate (using Diginotar PKI)
2) Send a mail to the customer, with a link to download his certificate.
Service 2: Contract Lifecycle Management
The customers will:
1) Register / log in
2) Verify his identity using his certificate.
3) Add funds to his account.
4) Select a Contract Template from the site Library, or upload his own contract.
5) Modify / fill in the template with his data.
6) Sign the contract (using SignServer)
7) Selects the way he wants to finish the negotiation process: a) saving the final file signed by all the parties as PDF file in a private section of the site, wich will only be accessible to the users who have signed the contract; or b) sending a PDF file by mail to all the signing parties.
Enter the name and emails of the other parties.
Other parties will:
1) Register / log in
2) Verify his identity using his certificate.
3) Sign the contract using his digital certificate.
The site will deduct a specified amount from the initiating party account, for each sign his contract has received.
After all the parties have signed the contract, the site will save the final PDF file or send it by mail.
Service 3: Contracts
A. Free Library
1) The site will shown a comprehensive list of contract models (SEO friendly).
2) Any visitor will be able to search contracts, view the full list, and a brief description of each contract.
2) The user will need to register / log in to download a free contract template.
B. On demand template customization
The customer will:
1) Register / log in (using Drupal)
2) Pay for the service (using ubercart)
3) Select a template from the library
4) Upload some text explaining his particular case.
A site operator will:
1) Log in to the site
2) View a list of Template Customization Requests (TCR)
3) Open a case
4) Upload a Customized Contract for that case.
The site will:
1) Send a mail to the customer, with a link to download his Contract.
C. On demand Original Contract Writing
The customer will:
1) Register / log in (using Drupal)
2) Pay for the service (using ubercart)
3) Upload some text explaining his particular case.
A site operator user will:
1) Log in to the site
2) View a list of Original Contracts Requests (OCR)
3) Open a case
4) Upload a Contract for that case.
The site will:
1) Send a mail to the customer, with a link to download his Contract.
Hi , i need a simple system in vb or java.
It will have a window with preformated fields , the user will key in the data,
There will be print and cancel button at below. When submit print , it will print the data.
The system will print it to a dot matrix printer. SP298 starmicronics
Im attaching a demo which is done by my guys. But just cant make the same font .
Anyone can show me the demo will get the project.
Payment will be upon completion of the work , with full working system.
Upon getting the payment , you can release the source code
This is a very simple program and can finish in less then 2 hours for the expert.
We can pay max 200usd for this only.
Hello we are looking for someone who can Help us in installing Soashable which is available to download from http://sourceforge.net/projects/soashable/
The chosen developer should install Soashable on our server
This will be a quick job for people who are good in Java
Please place your bid soon so that we can choose the idea person for the job
Expecting to find the right person for the Job
For Teamwebnextexperts
Jennifer
Installing Soashable from Soashable.com to match its demo Soashable.org
I have a photo scroller that shows thumbnails from two databases on my site. See it here: www dot germanshepherdworld dot org
I am interested in getting one installed with better performance.
1. Is on/off button possible
2. Is there a way to auto-dump cache
3. Any other suggestions
Requirement:
1. It must show rectangular thumbnails of uniform size though source photos are not – no pop-up viewers
2. It pulls from two databases
3. Click to enlarge photo and go to location (user album, etc.)
Please be specific in how you improve the scroller. Please use the word HAGAJI in your replies so I know you have read and understand this. Thank you.
Overall Requirements
Write a program that simulates the battle between a cat and mice.
Use this class hierarchy:
mammal
/
mouse cat
Cat
All variables, classes, methods and constructors must have comments supplied. All classes, methods and constructors must have comments signifying the end of each class, method or constructor.
The file must be called <KenttaBrianWeek5CatMouse.java> (driver program)
Mammal.java
Cat.java (which extends Mammal)
Mouse.java (which extends Mammal)
Include ALL files required to make the program compile and run.
.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
Write a program that simulates the battle between a cat and mice.
Use this class hierarchy:
Cat
Hello,
I am looking to buy scripts with Exclusive rights.
Need Job Portal, Classifieds, Directory, Clones, Social NWK, Website Brokerage And any other type of scripts.
Main Requirement: I’ll need Re-branding and Copyrights Removal of Script Provider and Its Company.
Don’t send Scripts in PMB which are Open-Source or which you have bought in packages from sites.
I need unqiue yet any type of scripts except Adult (no Adult, Dating needed).
Send PM with your Script Demo and Price.
Thanks
I have a java/swing desktop application using hsqldb using utf8 data.
Application is essentially a book reader/ search index / explorer with fullscreen/slideshow functions. The application runs in windows but not in Mac and Linux.i have the source files.
I had some one add some features and fix bugs , this version2 works in Mac and Linux , I have a modified jar BUT no source (java)files files as the programmer is not available.
i have identified some issues with version 2
the project is to implement the changes needed in version1 original source and also fix the bugs we found in version2 and make it compatible with win/mac/linux.
all details in PMB and attached doc.
installer packages with version2 jar are available at www.searchgurbani.com/sgdv/
EXPERIENCED JAVA PROGRAMMERS ONLY
Hi, can anyone clone this virtual wheel fitting bay http://www.rarerims.co.uk/virtual/ i would like to have one one on my on site www.toxicspeedshop.com it changes differnt wheels on differnt cars to give you an idea on how your car would look with the differnt chocies
Hello,
I need some help. I am looking for someone to help me add a check box for the user to turn off a javascript portion of the webpage that they are on that would remember throughout the site to be turned off if checkbox 0 (javascript not there) checkbox 1(Checked) the java script would be there to show the java applet.
The javascript code to show the javascript is around 20 lines only – I am not sure if there is a way to show the code if the user clicks and if the user unclicks the site would remember this user setting for the java code throughout the site as long as they remain on the site per the session. I have something like it already but need someone to work more with the new code to give the user the option.
It should not be too much of an edit just modification.
I have an existing website which has a mySQL backend db, the front end contains a login and sign ordering system. This needs to be redesigned so that its flash based and graphically clickable, from the main page, down to the order selection and then processing. Can go into more detail with the successful party. There is an urgent need for this for the front end especially.
I’m looking for a flash expert, who also has detailed understanding og PHP and MySQL. The project is for an existing website revamp which includes fixing a pricing structure for new products, designing a flash based front end selection tool linked to the database objects.
I’m looking for someone to build a script or install a existing script that will allow people to post prayer requests on a church website that will look like this one:
http://www.9lessons.info/2009/11/facebook-style-application-with-jquery.html
The script needs to be editable by an admin so that they can delete posts by people that want to post bad things on websites.
The script will be installed on the homepage on this website:
http://www.777church.com/
I need this done asap.
Joey
Greetings Vendors:
In an ongoing effort to provide cost-effective solutions to help doctors\’ offices become technologically state-of
This is a 3-part project. Part 1 needs to completed immediately if possible. I have completed service request #4 so the format of the GUI can be kept the same if possible.
Please insert comments that a novice like myself can understand.
Service Request #5
Mortgage Calculator Change Request #5 in Service Request SR-mf-003. Insert comments in the program to document the program.
Change Request #5: Write the program in JAVA (with a graphical user interface) and have it calculate and display the Mortgage payment amount from user input of the amount of the Mortgage and the user’s selection from a menu of available Mortgage loans:
Hello,
I am looking to buy scripts with Exclusive rights.
Need Job Portal, Classifieds, Directory, Clones, Social NWK, And any other type of scripts.
Main Requirement: I’ll need Re-branding and Copyrights Removal of Script Provider and Its Company.
Don’t send Scripts in PMB which are Open-Source or which you have bought in packages from sites.
I need unqiue yet any type of scripts except Adult (no Adult, Dating needed).
Send PM with your Script Demo and Price.
Thanks
Hello We are having an issue with an audio component for Joomla.
You can vew the component and the error at the very bottom of the page here:
http://str8hiphop.com/index.php/component/jukebox/?view=category&id=58%3Athat-new-new
We may need some other additional work including integrating JomComments and a rating system into the sound player.
Thanks!
Looking for a experienced programmer who can write a small source code for me in either of the following language’s
HTML
JAVA
LINUX
I would like a script written which will help me boost my stats in a facebook application game I play. The script when working will need to give me points every time I click on it or Auto run it so I can leave it running and gain points at the same time. The game its self I believe is written in Java or Html. But I have been told that using linux, Html or java you can change the server side of the code.
Only apply if you have GOOD knowledge in the above fields. This is not a project for a newly qualified programmer but feel free to prove me wrong.
I also have in access of $10,000 worth of work if you can do this project.
I’m looking for someone who is capable of altering the stats for a popular facebook game/application. In this game you assign skill points to determine your characters strength in attack, defense, etc. So I’m looking for someone who can modify and boost those stats.
If successful you could potentially have multiple jobs from multiple clients.
I am currently playing Mafia Wars, a game application on Facebook. The game uses godfather points as an in-game credit (currency) which players can use to improve their character. I need an expert programmer who can add godfather points, or reward points to my mafia wars account directly via a customized script which can be used on multiple accounts. I am willing to pay good price for it.
Only programmers with knowledge of the game need apply. I prefer a programmer who has developed an active script for this same purpose in the past, but I am open to all that can provide an effective and efficient service. If you could prove your understanding of what I want and deliver it, I would pay you well for it.
If you are able to complete this project I have many clients who also would like it done who are willing to pay as well.
I am currently playing Mafia Wars, a game application on Facebook. The game uses godfather points as an in-game credit (currency) which players can use to improve their character. I need an expert programmer who can add godfather points, or reward points to my mafia wars account directly via a customized script which can be used on multiple accounts. I am willing to pay good price for it.
Only programmers with knowledge of the game need apply. I prefer a programmer who has developed an active script for this same purpose in the past, but I am open to all that can provide an effective and efficient service. If you could prove your understanding of what I want and deliver it, I would pay you well for it.
If you are able to complete this project I have many clients who also would like it done who are willing to pay as well.
The project is to design a CRM for our moving company.
The CRM will have most of the features on this CRM: http://www.movepoint.com/demo.php
http://www.movepoint.com
Few More other features will be added to this solution including integration with Google apps (Calendar, email…etc).
This will be a web based solution.
this solution needs to be very stable since we are going to be running all our business based on it.
Fast loading, usability and stability are very important requirments
The program I need is a program to help people learn to sight read piano sheet music:
The general idea is that notes, chords, and keys appear on the screen on the Bass and Treble clefs, and the user has to hit the corresponding key on the piano keyboard shown on the screen.
There need to be three main training options: Key Identification, Chords, and Notes.
In the Key Identification mode the player is shown different key signatures and must answer a multiple choice question on what key it is. This is done a constant number of times, and afterward they are done.
In the Notes option they first (before the “training session” begins) select a key (or choose “random”) for the notes to be shown in. Then they must answer the press the correct notes on the keyboard. The notes appear a constant number of times (as of yet, undecided) and then they are shown how they have done.
The Chords is the same as the Notes option, but they are shown chords on the clefs, and must choose the correct notes the comprise the chord.
After they are done with a session they are presented with the statistic of: a) number of notes shown, b) percentage of correct notes, and c) notes per minute. After this happens the session is over and they go back to the main screen.
The program information is not yet set in stone and will be variable to some change.
Please post honest estimates on pricing and the TIME of the project.
Need someone to setup a page where my customers can login and setup a live stream broadcast using my account info for streamapi.com
This is what their documentation says.
You need to use the API to create three different sessions, one for
each customer. Each host would need a page to start broadcasting from
and a page where the broadcast can be viewed.
This page describes how to set up the broadcasts:
http://www.streamapi.com/howto/broadcast.do
You can take a look at our document for setting up the viewing pages
here:
http://www.streamapi.com/howto/view.do
We have client libraries and sample code that you can use to get
started. PHP library can be found here:
http://www.streamapi.com/libs/php.do.
I have a elance all most done and I need a people who live in Bangladesh. and able to phone verify . just I need help for verify phone . I can pay for this $5- $10
thanks
01670556539
This is just a copy of an older project. I don’t know whether it is possible like that or not.
This project includes both a spider and a simple website to view the archived websites. It would be similar to archive.org’s spider (wayback machine). This spider should be able to do exactly what the wayback machine does.
As an example:
http://web.archive.org/web/*/http://www.scriptlance.com
It is easy to see that the archive creates a full duplication including changing the redirects so that it references the archive set. Take a good look at their archived set to know how this works (If you do not already know)
I would additionally want to grab a screenshot of the homepage as well as the Google PR of the site.
The interface should be relatively simple like archive.org in that you could select the date to pull up the archived version of the website.
You should have experience in creating web spiders.
I want some one for modification and take care for monhtly maintenance fees even one hour only or 10 hours whole the month the project is phpmotion i want change template and some customization