Grab & Rename & Save Images

Grab & Rename & Save Images
We have two excel sheets with data:
1. holds data of current dbase, with this setup:
pID,EAN,name,image

2. holds this data
EAN,name,image-url

What we need is this output:
pID, EAN, name, image
in this format:
pID, EAN, name, /pID.jpg

Extra information:
– Fields to match are the EAN’s.
– images must be stored into a (given) folder.
– if the image field is not empty for current record, skip it as we clearly have the image already.

We can use two separate csv files for this too, either way is fine and shouldn’t take too long.

MUST be done within 1 day, as it should be easy for a good programmer.

If you can automate it so we can use it again and again, that sure has prio over manually do this once for the current files.

What you use for programming is fine either way, desktop app or webserver (php) script.

Populate My Oscommerce Site 2

Populate My Oscommerce Site 2
I own 2 websites, americansodaDOTcoDOTuk and americanmartDOTcoDOTuk and want eveything copied from one ie products, pictures, product pricing, etc. to the other one

I do however want great original product descriptions that are SEO freindly for each product. I will use compyscape to make sure that all content is original and not coppied, it must flow in true english… if you cant do this DONT BID.

seo tags need to be filled out for every product (around 200-300)

this is a project that needs to be done Fast but accuratly.

Cubecart Expert Needed

Cubecart Expert Needed
Hello Freelancers,
This is Santa here with another project.
This time i am in need of a freelancer who posses good skills in developing a cubecart online shop.
Its a very simple job.
I wish to have a website like http://www.jim-lawrence.co.uk/
please go through the website and do bid if you are confident that you can do this job.
please provide your previous examples made only in cube cart.
Please elimate all other sample links while messaging me in PMB.
This will help me to analyse you fastly.

Budget is as per in the project specification.
Bid within budget otherwise your bids will be removed instantly without any notification.

Thanks..

Kind Regards
Santa

C++ Mortgage Payment Calculato

C++ Mortgage Payment Calculato
Please help to create a C++ Mortgage Payment Calculator

Service Request SR-mf-003 Mortgage Payment Calculator:
Organization: McBride Financial Services
Requester: Hugh McBride

Description of Request: Need a program that will calculate mortgage payments.

Background of Request: Agents in the field offices will need to be able to calculate mortgage payment amounts. In the future, we may want to put a mortgage calculator on our Web site.

Expected Results/Impact when completed: A program written in Java (without a graphical user interface) that will calculate and display the monthly payment amount to fully amortize a $200,000.00 loan over a 30 year term at 5.75‰ interest.

Change Request #8
Requestor: Bud Shepherd – Bismarck, ND
Write the program as a procedural C++ program and using a loan amount of $200,000, a term of 30 years, and an interest rate of 5.75%. Insert comments in the program to document the program.
Write a C++ Console Application that calculates a mortgage payment. In the program specify the following fixed amounts:
• Loan Amount: $200,000
• Term: 30 years
• Interest Rate: 5.75%

A monthly mortgage payment can be computed by a applying all the above variables in a monthly payment formula. Research this formula and create a C++ program that performs this calculation.
Requirements:
• Your program should execute without user input.
• It should compute a monthly payment for the above values.
• The specific input amounts should be stored in variables (as opposed to inputting the values as constants into the calculation).
• The calculation used should be clearly expressed in the program comments.
• The final result should output the results to a Windows console.
The program will be graded against the “Programming Assignment Evaluation Rubric”, therefore, it should meet the content, style, and documentation guidelines described in the rubric.
Post the source for your program (the .cpp file) to your Team forum by Saturday for use in the Weekly QC test.

Change Request #9
Requestor: Bud Shepherd – Bismarck, ND
Write the program as a procedural C++ program. Calculate and display the mortgage payment amount using the amount of the mortgage, the term of the mortgage, and the interest rate of the mortgage as input by the user. Allow the user to loop back and enter new data or quit. Insert comments in the program to document the program.

Write a C++ Console Application that calculates a mortgage payment.

Your program should allow the user to input the following values:
• Loan Amount
• Term
• Interest Rate

Requirements:
• Your program should execute with the above user input.
• It should compute a monthly payment for the above values.
• The specific input amounts should be stored in variables.
• The calculation used should be clearly expressed in the program comments.
• The final result should output the results to a Windows console.
• Once the final result is displayed, allow the user to loop back and enter new data or quit.
The program will be graded against the “Programming Assignment Evaluation Rubric”, therefore, it should meet the content, style, and documentation guidelines as described in the rubric.
Post the source for your program (the .cpp file) to your Team forum by Saturday for use in the Weekly QC test.

Change Request #10
Requestor: Bud Shepherd – Bismarck, ND
Write the program as a procedural C++ program. Calculate and display the mortgage payment amount using the amount of the mortgage, the term of the mortgage, and the interest rate of the mortgage as input by the user. Then, list the loan balance and interest paid for each payment over the term of the loan. On longer-term loans, the list will scroll off the screen. Do not allow the list to scroll off the screen, but rather display a partial list and then allow the user to continue the list. Allow the user to loop back and enter new data or quit. Insert comments in the program to document the program.

