Archive

Archive for February, 2010

Chatroulette Spinoff

February 23rd, 2010 Comments off

I need this job done in 2-3 weeks maximum. Maximum quality, bandwidth estimates, and perfected GUI should be coded. I need to handle maximum traffic and keep bandwidth low. $300-$400 offer The GUI must be functional and attractive. Administrator log in interface and “report abuse” required. I want the site geared toward college students.

Migrate WordPress Site

February 23rd, 2010 Comments off

Dear Programmer,

I require a talented WordPress professional to migrate all files from one domain onto a new domain.

The migration must be smooth and include all the files from the previous onto the new without any hiccups.

If you are a designer even better, as I may have some work for you.

Programming Project 474815

February 23rd, 2010 Comments off

I need about 200.000 the Email adresses from:
www.nationalevacaturebank.nl

I am interested in other email lists form Nehterlands, Belgium and UK
like Hyves, Netlog

Java Assignment Needed Done

February 23rd, 2010 Comments off

I have a assignment that requires knowledge in java see the attached file for details i need this done in next 6 hours pay is 35.00 for it , there is a book required as well

Zen Cart Database Updated

February 23rd, 2010 Comments off

Need to upload the attached database via MySQL database. The admin portal is CPANEL based.

Website Design And Seo Work

February 23rd, 2010 Comments off

I am planning fora project that I may begin soon. I am currently trying to work out the details with my partner and see if we can come up with a budget for it. The basic idea is a website that will attract people to purchase home security alarm systems (similar to what you would see at www.securitychoice.com). The project would include designing the entire website and the seo along with it. It is important that we do alot of seo work in a couple local ares in the US. The website would have a nice sleek looking home page again similar to (www.securitychoice.com) and a few informative pages along with it. Look over the referenced website and give me a bid for designing the website and the seo work, the complete package. We are starting from scratch so we can do everything synchronized and efficient.

Thanks

Website Error

February 23rd, 2010 Comments off

I have a website running on dot net nuke, I recently changed hosts but one of the modules that outputs content in the right column is no longer working and instead outputs a error. I just need someone who knows about dot net nuke to login and re-insert the module or fix the current problem so the column outputs the content I’ve specified for it.

Private Project For Deepsniti

February 23rd, 2010 Comments off

Hi,

You did a website project for me back in 2007 designing this website:

www.JRWdecks.com

The owners have a new company name and logo
and they want to update the website.

I have attached a JPG of the new logo so you can
see what it looks like.

They also want to change some to the graphic text
on the website and the photos in the Flash animation.

Please respond soon to let me know if can handle
this project and how much you would charge.

Thank you,

Steve Tytler

Great Website For Limo Company

February 23rd, 2010 Comments off

Web Development Opportunity for a Professional Limo Company:

Please follow the terms and conditions and Guidelines before you bid for this Project

- Need a very appealing and professional Website for a Limo Company
(Name of the company will be provided)

-

Flash 2.0 Text Effects

February 23rd, 2010 Comments off

We need a few simple flash effects added to our website. These are text shaping effects.

To see an example Go to http://www.customink.com/lab/#loc-singles. We are not asking you to clone the entire site. We just need a few of the text shaping features. Once you click the link above, then:

add a text

Select it and look for Shape Text features, we require some of the text effects namely:
Curve Up Text
Curve Down Text
Arch Up Text
Arch Down Text
Bridge Text
Valley Text

You will be providing us with the source code in AS2.0 and my developer will take over the codes and embed it in our application, so you need to guide him as well if he needs assistance.

Here are some technical details on how you will have to code the features.

You have dynamic movieclips on stage (Array of movieclip),
inside each dynamic movieclip you have one dynamic text field

Now you will place a dropdown(or 7 buttons for the effects),
when a user clicks/selects the effect, the dynamic textfield(inside that same dynamic movieclip) will change its shape according to the selected effect.

