Archive

Archive for June, 2011

Agentanything.com Clone (taskrabbit.com)

June 17th, 2011 Comments off

Hello,

I need a fully functionall clone of AgentAnything.
I prefer to work with someone who did a similar project before , so if you have please provide a demo or client url in PM.
If you can not meet up with the requirements or do not know the website functions , DO NOT BID!

- Clone of AgentAnything.com
- Design mainly in CSS
- WordPress or other CMS.
- This site is Dutch clients , so a language file should be provided.
- iDeal integration

I Need A Fluent English Forum Poster For 700 Posts

June 17th, 2011 Comments off

I will pay you 0.2 USD per published post/thread with almost 25-35 words.

If you don’t have an fluent English, kindly you don’t do bid.
You do bid for 700 post /thread.

Confidentualiy. Participation. And Service Proposal

June 17th, 2011 Comments off

I need 3 things:

1) Confidentuality Agreement.
This will be used for a business. It will generally state that all information passed between the company and the client will remain confidential on both halfs. It should also state something about the safty of the service provider and the client.

2) Participation Agreement
This will generally state that the person is giving us authorization to use their interview on our website. For instance, if we are at an event and decided to do a quick interview with a person, they will sign this form giving us permission to use this interview for commercial purposes.

3)Service Proposal
This will be a contract betweent he company and the client. It will give the service dates, the service being performed, and the price associated with the service. This contract will more than likely be used for on-going service.

These contracts should not be hard. I will give you the necessary information to be used for the business. You will leave space or dashes in te areas that need client information.

Contracts must be professional and detailed.

Data Entry Team Needed For Captcha Work- Long Term

June 17th, 2011 Comments off

I need qualified teams for captcha entry project.
Teams must have 10 or more members.
payment will be every two weeks for the first month which will be increased to every week after the first month.
Teams will be paid at a rate of $1/1000, with a chance of increasing the rate to $1.5/1000 if your team does goods work.
Teams must be able to produce a minimal of 50000 entries per day
Server is Bucks Inc and is faster at night time GMT and works best with firefox/ google chrome.
Before choosing a service provider, i will need all teams to complete a trial period of 1 week just to ensure you can deliver.

ONLY SERIOUS TEAMS PLEASE!!
NO TIME WASTERS!!
MESSAGE ME FOR MORE DETAILS.

THANKS FOR BIDDING

Pofile Desginer For Social Networks

June 17th, 2011 Comments off

I need a Profile designer to design the following profiles for my business:

Facebook
Twitter
LinkedIn
Ning
Xing

You will have to incorporate the logo and other trendy affects that will be appropriate for the business. This job will not take long and does not need to be complicated.

If you have not done this before, then please do not bother bidding.

Astar Pathfinding With Alternate Heuristics

June 17th, 2011 Comments off

Create the Project

Extract the project folders and files from the archive Pathfinder.zip into your project directory. You should be able to open the solution file (.sln) to start VisualStudio.

Run the program and examine the output. it should show one red near the top of the screen and one green at one near the bottom

Modify the Application

There are several changes that need to be made, including writing event handling code for the new menu items, creating new heuristic functionality, keeping track of and displaying) the number of nodes visited during an AStar search, and modifying the window size to accomodate the new output.

Create New Heuristic Functionality

In the AStartHeuristicPolicies.h file,

add an enumerated type for the new heuristic types just below the last #include statement:
enum HeuristicType {Euclid, DistanceSquared, Manhattan};
add an external declaration for a new global variable to store the current heuristic type:
extern HeuristicType g_heuristicType;
modify the method Heuristic_Euclid::Calculate() so that it will caclulate either a Euclidean distance, a distance squared or a Manhattan distance based on the value of the global variable g_heuristicType
you may also want to change the name of the Heuristic_Euclid class to just Heuristic since it may calculate other non-Euclidean distances
New Menu Item Event Handling Code

In the maincpp file,