Write a C++ Console Application that calculates a mortgage payment.
Your program should allow the user to input the following values:
• Loan Amount
• Term
• Interest Rate
Requirements:
• Your program should execute with the above user input.
• It should compute a monthly payment for the above values.
• Your program should include at least one function.
• The calculation used should be clearly expressed in the program comments.
• List the loan balance and interest paid for each payment over the term of the loan.
• On longer-term loans, the list will scroll off the screen. Do not allow the list to scroll off the screen, but rather display a partial list and then allow the user to continue the list.
• Once the final result is displayed, allow the user to loop back and enter new data or quit.
The program will be graded against the “Programming Assignment Evaluation Rubric”, therefore, it should meet the content, style, and documentation guidelines as described in the rubric.

Post the source for your program (the .cpp file) to your Team forum by Saturday for use in the Weekly QC test.

Change Request #11
Requestor: Bud Shepherd – Bismarck, ND
Write the program as a procedural C++ program. Allow the user to input the amount of a mortgage and then select from a menu of mortgage loans:

– 7 year at 5.35%
– 15 year at 5.5%
– 30 year at 5.75%

Use an array for the different loans. Display the mortgage payment amount. Then, list the loan balance and interest paid for each payment over the term of the loan. On longer-term loans, the list will scroll off the screen. Do not allow the list to scroll off the screen, but rather display a partial list and then allow the user to continue the list. Allow the user to loop back and enter new data or quit. Insert comments in the program to document the program.
Your program should allow the user to input the amount of a mortgage and then select from a menu of mortgage loans:
• 7 year at 5.35%
• 15 year at 5.5%
• 30 year at 5.75%
Requirements:
• Your program should include at least one class or struct.
• The calculation used should be clearly expressed in the program comments.
• The program should compute a monthly payment for the selected terms.
• List the loan balance and interest paid for each payment over the term of the loan.
• On longer-term loans, the list will scroll off the screen. Do not allow the list to scroll off the screen, but rather display a partial list and then allow the user to continue the list.
• Once the final result is displayed, allow the user to loop back and enter new data or quit.
The program will be graded against the “Programming Assignment Evaluation Rubric”, therefore, it should meet the content, style, and documentation guidelines as described in the rubric.

Post the source for your program (the .cpp file) to your Team forum by Saturday for use in the Weekly QC test.

Create a table that compares and contrasts writing a program using Java vs. using C++. Your table should be created in a Word document. It should include all pertinent elements related to this comparison
The final table should have enough details that it should help someone decide which language to use to implement a similar project.
Your final table should be such that a manager could use it to decide which of the two languages to use for an upcoming development project. This means that it should focus on issues of how development is in each language, not just the syntax differences. The final table will be on how effectively it accomplishes this task

Create 8 Web Forms In Joomla

Create 8 Web Forms In Joomla
I need to create 7-8 web forms in a joomla website. The information from the forms needs to be collected to a database. These forms need to be completed in full before the user can hit submit, they must complete all of them. After completion, the forms need to be emailed to both the webmaster/designated person and the person who filled out the forms.

The completed forms have to be emailed in a pdf format and look just like the original forms (which i have samples of). In other words, the captured data needs to be mapped to the same fields in the pdf forms and emailed in this format to the client so they can print them out and keep on file.

There are a few repetitive fields in the forms such as name, address etc,. and would like to reduce repetitiveness by having those fields autopopulate to each of the forms in their appropriate place.

I need this done in less than a week, I am really behind on this project and cannot wait so please state a realistic time to complete this.

Please contact me should you neeed more information.

Clone (article Site)

Clone (article Site)
http://www.oondi.com
http://www.bukisa.com
http://www.ehow.com

I want a mix of all, in one.
Articles and How to videos only, for now.

I would like writers to recieve half income from advertising modules paid via paypal.

Some of the modules
Google AdSense
Yahoo
Amazon
eBay
Affiliate Codes
BidVertiser
Kontera

And more….

Everything should be tested and running on your server first.

Ideas?
Bids?

Week Writing Project

Week Writing Project
Hi
I need a writer to find and write exciting articles about a subject, which I will give the winning bidder. Your job will be to search google for exciting and interesting news. You can rewrite other articles, you can rewrite 2 articles into 1, you can writes articles about a video etc etc. When you find an interesting subject you send me the link to the material and when I approve you write the article.
The articles must be interesting and exciting.

1 article per subject.
450-500 words per article.
I need 3 articles per week.
Must be search engine optimized. I will give you some keywords you must use in every article.
In total I need this job going for 2 months.
Payment will be after each article delivered.

Finish Simple Database

Finish Simple Database
I need someone to finish my database I started for me.
Database tables are already created with some sample data. So is the output of that data. Need forms for inputting data and editing data created. Php and jquery needed (not much jquery but want changes within page to be without a whole page load). File upload and image processing also required.
Database output here:
http://species.terminus13.com/SpeciesSelectPulldown.php
and
http://species.terminus13.com/profile.php?id=0001