Note: Once the user selects any effect, you can replace the dynamic textfield(remove) and make many dynamic textfields according to effect but all those newly created dynamic textfields must reside inside the parent movieclip.

Here is any example of the code

function filterType1(Type)
{
var TargetText:MovieClip=SelectedObj.maincont_mc.maincont_mc2.txtfield; //The current textfield
var Direction = 1;
var Count:Number = 0;
var XYInc = 10;
var YInc = 0;

var OldFormat:TextFormat=SelectedObj.maincont_mc.maincont_mc2.txtfield.getTextFormat(); //Get the current format of the textfield like font, color etc
var Newformat:TextFormat = new TextFormat();

var TargetColor:Color = new Color(TargetText);
SetColor=TargetColor.getRGB();
var tmpText=TargetText.text;
var half:Number = Math.round((tmpText.length)/Type);
var Mc1:MovieClip=SelectedObj.maincont_mc; //This is the main Movieclip
Mc1.createEmptyMovieClip(“Mc2″, _root.getNextHighestDepth());// This is inside movieclip array that will hold multiple new generated dynamic textfields

var SetWidth:Number=_root.ItemSelected._width;
var SetHeight:Number=_root.ItemSelected._height;

for (i=0; i<tmpText.length; i++) {

Mc1.Mc2.createTextField(“MyText”+i, i+1,i*XYInc, 0, 15, 20);

Newformat.font =OldFormat.font;
Newformat.align =OldFormat.align;
Mc1.Mc2["MyText"+i].type = “dynamic”;
Mc1.Mc2["MyText"+i].embedFonts = true;
Mc1.Mc2["MyText"+i].text = tmpText.charAt(i);
Mc1.Mc2["MyText"+i].setTextFormat(Newformat);
Mc1.Mc2["MyText"+i].textColor=SetColor;

var mc12:MovieClip = Mc1.Mc2["MyText"+i];

var IntWidth:Number = mc12._width;
var IntHeight:Number = mc12._height;
var trans:Transform = new Transform(mc12);
var scaleMatrix:Matrix = new Matrix();

Mc1.Mc2["MyText"+i]._y = YInc*5;
Count = Count+1;
YInc = YInc+Direction;
SkewType = Direction*(.5);
if (YInc == half) {
Direction = -1;
}
if (YInc == 0) {
Direction = 1;
}

scaleMatrix.b = SkewType;
scaleMatrix.c = 0;
scaleMatrix.translate(mc12._x, mc12._y);
trans.matrix = scaleMatrix;
//trace(“TextField["+i+"]=”+Mc1.Mc2["MyText"+i].text);
}
Mc1._width=SetWidth;
Mc1._height=SetHeight*2;
Mc1.Mc2._x=-(Mc1.Mc2._width/2);
Mc1.Mc2._y=-(Mc1.Mc2._height/2);

//Mc1._visible=true;
TargetText._visible=false;
}

//Sample calling of the function
filterType1(2);

You don’t need to follow the above mentioned codes but I suggest this will do most of the job for you.
You can either use a single function or you can create multiple for the effects.

Categories: Flash, Programming Tags: , , , , , ,

Email Advert Or Banner A6

February 23rd, 2010 Comments off

Are you a good advert/banner design

Can you design an advert to be used via email to clients

If yes, look at the attached document and used this as a guide

Send us your sample design today (project is urgent) to be considered as a winner

Advert must be A6 in size and must contain catching logo, colours etc

Budget is between $30 – $100

You must read the attached design and then use it to design yours

1st come 1st serve, the first to send us a good design will be the 1st to be selected

Payment is done via escrow to the winner

Act now, send us your design

Read the attached document also for more information

Website Features Add-on

February 23rd, 2010 Comments off

Existing Website (PHP coded) features need. Mainly for SNS purpose.
for Example:
1. member can drop private messages to each other.
2. member can be followed up.
3. member profile page has a story list showing the stories has been
posted.

