Code Transfer And Design Update
Hello,
I need to transfer my code here http://bit.ly/e8adXh from one server to another. Then I need to update the css. I already have the css files.
Hello,
I need to transfer my code here http://bit.ly/e8adXh from one server to another. Then I need to update the css. I already have the css files.
I would like to have a website built for a new Defense Contracting company.
I have some examples of websites that I like and I would like the following features
1. Basic Company info
2. E-mail based on our company name
3. Employee Partner only Login
4. Security for the website using industry standard best practices
5. An explanation and example of best programs used to update and modify the website once it is complete
Thanks
Im looking for someone who knows how to make a ning social network site.
I need a website on frontpage. i need 2 pages plus a book us for with basic info
Hi there,
I am looking for somebody to help me configure a linux/apache server that doesn’t have a lot of resources and needs to be running optimally.
I have a very small budget, and my needs aren’t complex but I am sure there will be ongoing work as a result of your good work.
If you know php, mysql or other languages that is a plus. please state your other skills in the bid.
I have an existing website.I just want to duplicate it to another domain(with different name) and change the company name,logo and pictures.
1. Change Wlux.us to wlux.com as main page about 2 hours Yes
2. Design of website will stay the same (see file sample)
3. Change all the corrected text (from file) 3-4 hours Yes
4. Add Spanish language (from file) 8 hoursYes
5. Add payment system 16 hours. registration included and all data about payments and users will be stored in database Yes, we already have paypal accunt, can it be used for website?
6. Make certificate clickable so when I click on it, it gets bigger and readable 2 – 2.5 hours Don`t Need!
7. Build interactive map of Wlux US dealers ( so far there will be only one in Illinois) 4 hours Yes
Project is already complete. SL is being used to send payment. Please invoice me.
John
I need someone who can imeplement aac+v2 audio streaming in haxe.
I have a working implementation on OGG and I need aac now.
Best regards!
I need 1,000 facebook likes on my new fan page. It is vegan and vegetarian focused.No bots, only real people, real profiles. And I will only release second half of payment if a certain percentage of the people you added remain liking my page for a month (to ensure that you don’t just add and unlike immediately.)
Please see attached pdf file for project description, which contains urls to 2 videos…
The 2 videos explain the entire issue. Please watch videos.
NOTE: if you watched the videos, then you know that this should be an easy job for a talented programmer.
I’m looking to integrate a Magento shopping cart with Zombaio payment processor. Looking only for those with experience in both
I’m conducting research to see if you may have already developed a stand-alone application that does something similar to the following:
Application Description: The application searches Amazon, Ebay and possibly other sites and returns all the information about the product stored in that sites database. You may choose which regions to search (USA, Canada, UK, etc.). Primary search fields are by UPC, EAN, Product Name or Brand/Manufacturer.
We would like the application to return specific key information along with the ability to have the application return he raw XML data from the data database
Key information inlcudes
UPC
EAN
ASIN (for Amazon)
Manufacturer Part Number (MPN)
Model Number
Item Description & Features
Product Image URL
Current Sales Ranking
Raw XML of all product data (optional).
The application would read from either a text/excel document.
For the Brand/Manufacturer search, we would like to be able to conduct a wildcard search that pulls down a list of all products by the manufacturer with the item name, upc, mpn, ASIN (if amazon), sales ranking, etc.
Please let me know if you already have something already developed and it’s functionality.
Need some help with college physics questions. A piece of cake for someone with a little knowledge on physics. About 30 questions….”
I have a completed website which is 100% flash based.
It is a customized template monster template.
Everything is fine except the summary text that shows up in Google is the “Lorem ipsum dolor sit amet” fake text.
I need for you to find any instances of this text within the flash and replace it with the desired site description.
I have the FLA source file.
I want to receive back a complete, compiled, uploadable version.
I will upload by FTP, and will not give you access to the server, only the FLA source and SWF compiled version.
Need someone that can read and speak english well to do some easy market research tasks.
Please have available at least 3 hours of free time to work daily. Sometimes I need a lot of work sometimes less, but don’t want someone that can only be available 1 hour a day or less.
Task entails simple site research and sending me back information on sites, max limit of 2 hours for the task because this is a test project for similar work.
Hello!
We’re looking for a Great Web 2.0 and APP Interface Web Designer!
If you want to join an International team, and, work Freelance with secure and fast Payments, and, your Design Skills are really Attractive: We’re looking for you!
Feel free to reply this ad with your portfolio.
PS: This message is also opened to web design agencies with Excellent WebDesign Skills and App UI design.
Hi i need some one to write me a License & Usage Agreement for my new site. Heres a example of what i need. http://www.photobacks.com/license/
Create an inheritance hierarchy that a bank might use to represent customers’ bank accounts. All customers at this bank can deposit (i.e., credit) money into their accounts and withdraw (i.e., debit) money from their accounts.More specific types of accounts also exist. Savings accounts, for instance, earn interest on the money they hold. Checking accounts, on the other hand, charge a fee per transaction (i.e., credit or debit).
Create an inheritance hierarchy containing base class Account and derived classes Savings-Account and CheckingAccount that inherit from class Account. Base class Account should include one data member of type double to represent the account balance. The class should provide a constructor that receives an initial balance and uses it to initialize the data member. The constructor should validate the initial balance to ensure that it is greater than or equal to 0.0. If not, the balance should be set to 0.0 and the constructor should display an error message, indicating that the initial balance was invalid. The class should provide three member functions. Member function credit should add an amount to the current balance. Member function debit should withdraw money from the Account and ensure that the debit amount does not exceed the Account’s balance.
If it does, the balance should be left unchanged and the function should print the message “Debit amount exceeded account balance.” Member function getBalance should return the current balance.
Derived class SavingsAccount should inherit the functionality of an Account, but also include a data member of type double indicating the interest rate (percentage) assigned to the Account.SavingsAccount’s constructor should receive the initial balance, as well as an initial value for the SavingsAccount’s interest rate. SavingsAccount should provide a public member function calculateInterest that returns a double indicating the amount of interest earned by an account.
Member function calculateInterest should determine this amount by multiplying the interest rate by the account balance. [Note: SavingsAccount should inherit member functions credit and debit as is without redefining them.]
Derived class CheckingAccount should inherit from base class Account and include an additional data member of type double that represents the fee charged per transaction. CheckingAccount’s constructor should receive the initial balance, as well as a parameter indicating a fee amount. Class CheckingAccount should redefine member functions credit and debit so that they subtract the fee from the account balance whenever either transaction is performed successfully. CheckingAccount’s versions of these functions should invoke the base-class Account version to perform the updates to an account balance. CheckingAccount’s debit function should charge a fee only if money is actually withdrawn (i.e., the debit amount does not exceed the account balance). [Hint: Define Account's debit function so that it returns a bool indicating whether money was withdrawn. Then use the return value to determine whether a fee should be charged.]
After defining the classes in this hierarchy, write a program that creates objects of each class and tests their member functions. Add interest to the SavingsAccount object by first invoking its calculateInterest function, then passing the returned interest amount to the object’s credit function.
Sample Output:
account1 balance: $50.00
account2 balance: $25.00
account3 balance: $80.00
Attempting to debit $25.00 from account1.
Attempting to debit $13.00 from account2.
Attempting to debit $40.00 from account3.
$1.00 transaction fee charged.
account1 balance: $25.00
account2 balance: $12.00
account3 balance: $39.00
Crediting $40.00 to account1.
Crediting $65.00 to account2.
Crediting $20.00 to account3.
$1.00 transaction fee charged.
account1 balance: $65.00
account2 balance: $77.00
account3 balance: $58.00
Attempting to debit $125.00 from account1.
Debit amount exceeded account balance.
Attempting to debit $113.00 from account2.
Debit amount exceeded account balance.
Attempting to debit $140.00 from account3.
Debit amount exceeded account balance.
account1 balance: $65.00
account2 balance: $77.00
account3 balance: $58.00
Adding $2.31 interest to account2.
New account2 balance: $79.31
Initial balance is invalid.
Initial balance is invalid.
Initial balance is invalid.
account4 balance: $0.00
account5 balance: $0.00
account6 balance: $0.00
Driver Program:
#include <iostream>
#include <iomanip>
using namespace std;
#include “Account.h”
#include “SavingsAccount.h”
#include “CheckingAccount.h”
int main()
{
Account account1( 50.0 ); // create Account object
SavingsAccount account2( 25.0, .03 ); // create SavingsAccount object
CheckingAccount account3( 80.0, 1.0 ); // create CheckingAccount object
cout << fixed << setprecision( 2 );
// display initial balance of each object
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;
// attempt valid debits
cout << “Attempting to debit $25.00 from account1.” << endl;
account1.debit( 25.0 ); // try to debit $25.00 from account1
cout << “Attempting to debit $13.00 from account2.” << endl;
account2.debit( 13.0 ); // try to debit $13.00 from account2
cout << “Attempting to debit $40.00 from account3.” << endl;
account3.debit( 40.0 ); // try to debit $40.00 from account3
cout << endl;
// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;
// attempt valid credits
cout << “Crediting $40.00 to account1.” << endl;
account1.credit( 40.0 ); // credit $40.00 to account1
cout << “Crediting $65.00 to account2.” << endl;
account2.credit( 65.0 ); // credit $65.00 to account2
cout << “Crediting $20.00 to account3.” << endl;
account3.credit( 20.0 ); // credit $20.00 to account3
cout << endl;
// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;
// attempt invalid debits
cout << “Attempting to debit $125.00 from account1.” << endl;
account1.debit( 125.0 ); // try to debit $125.00 from account1
cout << “Attempting to debit $113.00 from account2.” << endl;
account2.debit( 113.0 ); // try to debit $113.00 from account2
cout << “Attempting to debit $140.00 from account3.” << endl;
account3.debit( 140.0 ); // try to debit $140.00 from account3
cout << endl;
// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;
// add interest to SavingsAccount object account2
double interestEarned = account2.calculateInterest();
cout << “Adding $” << interestEarned << ” interest to account2.”
<< endl;
account2.credit( interestEarned );
cout << “New account2 balance: $” << account2.getBalance() << endl;
cout << endl;
// create accounts with invalid initial balances
Account account4( -50.0 ); // create Account object
SavingsAccount account5( -25.0, .03 ); // create SavingsAccount object
CheckingAccount account6( -80.0, 1.0 ); // create CheckingAccount object
// display initial balance of each object
cout << “account4 balance: $” << account4.getBalance() << endl;
cout << “account5 balance: $” << account5.getBalance() << endl;
cout << “account6 balance: $” << account6.getBalance() << endl;
cout << endl;
return 0;
} // end main
Create an inheritance hierarchy that a bank might use to represent customers’ bank accounts. All customers at this bank can deposit (i.e., credit) money into their accounts and withdraw (i.e., debit) money from their accounts.More specific types of accounts also exist. Savings accounts, for instance, earn interest on the money they hold. Checking accounts, on the other hand, charge a fee per transaction (i.e., credit or debit).
Create an inheritance hierarchy containing base class Account and derived classes Savings-Account and CheckingAccount that inherit from class Account. Base class Account should include one data member of type double to represent the account balance. The class should provide a constructor that receives an initial balance and uses it to initialize the data member. The constructor should validate the initial balance to ensure that it is greater than or equal to 0.0. If not, the balance should be set to 0.0 and the constructor should display an error message, indicating that the initial balance was invalid. The class should provide three member functions. Member function credit should add an amount to the current balance. Member function debit should withdraw money from the Account and ensure that the debit amount does not exceed the Account’s balance.
If it does, the balance should be left unchanged and the function should print the message “Debit amount exceeded account balance.” Member function getBalance should return the current balance.
Derived class SavingsAccount should inherit the functionality of an Account, but also include a data member of type double indicating the interest rate (percentage) assigned to the Account.SavingsAccount’s constructor should receive the initial balance, as well as an initial value for the SavingsAccount’s interest rate. SavingsAccount should provide a public member function calculateInterest that returns a double indicating the amount of interest earned by an account.
Member function calculateInterest should determine this amount by multiplying the interest rate by the account balance. [Note: SavingsAccount should inherit member functions credit and debit as is without redefining them.]
Derived class CheckingAccount should inherit from base class Account and include an additional data member of type double that represents the fee charged per transaction. CheckingAccount’s constructor should receive the initial balance, as well as a parameter indicating a fee amount. Class CheckingAccount should redefine member functions credit and debit so that they subtract the fee from the account balance whenever either transaction is performed successfully. CheckingAccount’s versions of these functions should invoke the base-class Account version to perform the updates to an account balance. CheckingAccount’s debit function should charge a fee only if money is actually withdrawn (i.e., the debit amount does not exceed the account balance). [Hint: Define Account's debit function so that it returns a bool indicating whether money was withdrawn. Then use the return value to determine whether a fee should be charged.]
After defining the classes in this hierarchy, write a program that creates objects of each class and tests their member functions. Add interest to the SavingsAccount object by first invoking its calculateInterest function, then passing the returned interest amount to the object’s credit function.
Sample Output:
account1 balance: $50.00
account2 balance: $25.00
account3 balance: $80.00
Attempting to debit $25.00 from account1.
Attempting to debit $13.00 from account2.
Attempting to debit $40.00 from account3.
$1.00 transaction fee charged.
account1 balance: $25.00
account2 balance: $12.00
account3 balance: $39.00
Crediting $40.00 to account1.
Crediting $65.00 to account2.
Crediting $20.00 to account3.
$1.00 transaction fee charged.
account1 balance: $65.00
account2 balance: $77.00
account3 balance: $58.00
Attempting to debit $125.00 from account1.
Debit amount exceeded account balance.
Attempting to debit $113.00 from account2.
Debit amount exceeded account balance.
Attempting to debit $140.00 from account3.
Debit amount exceeded account balance.
account1 balance: $65.00
account2 balance: $77.00
account3 balance: $58.00
Adding $2.31 interest to account2.
New account2 balance: $79.31
Initial balance is invalid.
Initial balance is invalid.
Initial balance is invalid.
account4 balance: $0.00
account5 balance: $0.00
account6 balance: $0.00
Driver Program:
#include <iostream>
#include <iomanip>
using namespace std;
#include “Account.h”
#include “SavingsAccount.h”
#include “CheckingAccount.h”
int main()
{
Account account1( 50.0 ); // create Account object
SavingsAccount account2( 25.0, .03 ); // create SavingsAccount object
CheckingAccount account3( 80.0, 1.0 ); // create CheckingAccount object
cout << fixed << setprecision( 2 );
// display initial balance of each object
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;
// attempt valid debits
cout << “Attempting to debit $25.00 from account1.” << endl;
account1.debit( 25.0 ); // try to debit $25.00 from account1
cout << “Attempting to debit $13.00 from account2.” << endl;
account2.debit( 13.0 ); // try to debit $13.00 from account2
cout << “Attempting to debit $40.00 from account3.” << endl;
account3.debit( 40.0 ); // try to debit $40.00 from account3
cout << endl;
// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;
// attempt valid credits
cout << “Crediting $40.00 to account1.” << endl;
account1.credit( 40.0 ); // credit $40.00 to account1
cout << “Crediting $65.00 to account2.” << endl;
account2.credit( 65.0 ); // credit $65.00 to account2
cout << “Crediting $20.00 to account3.” << endl;
account3.credit( 20.0 ); // credit $20.00 to account3
cout << endl;
// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;
// attempt invalid debits
cout << “Attempting to debit $125.00 from account1.” << endl;
account1.debit( 125.0 ); // try to debit $125.00 from account1
cout << “Attempting to debit $113.00 from account2.” << endl;
account2.debit( 113.0 ); // try to debit $113.00 from account2
cout << “Attempting to debit $140.00 from account3.” << endl;
account3.debit( 140.0 ); // try to debit $140.00 from account3
cout << endl;
// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;
// add interest to SavingsAccount object account2
double interestEarned = account2.calculateInterest();
cout << “Adding $” << interestEarned << ” interest to account2.”
<< endl;
account2.credit( interestEarned );
cout << “New account2 balance: $” << account2.getBalance() << endl;
cout << endl;
// create accounts with invalid initial balances
Account account4( -50.0 ); // create Account object
SavingsAccount account5( -25.0, .03 ); // create SavingsAccount object
CheckingAccount account6( -80.0, 1.0 ); // create CheckingAccount object
// display initial balance of each object
cout << “account4 balance: $” << account4.getBalance() << endl;
cout << “account5 balance: $” << account5.getBalance() << endl;
cout << “account6 balance: $” << account6.getBalance() << endl;
cout << endl;
return 0;
} // end main
Skilled Creative Designer needed to design logo and identity project designs for established Media Group. Must be creative with clean and fresh take on design work. This is not a one time project, if this works out well, we are looking for ongoing collaboration.
We’ll primarily be needing Logo/Identity Work but also there may be other projects available. For example:
Logo & Identity Design (as mentioned)
Newsletter Template Design
Graphic Design & Vector Illustrations
Stationery
Brochure and Flyer Design
Design for Large Format Graphics (Window Decals, Banners, Displays etc)
NB: BIDDERS NEED NOT BE NATIVE ENGLISH SPEAKERS, BUT PERFECT KNOWLEDGE OF THE ENGLISH LANGUAGE IS REQUIRED FOR THIS PROJECT. PLEASE DO NOT BID IF YOU ARE NOT FLUENT IN YOUR UNDERSTANDING OF THE ENGLISH LANGUAGE.
I have two programming requests:
I created an e-commerce website for a client in October last year, using WordPress and the WP e-Commerce plugin. The website sells alternative medical products and food supplements.
(A) CUSTOM IMPORTER PLUGIN
The client had a requirement that the ingredients of each product should be displayed in tabular format in a custom field with custom “sub-fields” in the product description.
I contracted a programmer on ScriptLance who created a plugin to do the job. Basically it works by: (1) specifying the headers of the “sub-fields”; (2) entering the heading of the table in which the ingredients would be sorted; (3) uploading a CSV file containing all products, but with multiple records of each product in accordance with the number of ingredients, each record containing an ingredient; (4) importing it into the database.
The result was that there was still only one record of each product in the products database, but in the extended product display on the site the ingredients for each product were displayed in tabular format under the specified heading. The heading appeared in the same way that the other field headings appear in the display, although it was technically not a field as such.
This plugin worked well for a while, but then suddenly started to malfunction, probably due to WP upgrades leaving it obsolete. I need someone to fix it so it works the way it should again (I can’t get hold of the original coder). It should be upgraded to work with WordPress 3.1 and should preferably be easy to upgrade in future.
You should also change the display of the table slightly so it displays within another table. The table containing the actual ingredients should be invisible, i.e. no borders, background or padding, but the table containing that table (in a single cell) should have a 1px #CCCCCC border with a very light gray background, and the cell containing the other table should have 10px or 15px padding.
Preferably, if it was easy to do, I would have wanted not tables but divs.
I attach the actual plugin (although the previous programmer tinkered with the plugin a bit online after it was installed, so I don’t know if the attached one is the same as the installed one anymore) as well as a CSV file. The CSV file is the one containing multiple records of each product, in accordance with the number of ingredients. This is just so you can make an informed assessment before you bid. The fields in the CSV file containing the ingredients are: “Uomwithcontains”,”Ingredient”,”UOM per UOM”,”UOM”
One other thing: The original coder created the plugin specifically for this site (http://fortifood.co.za)only, in spite of my request to create it as a plugin that could be used with any WordPress site using the WP e-Commerce plugin. If it won’t affect the quote too much, I would like this also to be corrected.
(B) WP E-COMMERCE THEME
Something also went wrong with the WP e-Commerce themes, making it impossible for me to display postage/delivery options in my shopping cart. I would like that to be fixed as well.
1. Seven product images for Featuring seven categories: Household (Images: Refrigerator & food mixer), Electronics (Images: TV & DVD player), Mobile phones (Images: Iphone & Blackberry & Mobile phone), Computers (Images: Laptop & Tablet), Games (Images: Xbox & Playstation), Electricity (Images: Generator), Jewelry (Images: Wristwatch & other Jewelry). The images to be used can be discussed.
The work MUST be original. Efforts should be made to hide the product names in the picture but the most modern of the products mentioned will be used. A typical example of how the products will be put together in the images can be seen in the attached picture by a leading comparison site.
The color of the image background and style will be similar to the one in the attached image. In general images of two or more products belonging to the same category will be combined to creat one picture.
Text for each Image will be supplied by us.
Images size should be large enough for a 600 x 400 although we shall be placing them in a smaller table for now.
Our site name will be stamped discreetly on the images.
The images should blend with the color in the table in which they will be placed.
Image should be seamless, sharp and professional.
These images are to be used to feature product categories on our site. A click on the an image will take you to a particular category.
2. Finally, you will install a image scroller found on and to be download from http://www.benjaminkeen.com/software/image_scroller/ on our site. You will then upload the product images into the scroller and ensure that the scroller is working properly on our index page and that the images fit and works well in the scroller. Images will also be sent to us in zip file. You will instruct us on how we can add, remove, deactivate images in the scroller in the future. This will be installed and made to show on our index page.
This is all. We will appreciate a fast worker so this project is concluded quickly.
I wish to develop a website for an association that distributes an annual grants to sports clubs. To receive this grant, each club must, of course, provide some basic information (club name, names of leaders, address, the sport name
I have a simple little program that was written in Liberty Basic and I need it to run under VB Express 2010. The program checks a directory for any files. If no files it sleeps for 30 seconds and checks again. If there are any files it takes them one at a time, makes a copy in a different directory. Then this sequential file is opened, read, parsed into individual fields. (each field is separated by a ~) Then a specific field is changed from a Y to an N and written to a different director with the ~ put back in between the fields. When that is completed checks to see if the file has any more records and does the same till all the records are in the new file in the new director. That file is closed in the new directory and the original file in the original directory is deleted. The program checks to see if any files are left in the original directory and process them the same way and when all the files are processed from the source directory, the program goes to sleep for 30 seconds and goes back through the same process again. It sounds difficult but is quite simple.
*** You do not need to know PHP to do this. You just to need to know how to program Delphi or other windows languages
It must be with Windows 7, Vista, and XP. If you know how to parse data, this should be extremely easy.
This is how the software works and the logic behind it:
1 – User types in keyword and two numbers #a and #b
2 – Software goes to Google.com
3 – Software Extracts ALL URLS first and the # of seconds is how much of a delay there is between Google search results pages. It should be random, so if I enter 20 and 60, then you should have some random number generated that goes to each page (20-60 seconds randomly)
4 – Software goes to each url and extracts contact info : (email, contact us page if any)
5 – Creates a csv file report containing the following columns ;
(URLs , Contact Email or contact url)
URL should be hyperlinked so I can click on it.
That’s it.
I would prefer you contact me thru the message board. Any bids without private message board communication will be ignored. Also allows us to make sure we’re on the same page.
Rights: I own intellectual rights to this projects and you agree to sign an NDA afterwards agree-ing to this…and handing over the source code.
Budget: I am creating a featured project so you get paid more, so I’m asking bids be less than my max. If you have reasons to bid more, we’ll talk on the inside. This job should be fairly easy if you know what you’re doing in terms of parsing and generating CSV files.
Payment: Once the work is done and working, I will pay you. All the money is escrowed to keep you and I safe. You can see my feedback that I pay fast.
Turnaround time: I need this as soon as possible; possibly within 2 days or by the following Monday of next week. Please only bid after you have communicated with me on the PMB and you agree with the turnaround time. If you cannot do it by next Monday, please do not bid.
Any bids w/o communication or templates will be ignored. Please send me a private message and I will show you the PHP script that needs to be converted.
SEARCH
Referring to email, please integrate the Sphider into the website. Please remove all other search files from the website so we start from fresh. This includes the drop down menu etc as we will use the autosuggest used with this search engine. Please link with search bar or create a new search bar in index, 404, watch and samplewatch .tpl files. Try and attach the CSS to the CSS file we use for the website or create a new CSS and place into the same folder? I have created a search folder in http for you to upload files to
We’ll need to test to see if it finds the product with a product code or manufacturer’s code which we’ll be creating later.
FOUND ISSUES
- In news, if a store’s products are inactive, make sure the Add Product News is not usable.
- When you log in with a studio or store and you create quick links, then edit them it doesn’t show anything you’ve saved?
- In the admin area in the Stores list can you add a new column called Products which says either
Hello everyone,
I am looking to buy already done website designs (as PSD files). My requirements are simple – the websites must be extremely stylish and good looking. Also it must have at least 2 pages designed (home page and inner page for example).
The subjects of the websites is not so important but if a design can be used with various subjects, it will be considered as a plus.
Please do not bid/comment unless you can show me thumbnails of the designs you are offering!
I am looking to buy about 3-5 different website designs.
Thanks for looking!
I need a professional to write a trading script that will function with a Meta trader trading platform.
Requirements:
1.) Script must function with fxcm forex metatrader4
2.) Script must execute timed orders
3.) Script must set profit take and stop loss based on specific pips
Purpose:
The script must be able to execute a buy or sell at a specific price but the trade must not execute before 2:00 am. This trade will have set pip take profit and stop loss. For example I look at forex charts say at 6:00 pm and know the entry price at which I want to place a buy and an opposing sell for a currency pair but I do not want the trades to execute until the London session (2:00 am the following day.) Since these are pending orders you should be familiar with buy limit/sell limit versus buy stop/sell stop.
Hi! I need to create a press release for my newly built website about tattoos,and the sooner I do it the better. My website is all about tattoos.
Dear Programmer/freelancer,
We are looking for highly skilled and experienced flash developers (a minimum of 5 -7 years of experience) for a Sports web site that will do LIVE Internet broadcasting.
The application must be developed so that very little or no buffering takes place. Furthermore, the application should b developed in a highly optimized manner in case upgrades are needed in the future.
Also we will need help finding a suitable Live Flash Video Hosting company at a reasonable cost that can handle large amounts of traffic.
The ideal candidate must have good English skills for ease of communication and must also have good graphics ability. Furthermore you must have a test server with proper bandwidth for testing purposes.
We do not pay by the hour. If you have the skills to develop a highly sophisticated flash application then we want to hear from you.
I look forward to hearing from you shortly.
Sincerely,
Sam
Hello all,
I need a designer who is smart and able to create “branding” style logos in vector form, and NOT use any bought logos or templates from those various sites out there. This will not be accepted.
The project is simple. There is ONE main logo, which we will spend the most time on to make it a “branded” logo that people will remember. Then there will be TWO more logos that will be derived from the same style of the first logo(this should be simple, same style, different colors etc)
After creating the logos we will need ONE design for a 2-sided business card.
After the business card we will need ONE Stationary design for a sale sheet (8.5 inch x 11 inch) that will match the logo and business card design style for consistency and branding.
That’s it. We will need all source files as they are completed. Also, this is a great opportunity to have a continued relationship as our company will need more designs in the future.
We expect to see list of logos created, choose one of two and go from there. Designers who have experience with branding and logos are preferred. This is for an IT company.
Don’t forget to show us samples of your work. For more details or questions please send us a message.
Thank you.
I need 30 articles. Each article needs to make common sense.
Each article needs to be 500 words minimum.
The Keyword needs to be in the article 4 times minimum.
The Article must be 100% free of copy. Not 7%,or even 1%. 100% free of copy. I will check each article on copyscape myself. If it does not pass then I want except it.
I after we agree on the job I will place your money in escrow. I will pay when job is complete.
Hello ,i need some rewriting work to be done .
More details in PMB
I have a mailto form/script at http://www.cabopulmo.mx/reservations2k11.php and am getting a lot of auto-spam postings
I need script better secured, the current “security code” maybe
the issue, I also suggest changing script name/location at the same time
Hi,
I would like to get developed a game similar to farmville for iphone but with not too many features, only BASIC ones. We can provide the graphics, and other design stuff, we need the basic platform we’ll build over it.
I need this PSD to XHTML Tableless, W3c and CSS validated.
This also includes making a php contact form function to my liking, no database.
For an html website, I have 40 new images to be added (thumbnails that link to full sized images)including some with captions, 12 images to be deleted, 3 paragraphs of written copy to be added and 10 links to outside websites.
The images and thumbnails will all be properly sized for you.
Site must be hand coded.
I need to have code that will search google news feeds, blogs, and videos using certain keywords with results displayed on my website. The results will be displayed. I also will need an admin where I can manually add by url relevant news, blogs and videos that the feeds system may not find. Only the 20 most recent feeds will be displayed on the homepage. Older feeds will must be archived on my site on another page.
Create a class RationalNumber (fractions) with the following capabilities:
a.) Create a constructor that prevents a 0 denominator in a fraction, reduces or simplifies fractions that are not in reduced form and avoids negative denominators.
b.) Overload the addition, subtraction, multiplication and division operators for this class.
c.) Overload the relational and equality operators for this class.
In addition to the capabilities outlined above, the RationalNumber class should overload the stream insertion (<<) and stream extraction (>>) operators. The stream extraction operator should prevent a 0 denominator in a fraction, reduce fractions that are not in reduced form, and prevent negative denominators. Negative or 0 denominators should be set to 1.
Sample output 1
Enter a Rational Number (n/d): 1/3
Enter a Rational Number (n/d): 2/4
1/3 + 1/2 = 5/6
1/3 – 1/2 = -1/6
1/3 * 1/2 = 1/6
1/3 / 1/2 = 2/3
1/3 <= 1/2 according to the overloaded > operator
1/3 < 1/2 according to the overloaded >= operator
1/3 < 1/2 according to the overloaded < operator
1/3 <= 1/2 according to the overloaded <= operator
1/3 != 1/2 according to the overloaded == operator
1/3 != 1/2 according to the overloaded != operator
Driver Program:
#include “RationalNumber.h”
int main()
{
// RationalNumber c( 1, 3 ), d( 2, 4 ), x;
RationalNumber c, d, x;
// test overloaded stream extraction operator
cout << “Enter a Rational Number (n/d): “;
cin >> c;
cout << “Enter a Rational Number (n/d): “;
cin >> d;
x = c + d; // test overloaded operators + and =
cout << c << ” + ” << d << ” = ” << x << endl;
x = c – d; // test overloaded operators – and =
cout << c << ” – ” << d << ” = ” << x << endl;
x = c * d; // test overloaded operators * and =
cout << c << ” * ” << d << ” = ” << x << endl;
x = c / d; // test overloaded operators / and =
cout << c << ” / ” << d << ” = ” << x << endl;
// test overloaded > operator
cout << c << ( ( c > d ) ? ” > ” : ” <= ” ) << d
<< ” according to the overloaded > operatorn”;
// test overloaded >= operator
cout << c << ( ( c >= d ) ? ” >= ” : ” < ” ) << d
<< ” according to the overloaded >= operatorn”;
// test overloaded < operator
cout << c << ( ( c < d ) ? ” < ” : ” >= ” ) << d
<< ” according to the overloaded < operatorn”;
// test overloaded <= operator
cout << c << ( ( c <= d ) ? ” <= ” : ” > ” ) << d
<< ” according to the overloaded <= operatorn”;
// test overloaded == operator
cout << c << ( ( c == d ) ? ” == ” : ” != ” ) << d
<< ” according to the overloaded == operatorn”;
// test overloaded != operator
cout << c << ( ( c != d ) ? ” != ” : ” == ” ) << d
<< ” according to the overloaded != operatorn”;
return 0;
} // end main