add a declaration for a new global variable to store the current heuristic type:
HeuristicType g_heuristicType = Euclid;
in the WindowProc function in the code for the WM_CREATE message, add a statement to initialize the Euclidean Distance menu item to checked:
ChangeMenuState(hwnd, ID_HEURISTIC_EUCLIDEANDISTANCE, MFS_CHECKED);
in the WindowProc function after the code for IDM_VIEW_TILES, add a new case with event handling code for the Euclidean Distance menu item:
case ID_HEURISTIC_EUCLIDEANDISTANCE:
// update the menu by checking this option and unchecking the others
ChangeMenuState(hwnd, ID_HEURISTIC_EUCLIDEANDISTANCE, MFS_CHECKED);
ChangeMenuState(hwnd, ID_HEURISTIC_DISTANCESQUARED, MFS_UNCHECKED);
ChangeMenuState(hwnd, ID_HEURISTIC_MANHATTAN, MFS_UNCHECKED);
g_heuristicType = Euclid;

g_Pathfinder->CreatePathAStar();
CurrentSearchButton = ID_BUTTON_ASTAR;

break;

add two more case statements similar to the previous one for the DistanceSquared and Manhattan Distance menu items (the exact naming for the resource identifiers ID_… for these can be found in the resource.h file)

Keep Track of Number of Nodes Visited

in the file GraphAlgorithms.h, in the Graph_SearchAStar class add a data member to keep count of the number of nodes visited:
int m_NumNodesVisited;
in the method Graph_SearchAStar::Search(), initialize the m_NumNodesVisited to zero and increment this variable everytime the PriorityQueue’s insert method is called
in the PathFinder class add a data member to keep count of the number of nodes visited:
int m_NumNodesVisited;
in the PathFinder::CreatePathAStar method, store the number of nodes visited from the Graph_SearchAStar class after it has be constructed
m_NumNodesVisited = AStar.m_NumNodesVisited;
in the PathFinder::Render method, change the code that displays the search time to add code that will also output the number of nodes visited:
if (m_dTimeTaken)
{
//draw time taken to complete algorithm
string time = ttos(m_dTimeTaken, 8);
string s = “Time Elapsed for ” + GetNameOfCurrentSearchAlgorithm() + ” is ” + time;
// add the visited node count to the output – ceh
s += ” nodes searched = ” + ttos(m_NumNodesVisited) + ” “;

gdi->TextAtPos(1,m_icyClient + 3,s);
}

Modify the Window Size

In the file Constants.h, you can modify the width and height of the client window to accomodate the additional output.

Run the Application

Rebuild and Run the modified application.

Create a Spreadsheet for the Results

Run the program. Record the AStar results for each heuristic in an Excel table like this:

Heuristic Cost Elapsed Time Number of Nodes Visited
Euclidean Distance
Distance Squared
Manhattan Distance

Create a bar chart of the results in Excel.
Add a comment to the cell with the lowest time, briefly explaining why that heuristic is quicker than the others.
Include this chart in the archive you submit.

Psd – Xhtml/css With Jquery Elements & – Quick Turnaround

June 17th, 2011 Comments off

Need a PSD -> XHTML/CSS with Jquery elements & Cufon

Quick Turnaround – max 8 hours

Should be W3c Valid with Clean Commented Code.

All images must have Alt attribute
All images must have width and height
All links must have Title attribute
Content area DIV should have a minimum height so that the page layout isn‟t broken if minimum content is provided

Should be Cross Browser Compatible :
IE: 7 and onwards
Firefox: 2.5 and onwards
Chrome: 6 and onwards
Safari: 4 and onwards

Budget – 10-15 USD

*** REMEMBER Quick Turnaround – max 8 hours ****

I Want Content To Be Written For My Website

June 17th, 2011 Comments off

I have a seo website i want content to be written for that the site contains 6 to 7 pages so let me know what you can do i want 300 to 350 words per page.

Search Engine

June 17th, 2011 Comments off

I need a programer with strong Search Engine development experience.

I want to create a classified’s search engine. Basiclly a search engine that will pull listings from multiple classified sites such as craigslist, backpages etc… and make them all searchable from one interface.

Users should be able to create a free account and save searches that will email new results to their searches daily or weekly depending on user preference.

Assume starting out there will be less than 10 classified sites that we will agregate listings from.

Search interface and results should be clean and simple like google and I will need the ability to include adwords advertising at the top and/or side of the search results. Search needs to be location aware as well, so I can include a zip code to narrow my search results.

