I am looking for experienced facebook professional who can create my business facebook page (add information about accommodation booking service, add links to my internal pages …) + get 10,000 Facebook fans very fast… (Budget: $30-250, Jobs: Advertising, Facebook, Internet Marketing, Marketing, Social Networking)
Open-Mesh /CoovaOM Voucher Automation by sfstreet
Fully integration of Vbulletin + Joomla by Girca
Mobile Web App entering info and returning values by bkl4114
This project is for a mobile web application that: 1. will receive configurations via xml/web service from a company and deploy them into the app’s database 2. collects information entered by the user over the internet through the web app via html etc… (Budget: $1500-3000, Jobs: HTML, Java, Mobile Phone, MySQL, XML)
Need joomla store locator by gregvan
Online Marketplace – Like Flippa.com by vgjhave
NEED SOME CREATIVE 1 PAGE ADS (INFO SUPPLIED) by venik652
Hi, I need 10 creative, different ads for posting on craigslist. Please use all of the information from THE ATTACHED image CARBON+BLACK.jpg, but include 2 provided images in your newly created ad truck1.jpg and truck.jpg… (Budget: $30-250, Jobs: Animation, Arts & Crafts, Flash, Graphic Design, Photoshop)
Ebay Checkout Integration by moorethoughts
Deleted project #730531 by MICK1968
.edu . gov . need for 200 domain n each need 20 links by nicejobpay
.edu . gov . need for 200 domain n each need 20 links . Mean total have 150 different domain … and each domain need to have 20 .edu or gov links .. You need to do the search and get it for this project for the gov and edu no spam , not black hat all white hat …. (Budget: $30-250, Jobs: Link Building)
Cut Psd To Css Xhtml
Simple project need to cut psd must be finished in 24 hours
Page elements may change in future so elements should not have fixed height width. Images need to be <img> tags and not embedded in css.
Form needs to flexible to more fields can be added or removed without breaking layout (the form will just grow shrink – not fixed height)
Top part is one big <img> second row is swf that will be given with psd to winning bidder. If work is good future work will be available
Pdf Booklet
I would like a programmer to create a PDF booklet for me. The booklet will have 10 pages.I would like a programmer to create a PDF booklet for me. The booklet will have 10 pages.I would like a programmer to create a PDF booklet for me. The booklet will have 10 pages.I would like a programmer to create a PDF booklet for me. The booklet will have 10 pages.I would like a programmer to create a PDF booklet for me. The booklet will have 10 pages.
Gift Finder
I run a gift review website and we are looking for a creative gift finder application to be developed.
The concept is simple, the user chooses certain features for who the gift is for (e.g. gender / price / occasion / etc) and the gift finder displays the relevant products that meet their requirements.
What we want to do hgowever is make it fun, so we wanted to introduce probably flash into the mix and have a gift finder monster, who on the first selection eats a bag (think santa sack)labled gifts and then burps out the gifts that meets their first requirement. Each time the user selects another option the monster eats all of the gift ideas, gets a bad tummy and then burps out the gift ideas that match the users requirement.
This is going to require some fantastic graphic design and great imagination from the developers, but its a great twist on the gift finder idea. firebox.com have a gift finder application that is somewhat similar (no monsters mind), but should give the general idea.
I’m expecting questions, talk to me. I won’t choose generic run of the mill “can do that” responses, need to know the person who takes this on is going to be able to do it justice. Any flash examples of similar applications would be much appreciated.
Cheers
Paul
Catmouse.java
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.
If possible, submit all programs as a single .zip file (not required)
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
• Kills 1 mouse a day
• Does not reproduce
Mice
• Have a chance to reproduce as long as conditions are met
• Reproduction only happens when mice are over 1 and 1 of each sex is present
Simulation Control
• Simulation continues as long as population is greater than 1 and less than 10
Driver main method should be as shown below: (replacing comment with missing piece)
import java.util.ArrayList;
public class LastFirstWeek5CatMouse
{
public static void main(String [] args)
{
cat sylvester = new cat();
ArrayList<mouse> mice = new ArrayList<mouse>();
mice.add(new mouse());
mice.add(new mouse());
mice.add(new mouse());
mice.get(0).setSex(true);
mice.get(1).setSex(false);
mice.get(2).setSex(false);
while (mice.size() >1