There is some more features not listed here.

All these codes should using UTF8 encoding. These change should not change the function of current running API ( for android phone)

Please drop me message for details.

Mt4 Ea For My Math. Strategy

February 23rd, 2010 Comments off

Values:
- Must choose BUY.ONLY or SELL.ONLY Trades
- Lot Sixe === Example .02 Lots (Value A)
- Favor.Pips === Example 45 pips (Value B)
- Against.Pips === Example 90 pips (Value C)
- TP === Example 120 pips(Value D)
- BreakEven === Example when PA is +90 pips (Value E)
- BreakEven.Extra === Example BE+10 pips (Value F)

===== BreakEven is the Only Stop Loss ====
===== No Other Stop Loss ====

- Magic Number – (Value G) === Example MS300- (So it will add a number everytime), so it will be MS300-01, MS300-02, ….

Example Trade:
==============
When BUY.ONLY option is chosen
EA will BUY (value A Lots) at current PA, Example 1.3500

1.3500 BUY .02 LOTS
1.3545 BUY another .02 LOTS
1.3590 BUY another .02 LOTS
1.3600 (Highest High PA, then it goes down)
1.3510 BUY .02 Lots (that’s 90 pips down (value C) from highest PA)

Basically, I will have two accounts and I will do the EXACT opposite at the other account.
(for this example, the other account will SELL.ONLY ALL Trades).

So, BUY.ONLY Account, the EA will BUY every 45 pips PA is up and BUY 90 pips when PA is DOWN
The other account, the EA will SELL every 45 pips PA is Down and SELL 90 pips when PA is UP

I can only afford $60 right now and any help is appreciate it..

Flash Website Template Modify

February 23rd, 2010 Comments off

I have a completed Flash Template for my new website. It came with default text that I need to have modified. I would like to have some sort of galley admin script so I could add and remove pictures from the site.

Setup A Socks5 Proxy Server

February 23rd, 2010 Comments off

We have a VPS server that allows proxies. We currently have Dante proxy software installed and one IP working as a SOCKS5 anonymous proxy.

We ordered 8 more proxies and they are installed on the server. We need them setup as SOCKS5 proxies.

Besides setting up the new IPs as proxies we need full documentation of the process in case we need to add more later.

All the proxies will use IP authentication and don’t need PAM or login authentication.

We’re not committed to Dante proxy software so if you think something works better then we can change.

The server is running Ubuntu 8.10 software.

How To Articles Written

February 23rd, 2010 Comments off

I would like articles written to be posted to my ehow.com account. Original content only please read the guidelines. Posted in the most used areas. All articles must be in the correct ehow form
Please quote per article.

User Upload & Blog

February 23rd, 2010 Comments off

Objective of script:

Allow members to register and upload their pictures to the frontpage of the website immediately after verifying their email address.

Design:
I must be able to design the website using Header Template, Footer Template, and regular CSS Spreadsheet (set background, text, and etc) 900 Pixels wide.

FEATURES:

1.) User registration; (below are the fields)
SELECT IMAGE TO UPLOAD (images must automatically be resized to 100×100)
FIRST NAME
LAST NAME
STATE (State name with State initials should show in dropdown menu)
EMAIL ADDRESS (Email address must be verified before their image is displayed on front page)
CAPTCHA

(Please note. I would like to be able to add a description to each section field when they select it. Similar to how Twitter Registration does.)

(The same email address should not be allowed to upload another picture.)

2.) Images must be shown on the frontpage 8 columns, 6 Rows. (48 Pictures per page. If there is more, a Next link appears, along with page numbers.)

3.) When images are displayed on the front page, their FirstName, Last name Initial, and in parenthesis State Initials. i.e.. Billy James from Oklahoma would show as Billy J (OK) under their picture.

4.) Members must be allowed to delete their pictures. We would like for there to be a page (i.e .. delete.php) .