Search will be US only to start.

Prefer PHP and MySQL

Fiverr Website Concept Clone

June 17th, 2011 Comments off

I am looking for an experienced programmer to replicate (or close to) the Fiverr.com website. The concept approach will be pretty much the same, where people can list things for a certain price that they will do.

The concept will be that anyone can sign up to use the site for free, and will have the ability to place something for sale, product or service – where they will get 80% of the sale value upon completion – 20% retained by the site owners.

The site needs to be “SECURE” with no potential holes… so convince me which way you will build it and why it is the best solution.

To see exactly how it works, please view the fiverr.com website.

I would like to have the site slightly more modern than the way it is now, and I am open to suggestions at the point of application, to see exactly what you think, and what you consider to be a good site.

********************
Please do not send me applications unless you offer something special, for example: design (something you have done which is of great value) – knowledge (something you have seen which you think would be a good visual model)

If anyone sends a message saying “ready to start” I will delete it immediately. Give it some thought, add something special – and the rewards long term are excellent – for the right person.

Monthly Web Design Contract

June 17th, 2011 Comments off

Looking for a web design team to create simple web sites (typically 1-2 pages) and provide monthly updates to those sites if necessary.

The contract is long term and pays a flat monthly fee of $200 USD.

The workload is light but we need someone who can turn around changes quickly. You’ll be working within a team environment and communication is important.

As our company grows we will take on more clients and will increase the monthly contract as the work increases.

Logo Design

June 17th, 2011 Comments off

I need a logo for my client website chance-pe-dance.com.

Logo should be bollywood style. Should be funky.

No Escrow. Client Satisfaction is important.

Example attached.

Designer Needed

June 17th, 2011 Comments off

Check carefully description

To win your entry has to include our hummingbird logo and the word Freelancer.com in your design(s). The freelancer.com media kit is attached to this brief and contains the hummingbird logo.

We will be regularly monitoring the entries to ensure they are appropriate and providing feedback along the way.

If you use additional images, fonts and other materials, please make sure you can legally use them!

Enter as many times as you want. There’s no limit!

Use any colour you want in your shirt, but please use our corporate colours for the logo, which are these:

Pantone Process Blue C
C: 65 M:55 Y:52 K:27
R: 0 G:147 B:208
Hex: #0093D0

Pantone 425 C
C: 100 M:10 Y:0 K:10
R: 95 G:96 B:98
Hex: #5F6062

Good luck! We’re excited to see what you come up with!

Note:-Don’t submit your previous work experience i needed some design as per my requirement and description please don’t waste my time and your time asking give me bid won etc etc

Design the logo as per my description and if i like it you will be get paid

file to submit JPG files only….

Samples attached check it….

thanks

Logo Design 3

June 17th, 2011 Comments off

I need a logo for my client website chance-pe-dance.com

I need funky logo.

Please send em few samples in that i will select good one.

Create A Website For A Printing Company

June 17th, 2011 Comments off

I own a Party Store and our printing equipment can create several different types of products. I would like customers to create, design and order these products on-line. Please review the site www.esigns.com – I would like my site styled with very similar features. I need Admin control that will enable me to create categories, change page content, add templates, fonts, clipart, etc. I also want SEO controls and reporting capabilities. I will need the usual extra pages like FAQ, Contact Us , About Us, Testimonials, etc. – or the capabilities of being able to create these pages using a Page Editor.

I am concerned about the back-end portion of this site especially the outputted data. In other words, using the above referenced site, when a customer designs a sign and completes the checkout procedure what do I get? How is the customers sign-design data handled – I need to know what are my options in regards to the type of file that is created. The ripping software can only accept certain types of file formats/data. I currently use Corel Draw X5 for my sign designing software. Also when I need to create a sign template to be used on our new site – I would like to use Corel Draw – or what type of file format is needed in order to upload to the site your creating and still allow the customer to make changes to the template.

I will be taking credit card and PayPal payments. You will need to be able to integrate payments with my service providers.

I expect a fully functional site with all the “Bells and Whistles” in Admin control and SEO functionality. With your bid I will also expect a proposal of what you will be doing and an understanding of how the output will work with my printing hardware and software. I will deposit the funds into escrow when the bid has been awarded. If milestones are needed we can discuss later. I also expect that you will be assisting in the “Go Live” process with the server techs.