The insert forms are here:
(they aren’t hooked up, except order, family, genus and common group pull from db. Order, Family and genus using jquery to change without reloading page).

http://species.terminus13.com/insertTable.php
and
http://species.terminus13.com/insertCommonGroup.php

There are instructions next to each field in the insertTable and InsertCommonGroup.
Edit pages should be similar to the insert files, just pre-populated with the selected record.

The database structure should stay the same. Attached is a snapshot of the database. Relational with a lot of separate tables. If you feel the need to change something, I would need to be consulted first.

Small Oscmax Changes

Small Oscmax Changes
Hi,
I need these changes done quickly by an experienced programmer.
They are only small and will not take that long so please do not quote silly figures.

To prove you have read this – please describe your approach to changing the code.

I have a mooded instance of OSCMax and am using Product Attribute Pictures on the product info page

This all works well but what I want to happen is for the product attirbute selector dropdown to also change to reflect the product and also change the product image.

That is change 1

Change 2 is when the item is added to the cart I would like the product attibute picture to be shown in the cart and not just the master product image.

Will select programmer quickly….

website is at www.ecologstores.co.uk

Viral Marketing Script (php)

Viral Marketing Script (php)
I am looking for a clone of a viral marketing script. See TheViralScript.com (and view the video on the page) as I need a clone of this script created specifically for me.

I want the script created in the latest PHP version and if so, I would like to have it so that it can be used without MySQL. I’ve been told that this is possible but I’m not a programmer. If it has to use a MySQL database, then that’s fine…

I also don’t want to use cookies for the tracking aspect.

I also will reserve the right to market and sell copies of the script if I decide to do so.

Thanks,

Robert
PS – Other samples of a “viral script” can be seen at
Instant-Affiliate-Generator.com and ListSpawner.com

Os Date – Modification

Os Date – Modification
I have an existing installation of OSDATE. I need it to be modified with the follow requirements.

The following work needs to be performed:

Requirements:
* Modification of existing skin that will have the following:
– No pictures on front page
– Rearrangement of the front page to show news on the top, and leave room for an ad banner at the bottom. (On all pages)
– The current ability to add/remove lucky spin/new profiles from admin menu shall be maintained.
– The statistics page shall remain disabled.

* The site has to SEO friendly, either with rewrite (already enabled)
– All pages shall be SEO friendly
– The proper keywords shall be used to make it SEO friendly

* The site has to be secured, as to prevent unauthorized changes.
* The exact permissions of each folder and file shall be documented
* The site template has to ask specific questions upon signing up, as
well as display a modified Terms of Service as well as a page of
suggestions for creating an account.
*I shall provide you with the custom questions that must be answered
upon sign up.
* The site shall authorize users before they sign up, and verify a valid email
* The captcha function shall be enabled. (It doesn’t work)
* There shall only be two levels, free and paid.
* All users shall default to free for 365 days. The paid option shall
be enabled after a threshold of users has been met.
* The site shall remain gender specific.
Ex: Either women seeking women or men seeking men only.
* Flash chat shall be enabled (I have software)
* Forums shall be enabled (I have software)
* The real user name shall not be displayable
* There shall be google maps integration
* The option for a popup upon first visit to the site if a cookie that indicates that it has not been viewed, and acknowledged.
* Must be integrated with Google Adwords
* Must be integrated with Google Adsense
* Must be integrated with Google Analytics
– The current site is, but verify that it is on all pages.

Allegro Portable Internet Radio

Allegro Portable Internet Radio

allegro.jpg

Let’s face it, terestrial radio is all but dead. Who wants to wade through all the commercials and limited avalability of the FM or AM dial? I listen to internet radio all the time, when at work at my desk and even on my iPhone when in my car and this little baby while now complete my internet radio experience.

The Grace Allegro Wi-Fi internet radio can run for about 8 hours on six AA batteries and streams over 16,000 radio stations from the likes of Pandora, Sirius and Live365. Is has built in 802.11b/g/n support and even has an iPhone remote control app so you can change stations without walking up to the unit.

You also get MP3/WMA/Real Audio/WAV/AAC/AIFF codec support, alarm functions, built-in speaker, 4-line display, standard remote control.

The unit will cost you $170 and is available right now from Grace Digital Audio

Awesome Rubik’s Cube Solving Robot

Awesome Rubik’s Cube Solving Robot

LEGO-Mindstorms-Rubiks-Cube-thumb-550x417-34514.jpg

I know that there are 100’s if not 1000’s of websites and applications that will help you solve the almighty Rubik’s Cube, but how cool is having a Lego robot built with the Mindstorms kit do it for you.

By using a Lego webcam and some homebrew software, the CubeStormer scans the Rubik’s Cube and can solve it in about 20 turns. “20 turns, I can do that with my eye’s closed” you might say, but can you not only solve a Rubik’s Cube in 20 seconds, can you also preform those 20 turns in a few seconds? Check of the video after the break of the CubeStormer in action.

Built entirely from lego elements with a lego web camera to scan the faces of the cube, The solve engine (algorithm) running on the computer is provided by the incredible “Cube Explorer” software which also provides the colour recognition required to determine the exact location of each coloured square.