4a.) User enters their email address and a delete confirmation is sent to their email address.
4b.) Once they click on the “Confirmation Link” both their picture and name is deleted from the database and website.

5.) We would like for members to make a blog entry. We would like to call it

Categories: CSS, MySQL, PHP, Programming Tags: , , , , , ,

Add Fans To My Facebook Page

February 23rd, 2010 Comments off

I’m looking to get around 100k fans for my facebook fan page. If you can do less than 100k then still bi but PM me how many you can give me for your price. I want up to 100k though.

Flash+javascript Mp3 Player

February 23rd, 2010 Comments off

I need to play mp3 files on site using javascript+flash interaction. See example here http://www.thumbplay.com/ at the bottom “TOP MP3 DOWNLOADS” or “TOP RINGTONES” when you click on play button it starts to play and blue progress is showed behind the title and artist links. I need exactly the same solution with such progress behind the picture and links.

Simple Data Entry For Long Ter

February 23rd, 2010 Comments off

We have a newly created Social Bookmarking site. We require a team of at least 5 people who can do random bookmarking on our site so that site looks filled.

We require 50,000 bookmarks by the end of April. This is going to be a long term project so please bid accordingly.

Also to be considered for this job you must submit 10 bookmarks in different categories. And you must vote up the bookmarks already there. You can register more than one users if you want to. The site will not ask for email verification.

Please PM me with your bid and number of members in your team.

The site: http://EmoneyJustFree.com

Bike Images Background Clippin

February 23rd, 2010 Comments off

I’ve got 20bike images need to be clipped.
1. Use photoshop Pen tool to clip
2. Save the clipping Path
Attached image for your reference

20bikes images to be finished within 4days.
Looking for long term Image clipping partners.

K2 Templates

February 23rd, 2010 Comments off

I need three new temaplates designed for K2. This is a CCK for Joomla!

The designs will be forwarded to the successful candidate. The work will be to use the existing K2 layout and design three new looks from this.

The time line for this is three days.

Categories: CSS, MySQL, PHP, Programming Tags: ,

Drupal Theme Css Fix

February 23rd, 2010 Comments off

Need a css fix in drupal theme where the dropdown menu is going behind flash in IE 6.0 and IE 7.0

the bidders should know about drupal theme and css

check pyssum.org as the project site. click on enter site to see the bug page.

Thank you..!

Whmcs Module

February 23rd, 2010 Comments off

I need someone to create a custom WHMCS module that reports how many tickets each staff member answered. You must be familiar with WHMCS to do this project.

Simple Logo

February 23rd, 2010 Comments off

Hi,

I have a very simple job, hardly 10-15 min for any professional.

I have already designed logo, jut want that in 3d look, I need it now within next hour, so Please bid if you can do it now.

Only Serious and Professional Programmers.

Redesign Update For Website

February 23rd, 2010 Comments off

ISOL only

Model Photographer Site

February 23rd, 2010 Comments off

Hi, I have a site, with a php script, it is very similar to another webiste onine. I need a programmer to change the look and feel, and make it look different, change icons, change text for buttons, some layout changes. I also need different pricing plans for paying members with different options. I want my site to function more like modelmayhem.com in regard to paying members, see their site and upgrade options for details. my site is modelhighway.com, very similar, just need to be able to have options for members that are free, to just be able to upload 15 photos, payment plan 2, a certain number of albums and photos, and so on for as many plans as I want and ability to add additional. would like my add space to be easily changed within my admin panel, rather than having to edit seperate pages html to place the code. overall, want a look and feel like facebook. main page, would like differnt look. I think what I am asking for is pretty simple, a few hours work, my skills are not up to par for this, so I need someone to do it. take a look at my site, and modelmayhem and if you can do it, place a bid.

Oscommerce/magento Website 2

February 23rd, 2010 Comments off