Thank you for considering my project!

I Need An Annimated Banner

June 17th, 2011 Comments off

Must be a .gif file/ I need it to look like similar to this: http://extremepeptide.com/images/468×60.gif

Something that catches the eye. I need a couple of pictures of some things in the gif and maybe some water effects and a shark. The product name is related to a Shark or Whale.

Simple Upload Cms

June 17th, 2011 Comments off

I have a small project where I need a cms for an existing website.

The user should be able to login through a login system and after that he/she should be able to upload photo’s in categories which are selectable.

The photo’s should be resized automatically, depending on the potrait view or landscape view, a specific height or width should be set accordingly.

after an upload, the user should also be able to select where to set the thumbnail preview (selection area from the cropped uploaded image ) I would prefere a jquery uploader or something. something with visual feedback.

I need this to be done today and for the one who can finish this today i’ll pay + bonus

Upgrade User Account – Ubercart / Drupal

June 17th, 2011 Comments off

We have an existing ubercart site with a single admin user (when logged in they get the admin dashboard). We have another user account that needs to be upgraded to this same access level.

Can provide DB and ftp access, but need this change made a s a p.

THANKS.

Eye Of Texas Private Investigation

June 17th, 2011 Comments off

A simple small business web site with contact info and basic coverage of services rendered , Basically investigating Bar girls and Foreigners for absentee clientele . Hom3 page a brief description of services and biography , Contact page with contact info .
Will be writing this out today ,,

Convert To Vector Image For Print

June 17th, 2011 Comments off

Hello,

I have one PSD and one AI file. I need to convert them to one color vector AI files that are print ready. The files are attached.

Please let me know if there are any addition questions.

Pl Wp Theme

June 16th, 2011 Comments off

Private job… wordpress theme as discussed.

Immediate Start – Upload 20 Products To Magento

June 16th, 2011 Comments off

Hi,

I have a package of products (20) to be uploaded to a Magento website. It will need to be done manually.

Each product has an image that may need to be resized. Some of the products have a PDF file that needs to be linked to within Description field as well.

Magento experience a must.
Immediate Start – must be completed today.

I can pay $25.

Thankyou

One Page Css Plus Add Design Elements 2

June 16th, 2011 Comments off

DO NOT BID UNLESS YOU CAN START AND COMPLETE SAME DAY.I WANT TO HIRE SOMEONE NOW. YOU MUST BE A PERSON WHO PAYS ATTENTION TO DETAIL. IF YOU HAVE 0 FB THIS MIGHT BE A GOOD STARTING JOB. I UNDERSTAND HOW CRITICAL HAVING FB IS ON SL. HELPS GET FUTURE JOBS WITH EASE. I GIVE GREAT FB AND HAVE HELPED MANY NEWBIES GET STARTED.

This job involves improving CSS and adding design elements and one javascript snippet to one page.

The page is http://bit.ly/mPXtEi

See attached page to see what elements need to be added to page. Compare above link to attachment named open.png.

Next:

If you login viw FB or twitter and then click the ‘design button’ at the top you will be on /settings/design/. This pages design can be customized. I want /settings/design/ to mimic the look of home.php so users can see what they are designing. So when user logs in and clicks design this page /settings/design/ will mimic home.php. Right now /settings/design/ does not show user what home.php looks like.

Create design editor buttons like editor.png attachment. This is just example. I am open to however you want to do it. The point is to have inside of box to show hex color.

Newsletter Template

June 16th, 2011 Comments off

Make a newsletter template in HTML

Logo Design For Website

June 16th, 2011 Comments off

Hello,

Hope everyone is feeling good and having fun today.

So we need a logo for a travel agency website.

Main focus of this agency is Extreme sport adventures in a country called Lithuania.

Here is a test website it’s going to be on so make sure it fits.
http://xguide.redwebsiteprovider.com/

We want to replace the current logo you see there now.

Show us what you’ve got and have a wonderful day.

Best Regards,
Richard A.

Sns Platform

June 16th, 2011 Comments off

