Data Entry Onto Excel Spreadsheet

We are looking for somebody to enter data onto an Excel spreadsheet by copying and pasting information from the link below:

http://www.microgenerationcertification.org/mcs-consumer/installer-search.php

There are 1559 companies listed. We would need the company name, contact name, email address and telephone number entered onto a simple spreadsheet such as the one attached.

Although we would like this done as soon as possible, accuracy is very important.

Please contact me if you have any queries relating to this project.

Imagehost – Imagearn Dot Com Model / Clone

I am looking for a more complex image host script that free or low-cost image scripts websites can offer.

I don’t want to be an exact copy of the imagearn.com, but honestly, almost all the features i need, are in there.

Features:
1. Header containing logo / slogan / account menu / image menu
2. First page (index) like pimpandhost.com – this means: register/login tab, upload tab which must contain: upload images from PC / upload from another URL / zip upload . Zip upload is a nice feature that allow user to upload a zip files containing lots of images. Script automatically must unzip the files and show the generated links for each.
3. The script MUST allow user to choose how big the generated thumbnails must be (dropdown menu). The uploader to be able to choose the tags (categories). Also to able to choose to resize the hosted image. If you can iclude a crop feature, that’s a plus
4. Popular images / Most Visites / New uploads pages included
5. Gallery system also a must. The whole website must be created to enhance the number of page views of the each visitor. The creator of imagearn.com was good here.
6. The generated html of the page layout must be like imagearn.com. Should have the image in the leftside, banners in the right site. Also, I will need top refferers shown in the right side of image. Underneath the image: random images from the server OR images from the same gallery (if any). After that, the image details (upload date, size, views, rate system, tags, comments, user dateils (website, etc), and finally the generated links of the image.

7. This is a MUST: Very important is the option, that Registered uploaders will be able to insert their own 2 bannercodes into their account. The 2 banners would only appear after approval of the admin and replace my default banners. meanwhile standard ads are shown. Registered users to have the possibility to setup in their details the website, and this to be shown.

8. Links should be SEO friendly. Admin area should be clean, well done and very complex, allowing me to set up the all website from there.
The whole layout / design must be proffesional done, clean and very user friendly. I will pay a bonus for that. As I told before, website should be so easy to use to make the users view more and more images. The website I will need to have the in-site SEO done.

9. A lot of small things that I’m gonna tell on the run. Not all the things are comming in my mind right now.
For example, I want to possibility to add static pages at anytime like help/tos/earn/commercial pages/how-to pages/Ads refferals description pages/etc

10. The programmer must be able to assist me in the future, providing help, bugs / problems solving, website script updates free or for extra-cost. Also, he will be the first who I tell the next projects and what another websites I will need.

I wanted to split the whole website in 2 parts, based on one mandatory option when the user upload the images:
– Safe for work
– Not safe for work

Depending on what user choose, ads shown on the image generated page should be SFW or NSFW. This will allow me you use adsense on normal images, without serving adsense ads on adult images and getting banned. Tell me if you can do such thing. I will pay a bonus for this.

Tell me how long is gonna take. I am not rushing, but I want the website up and running by the end of the month.

Long Term Writing Project

Budget: $500.00

Start Date: April 8, 2011

End Date: April 8, 2012

Job Description:

I NEED WRITERS TO WRITE 400-WORD ARTICLES. I WILL BE PROVIDING KEYWORDS AND YOU
HAVE TO WRITE ABOUT THEM.

ARTICLE INSTRUCTIONS: Please write the keywords/phrase as they are sent to you. They should appear 2 to 3
times in your article. DO NOT CHANGE THE KEYWORDS/PHRASE OR ADD ANY LETTER/WORD TO IT.
IT SHOULD APPEAR THE SAME WAY I SENT IT TO YOU.

DO NOT PLAGIARIZE: You can find articles about this in the internet but you cannot copy-paste. If you are
caught plagiarizing, you will not be accepted. Your article must pass copyscape 100%.

I NEED A LOT OF WRITERS FOR THIS PROJECT. I NEED LONG TERM COMMITMENTS I HAVE 1000
ARTICLES THAT NEED TO BE FINISHED.

PLEASE ONLY MESSAGE IF YOU ARE REALLY QUALIFIED. I NEED 1000 ARTICLES TO BE DONE.

Event Management Project In Asp .net C#

I am looking for an event management system made in C# 4.0.

It will need to use the API which I will provide.
There are only a few things from the API you will need. I will provide them and how you will need to use them.

For validation it needs to use a function I will provide as well, and explain how it works.
I do not want the build in .net validation. I don’t like it.

I will provide the database structure as well. It is running on SQL 2008 so if you use SQL express 2005 of creator you’ll be fine.
You must have an understanding of user-control, server controls, and handlers. You must also have a basic understanding of jquery.

I will provide a full write up of what I want. This is an easy project, and I will help out with a bunch of stuff with it, and all the API info and help you will need.

I have a ton of other projects I am working and don’t have the time for this thus I am putting it out there for bid.
I have about 3 other things in the pipeline that I will need help on so please keep in mind I am looking for a long term partner.

C++ / Matlab Simple Project. ( Easy)

Please see the attached file for details.

Write a MATLAB main .m file and one function m file that executes the following:
a. The main file opens the data file noisedatapa5.txt using fopen and fscanf to read the dc, gt, and snr values into arrays. (You must use the exact file provided with the problem statement including the text headings.) To read lines of text in MATLAB you use the function fgets . (To learn how to use fgets, type help fgets at the command line prompt.)

b. The main m-file uses polyfit, to determine the slopes (a[i]) and intercepts (b[i]) of the best fit lines of snr (y) vs. gt (x) for each value of dc (there are five values of dc). The equation is: snr = a[i]*gt + b[i] for a given dc (You will determine a[i], b[i], for each value of dc, where i ranges from 1 to 5, and is related to the different values of dc.)

c. The main m-file calls a function that you write and sends it the values of gt and snr for each dc value and finds the corresponding rsquared[i] values. The function returns the rsquared[i] values to the main m-file. The main m-file then prints a well-formatted and labeled table to the screen showing the values of slope, intercept and rsquared. (Example below.)

d. The main m-file prompts the user for a design value of snr (call it snrinput), and determines, using the relationships and coefficients determined in part b, an array of gt[i] values that will give the input value of snr for each dc data value. (Or in other words: gt[i]=(snrinput – b[i])/a[i] ; where i ranges from 1 to 5.). The resulting gt[i] values are stored in an array.

e. The main program then uses polyfit again to determine the slope and intercept of the gt[i] values determined in part d vs. the five dc values using this equation:
gt = E1*dc + E2 (Where E1 and E2 are unique for the chosen snrinput).
The main program then writes the values of E1, E2 and the chosen snrinput to the screen in a well-formatted manner.

f. The program then uses the approximate and empirical relationship that cost is proportional to the product of gt and dc to arrive at the optimum cost gt and dc:

derivation follows

cost = k*(dc*gt) (where k is a constant that will cancel out)

substituting in the relationship of gt and dc:
cost = k*(dc*(E1*dc + E2))

Take the derivative of cost with respect to dc, and set it equal to zero:
d(cost)/d(dc) = k*(2*E1 *dc+E2) = 0

solve for
dc = -E2/(2*E1)

substitute this dc of minimum cost into the gt dc relationship using E1 and E2:
gt minimum cost = E1*(dc minimum cost) + E2

These results (dc and gt for minimum cost) are printed to both the screen and the results.txt file in a well-formatted manner.
Reminder: Always display units with numbers when appropriate.

g. The main m-file then plots two figures: one that shows the best fit of the raw data (snr vs. gt) and the derived relationship of gt versus dc for the input value of snr.

Programming Techniques

Overview of the problem

You are to develop software for a simple banking situation. In the banking system we have customers who have bank accounts. Customers access those accounts via ATMs, on-line, phone and bank branches. Some of these accesses of those accounts give rise to transactions. We need to model the fact that customers have accounts and that there are transactions on those accounts. Normally a customer might have many accounts but in this assignment we will deal with just a savings account.

OO Modelling

We might model such a scenario using three types of object: one for Customers, one for BankAccounts and another for Transactions. In terms of data required, for Customers assume we need a name, an address and a savings account. An array of Customers should be used. For the savings account assume we require an account number, a balance (amount) and an interest rate. For transactions assume we need an account number the transaction applies to, an amount being transacted and a transaction type (such as Deposit, Withdrawal or Interest ). Details of the transactions are held in a file called “trans.dat”.

Below is a suggested UML type diagram representing the object types (classes):

SavingsAccount
-accNumber int
-balance float
-interestRate float
+setUpAccount(int, float, float) void
+addDeposit(float) void
+subWithdraw(float) void
+addInterest() void
+getBalance() float
+matchAccount(int) bool

Customer
-name string
-address string
-saveAcnt SavingsAccount
+createCust(string, string, int) void
+searchAccounts(int) bool
+applyTrans(char, float) void
+accessAccount(char) void

Transaction
-accountNumber int
-amount float
-transType char
+readRecord(ifstream) void
-findAccount(Customer [], int) int
+process(Customer []) void

As can be seen above, the Customer class includes (is composed of) a savingsAccount object.

The main objective of this system is to process transactions on accounts. You will be
provided with a file of transactions. You should create suitable Customer records and
associated savingsAccounts such that these transactions can be correctly processed.

File structure

Typical data to be found in the file is as follows:
24689
250.00
C
123456
100.00
D

A transaction record is in three parts, firstly an account number, secondly an amount and thirdly a transaction code (C = credit, D = debit, I = add interest). Assume all transactions are valid i.e. generate no errors.

Responsibilities of objects

The Transaction object is responsible for reading the transaction file records, finding the relevant account in the array of customers and applying the transaction. To find the relevant account a matching function within the Customer class can be used. A transaction can be applied by calling a function within the Customer class which in
turn calls a function in the savingsAccount class. See UML modelling above. You may choose to alter the function specifications if required. As indicated above Customer objects provide the access to the accounts including searching.

The savingsAccount objects provide basic operations such as deposit, withdrawal, adding interest, getting a balance and account number matching.

Operation of your program

Your program should read the transaction file and correctly apply the transactions to the customers and their accounts. You should setup an array of Customers to suit the data in the file. Make the balance for all customers initially 0. Assume an interest rate of 5% for add interest type transactions. Your program should produce a balance for all customers on screen first then apply
the transactions and then produce an updated balance on screen for every customer.

trans.dat

246890
250.00
C
123456
100.00
C
123456
0.00
I
937568
1200.00
C
246890
150.00
D
123456
50.00
D
337761
50.60
C
123456
150.00
C
337761
75.00
C
337761
40.00
D
246890
0.00
I
937568
250.00
D
846579
1000.00
C
293567
500.00
C
917355
400.00
C
846579
100.00
D
293567
200.00
D
846579
100.00
D
917355
200.00
D
937568
0.00
I

Content Job

We are looking for article writers/companies that can deliver 50-100 high quality articles per week. Please have your previous article samples ready so we can shortlist you as soon as possible.Be assured that if we find that you produce good quality articles that we will give you a bulk order weekly. We also need some revisions done to the article if we find the article deemed not suitable.

We will supply:
– Title of the article
– Keywords and repetitions to be used in the article

We need:
1. Content
– 400-500 words English article
– High quality, well-researched, proofread, copyscape free, keyword density followed article
– Proper use of underline, bold, itallic, sub-titles, indentations, capital letters, symbols, etc.
2. Summary
– Brief summary of the article to include in meta description in length of 135 characters.
– Please do not copy from contents created.
– Unique short content of 135 character length will be used for meta description.
– This topic should touch about our business and location including some of the vital keywords in it.

Quantity :50-100 articles per week
Payment terms- Full payment upon delivery of work
Dateline – every Monday for each batch of 50-100 articles

Please revert your job bid with “PASSWORDCONTENT305” as a title in order for us to know that you have read through the job description.
Bid rate per article 400-500 words for first batch 50 or 100 articles

Php Script Translation From English To Chinese

We have a php script in english that is being used at
revenueforever.com

we want to add chinese text to it which will involve adding text to pages as well as to database

we have read somewhere that adding this to meta tags can allow chinese text but it is not working
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />

If you have a solution for it that you had tested it yourself and it works in all browsers then please place a bid on this project.

Keyword Original Articles

I need to create High Quality original content for the following keywords ( 500 words articles )

Please mention the keyword we are talking about 3-5 times through each article itself, so that the search engines give us extra points for relevance.

List of keyword Phrases

forex brokers
forex broker comparison
forex robots ppc
fap turbo review
Forex Automoney review
forex robot review
megadroid review
forex signals ppc
forex trading system
automated forex trading software

The chosen candidate will be awarded an opportunity to work with me in future projects. So please quote me the best rate you can give me for these ten articles.

For the 10 articles (each keyword phrase per article) 3 -5 times mention per articles. Please follow the instructions above.

I am searching for willing parties who provide me with the best value.

High value means high quality content delivered at a reasonable pace. These should be deliverable within 2 days of approval.

Regards

Oswald