I already have the core design/template in HTML which will require basic modifications. I am looking for the development of an oscommerce or magento based website to be built into the design. I have detailed requirements for:

- home page
- product listing page (where more than one product will be listed)
- product page (where one product will be listed)
- product page with customized fields (where one product will be listed)

I will send these details and a live link of the existing website and design for bidders I consider for the job.

Details:
- SEO friendly URLs (www.Website.com/name-of-web-page.html)
- ability to set meta tags
- WYSIWYG editor for all pages
- Sitemap compliant for google
- Integration with paypal
- Installation and configuration of Post Affiliate program (I will provide licensed copy)
- admin panel to control all
- blog page (can be a wordpress installation with the design conforming to the rest of the website)

Project requirements:
- Can be done in Oscommerce or magento (please indicate which platform, if any you intend to utilize).
- The entire project cost can be escrowed but no funds will be released until everything is 100% complete, tested and working. You can check my reviews/ratings here and on three other freelance websites. You will get paid IF everything works as agreed.
- All rights, software, code, etc. will remain mine and none can be displayed (as a portfolio item or for any other reason), distributed, licensed, sold, etc. to others.

This shouldn’t be too complicated for any individual or group with experience. Please bid appropriately both the time you expect for completion and the cost for completion. This job needs to be completed on time, with no mistakes and clean code.

Please post any project that you think is similar, explain why, indicate what the website was developed with (e.g. oscommerce, magento, etc.) and if possible, provide access to similar admin panel so I can judge the quality and structure of work.

Budget is firm at $300. Bids above $300 will be deleted, regardless of your portfolio or experience – I know this job can be completed well for $300 or less. Need complete by February 21st.

Thank you!

Seo Work For Windows Site

February 23rd, 2010 Comments off

Hello,

I need some seo work done to get my site on the first page search results for keywords phrases

Important. I will expect that this will take about 3 or 4 months to accomplish this goal.

I will only make payments at the end of each month when an excel file is submitted showing what has been done and what results we have accomplished.

I will do direct payments at the time. I will not hold the money in escrow at the start of the project.

So please be advised of those terms so that if you dont agree with them you dont need to submit a bit.

However, you can see by my feedback that payment is no issue.

These are the keywords I am looking for results in. I have alerady done lots of internal seo so the focus is really going to be on minor internal seo and mostly all external seo.

I am looking for whitehat seo.

windows 7 wallpaper
windows 7 wallpapers
windows 7 screenshots
windows 7 news
windows 7 themes
windows 7 backgrounds
wallpaper windows 7
windows 7 theme
windows 7 how to

Pligg Quick Submit

February 23rd, 2010 Comments off

Pligg has a 3 step submission process. i disabled url required and disabled recaptcha and set story length to be 0 so only title can be posted. I need the title and tags with a submit button on the home page so the user can submit on the same page. after submission the url must redirect to home page. i know there is a module out there but all that does is take you to step 2. that is not what i want. i need the story posted on the home page in one step.
IMPORTANT: you must show me a demo online for me to make the payment

Convert Pdf File To Word Docum

February 23rd, 2010 Comments off

I have a password protected pdf file i want to convert it into word document without sacrificing the fonts and pictures and format layout once you convert it from pdf to word document i dont want any formatting to be messed up or jumbled up

Website Content 3

February 22nd, 2010 Comments off

I need original content for my website.

1. Must be perfect American English
2. Free of spelling, punctuation, and spelling errors.
3. Must pass copyscape as original content
4. Would prefer a writer who has experience writing about technical
products because this will be content pages for a widget distribution website.

There will be a total of 11 pages.

More Product Descriptions

February 22nd, 2010 Comments off

I need more product descriptions composed for my e-commerce site. Native English speakers only please. Bid for sets of 20 descriptions, each 35-50 words in length. After bid selection I will provide website address and guidance.

Gaming Site

February 22nd, 2010 Comments off

Hello,