In need of an IT firm able to build a SNS platform. High standards are required as high is the complexity.

One Page Css. Add Design Elements. Some Js

June 16th, 2011 Comments off

This is a repost. I hired someone from SL last night and they didn’t do the job so I need someone asap to finish it.

This job involves improving CSS and adding design elements and one javascript snippet to one page.

The page is http://bit.ly/mPXtEi (which the last guy messed up) needs to look like the attached image.

See attached page to see what elements need to be added to page. Compare above link to attachment named open.png.

Next:

If you login viw FB or twitter and then click the ‘design button’ at the top you will be on /settings/design/. This pages design can be customized. I want /settings/design/ to mimic the look of home.php so users can see what they are designing. So when user logs in and clicks design this page /settings/design/ will mimic home.php. Right now /settings/design/ does not show user what home.php looks like.

replace /design/ page current color picker w/ http://www.dynamicdrive.com/dynamicindex11/colorjack/index.htm

Starnc

June 16th, 2011 Comments off

I have a site that was developed using MS FrontPage that needs to be converted to Joomla 1.5. The current site has a fairly simple layout, with 3 columns under full width box that contains a masthead graphic and a menu with 20 buttons.

The various parts of the site include a contact/feedback page, an indexed list of articles with introtext displayed, an indexed list of speeches with introtext displayed, a page links to other sites, upcoming events announcements and a few other minor miscellaneous bits.

Install Joomla Jwplayer Advance Module

June 16th, 2011 Comments off

I need someone who can install and configure the JW Player Module Advanced works with Joomla 1.5 http://www.longtailvideo.com/addons/modules/99/JW-Player-Module-Advanced-%28for-Joomla%29

We have 5 players on our using mrss playlist that will need to be replace with the module we need you to set up the jw player configure html5 fallback and download fall back..you will need to conver the videos to mp4 if needed Multiple Playlist – Flash Mode :

* Appears with a dropdown List under the player.
* Assign a content ID to a playlist.
* Playlist Titles for Dropdown List choice (adress of the link, clean name of the file, or title of the rss link using curl library).
* Length Max of Playlist title for Dropdown List.
* Dropdown Style choice (defaut or using css class).

Click to watch the player in a Pop-Up

http://www.joomlarulez.com/example-jw-player-module.html

Backlinking Project

June 16th, 2011 Comments off

I am looking for someone to generate do follow, keyword anchored backlinks to 3 of my websites to get them to the top 6 of the google results for there respective keyterms (which will be provided by me). The backlinks should be white hat, permanent, do follow and cannot be from link farms, objectionable sites (gambling etc). The end result should be increased ranking for my sites. The project can be done in 30-60 days. New bees are welcome. The sites and the respective keywords for which I want them ranked are as follows:

1)lasvegascheaphotels.blogspot.com
las vegas cheap hotels
Electrolysis Hair RemovalElectrolysis Hair Removal
las vegas strip hotels
las vegas budget motels

2)bestweight-losspills.blogspot.com
weight loss pills
best weight loss pills
best fat burning pills

3)hairelectrolysis.blogspot.com
hair electrolysis
electrolysis hair removal
laser hair electrolysis

All of the above sites have had long standing SEO and have standing/PR in the google serps – they just need a push. I am not sure how many links would be required to get them to top 6 of the google results. That is something you will need to figure out.Lower bids welcome due to limited budget. Outrageous bids will be disregarded.
let me know if you have any questions
thank you

Video Creation

June 16th, 2011 Comments off

Im looking for someone who can create videos similar in quality to this:

http://www.youtube.com/watch?v=Um63OQz3bjo&feature=player_embedded#at=17

You will be provided the audio file and script, all you do is create the video.

must provide examples of your best VIDEO CREATIONS.

mention the word “texas” in your bid. no need to be exact in your bid, the most important part is the quality of your videos.

Translate From Central American Spanish To Us English

June 16th, 2011 Comments off

We have 211 sections of text that are from one to three sentences long that needs to be translated from Spanish to English.

These are “tasting notes” for wines.

This needs to be done on 6 to 8 hours.

The notes are in an excel file with other info. You will need to paste the translations in to the excel file in place of the Spanish text.

Here is an example:

Lanzamiento de color p

Appointment Quest / Genbook Appointment Script Clone

June 16th, 2011 Comments off

I need an online appointment scheduling program that is web based and is customizable with 100% PHP Source Code. The project will be a subscription site for customers to pay a monthly subscription and they will receive the online appointment scheduling system. The system will need all the features that genbook.com has. It will need to have a clean and easy to use interface and I am gearing this around the beauty, health and wellness industry.

Fix Website

June 16th, 2011 Comments off

I had my site edited by a designer a while ago, and now all of a sudden the templete has reverted back to the original. Please PM me for website URL – it is a wordpress theme site and here are the changes i need redoing –

1. Remove “Latest Articles” from footer of site so my banner ad fits.

2. Align images that are in widget area and in the home page boxes to be in the centre.

3. Remove the shadow popup on the slider images on the home page.

4. Change the colour of the submit listing packages from blue to pink. I will find the pink colour code and sent it through.

And lastly was the colour of the featured listing boxes. I can provide a screen shot of how they looked.

I need this work completed ASAP

Bigfoot Graphic Design Needed

June 16th, 2011 Comments off

Hello -

I need a Bigfoot graphic for my website.

Size is negotiable but was thinking around
200×200 or maybe a little bigger.

I want Bigfoot sitting down on the ground, leaning
against a tree working on his laptop. If this can
be a good looking digital style graphic great, if that
is too hard, we can do cartoon style image.

I found a partial sample of a cartoon here
http://www.istockphoto.com/stock-photo-11514941-bigfoot-on-laptop.php?st=8dc9ebf

It’s just the head but you get the picture of the entire
body. This will be a happy bigfoot graphic.

Please bid if you have sample and can do this for me.

Thanks

Fix The Website Errors

June 16th, 2011 Comments off

I want my website IE compatible. I need the HTML and CSS fixed and some edits on my WordPress site. The website is already okay, and just needs some edits to make it professional. I will give you list on what I wnat to edit on the site. Most are just small task. Fist task is to make the website with www when you access it. I need someone to fix the errors of this website. http://bit.ly/kBczPl
I will give you the cpanel log in and you will start the work with troubleshooting why I cannot access the admin. When you I try to log in to admin, I am just a subscriber not an admin.
I will reply to you as soon as possible. My budget for this type of job is $50. There will be more jobs available to you if you did well. Someone who will accept this job for $50 with good rating will get this job.

Ipod App Programmer

June 16th, 2011 Comments off

You are going to need to have a basic understanding of some specific programming languages, including Objective-C and Cocoa Touch for example. You will also need to learn how to use specific tools such as Xcode and interface builder.

You are also going to need to have a background in software development

Proficient at programming in Objective-C, Xcode, the Apple Software Developer Kit, Cocoa Touch and so on.

Professional Business Logo & Card Design

June 16th, 2011 Comments off

Hello –

I need a logo design for my business, cards, website, & Flyer.

Unlimited revisions if needed.
Ownership rights
Delivered in PSD, JPG, and PNG formats.

I really like clean, sharp, professional,
and glossy political, or governmental looking logos.

The logo will be for my new business name
“Metal Roofs of Texas” and my web domain is www.mytxroof.com.

Thanks

Create WordPress Plugin

June 16th, 2011 Comments off

I need a WordPress plugin created that will add one new page to the WP admin area for managing posts.

The page will be a modified version of the built in post management pages for viewing of Published, Scheduled, Draft and Trash posts. The difference is I need more information shown than the standard manage post pages. Some of this information will come from custom fields in the posts.

The good news for you is that I already have this page finished inside my wp-admin area, but it was made from editing the wp-admin pages. I need it converted to a plugin so that default wp-admin pages are left without changes.

The plugin also needs one “Settings” page that will be used for mapping custom fields to be shown on the custom manage post page.

I will provide a screenshot of the current working custom page in my wp-admin, along with detailed explanation of each field in each column to anyone interested, just ask in PMB.

For the programmer who wins the job you will get access to my test server where the custom pages are being used, so you can see them working and base the plugin on these pages.

Design A Website For Me To Buy Collectibles 2

June 16th, 2011 Comments off

I am in a business of

Bear