I need to do a clone of the site below. I think you should be able to use a cms like drupal or joomla that will have most of the functionality already to go. It should also allow for users to signup and create their own blog. There will be a guides section, faq section, codes and cheats, and also the message board. Users can add to faq, submit reviews, cheats, etc. Should be a simple project.

it will be a clone of http://www.gamefaqs.com/

User File Upload System

February 22nd, 2010 Comments off

Hi,

We need a developer to build or implement a simple user file upload system. We are a development company, and need an easy way for our clients to upload files to folders on our FTP server without using FTP software. (ex. images, pdf files, word docs, many file types)

Should allow users to create folders and upload files and groups of files into a directory on the server we have assigned them to.

Should have admin login to add/manage users and passwords.

If you have an existing system, great. Please send samples via PMB.

If you can do this using simple code and using a template that exists already for example on themeforest.net, that’s fine too.

Need asap.

Myowncanvas Finish Code

February 22nd, 2010 Comments off

- Make custom size pricing work
- Create shopping cart for this
- Admin should be able to print an order PDF to send with shipment once ordered that also has a bar code with order so that we can scan bar code to pull up the FedEx shipping info and then print FedEx shipping label.

Simulator Flash Game

February 22nd, 2010 Comments off

I am looking for someone with experience creating flash games

I need a simple game/simulation created from scratch in flash, all the artwork will also need to be created.

Please send me all the flash games you have done in PMB so I can check them out.

Also please have experience with interfacing to a php backend via XML feeds and blowfish encryption.

Interview Transcriptin

February 22nd, 2010 Comments off

I am looking for someone to transcribe five 15-minute interviews by tomorrow (Tuesday 2/23/10) at 5 pm. The interviews are between only 2 people per interview and are very easy to understand. The entire transcription should not require much time.

Contact if interested and will discuss payment via e-mail. Thank you.

Data Extract From Image & Pdf

February 22nd, 2010 Comments off

I’ll provide you about 90 links.

There is one image and one PDF file located in that each link.

Your job is to type certain piece of information from image and PDF in excel file.

Easy task.

From the image I may require about 6 or 7 data. (Simple words)
From the PDF files i may require few data. (Simple words like ID number, etc.,)

I need flat rate bids only.

Those who can finish this within 3 hours maximum only apply.

No time wasters please.

Web Scraping Software

February 22nd, 2010 Comments off

This is an easy project for the average programmer. I am looking to have a marketing research tool created.

This tool will take a domain name and perform a domain name search using the Site Explorer tool (siteexplorer.search.yahoo.com) from yahoo. The idea is to find all of the webpages of a website that has been indexed by yahoo. When searched yahoo returns 1000 URLs of the website that has been indexed by them. The tool also provides a TSV file that can be downloaded.

This program will need to automatically perform the search and then download the TSV file that is provided.

Once the program grabs the TSV file it needs to pull all of the URL information from the file. There will be other information inside the file but I need the program to extract only the URLs inside the file.

The program must use proxies because only a certain amount of searches can be done from the same IP address.

The program needs to be built for maximum speed as well.

Once the URLs are gathered the URLs will be passed on to a CSV file. There will be a template provided that shows the information that should be used in the CSV file.

The program must be a desktop application and compatible with windows.

The program must be in wizard format.

The information that is put into the wizard will be the information that is passed on to create the CSV file in the last step.

Once the URLs are gathered from the TSV file there must be an option to save the list of URLs.

The program must be able to perform these searches for multiple websites, up to 1000, at one time.
Meaning I want to be able to load a list of up to 1000 websites and the program will perform this action for all of them, starting with the first one, then the second and so on.

The last step is the generation of the CSV files and there must be an option to save them to the computer.

The program needs to search without the http://www. , which means it will only use, for example, about.com, not http://www.about.com. The software does not need to add the http://www. To the URL, it just needs to do the search the way the URLs are entered.

Bear