English  Español  Français  Português

Administrative Support

Business Services

Customer Service

Design and multimedia

Networking & Information Systems

Sales & Marketing

Software Development

Web development

Writing and Translation

Web development

Design and multimedia

Software Development

Networking & Information Systems

Writing and Translation

Administrative Support

Customer Service

Sales & Marketing

Business Services

Find more freelance jobs

Software Development > Scripts & Utilities

PHP Data Scraper Script

Only need people with experience in gathering data from various web pags using PHP Script. andnbsp; andnbsp; The gathered data is then placed on a webpage. If you do no have experience doing this you will not be accepted. If you do have experience please apply

Posted on Sat, Feb 4 at 1:19pm

Connecting my unbounce landing page to iContact

I need to connect my landing page on unbounce. com to my icontact account. This will require some coding with the iContact API. If you do not have experience with this do not apply.

Posted on Sat, Feb 4 at 1:16pm

Extract columns and rows from multiple PDF files at once to Excel

I need a program/script that can extract selected data columns/rows from multiple PDF files to Excel.

Posted on Sat, Feb 4 at 11:02am

Script to purchase something online with multiple accounts

We will supply bulk logins and passwords. andnbsp; andnbsp; Here are the steps we need the script to do. andnbsp; andnbsp; It is for buying the same song with multiple accounts. 1. Go to beatport. com2. Click " Sign up for account " 3. Enter in the information we provide Name, email, user, pass, and so on 4. Click " Create Account " 5. Once logged in, Search for a song title we specify 6. Adds the song to the cart7. Put in a discount code if we have one8. Check out with our specified payment.. either credit card or paypal9. Log out10. Start the process over again with the next login and password11. Stop after the all the logins have been processed. We will also need a shorter version of this script where it doesn't create the logins, it just starts by going to beatport and clicking " Log in " and logs in with the info we provide. We can negotiate a fixed price. andnbsp; andnbsp; We will need this done as soon as possible.

Posted on Sat, Feb 4 at 9:37am

JSON Web Extractor with PHP / MySQL

We are looking for a php-programmer who needs to create a php script, which extracts data from an open source JSON web interface (e. g. like http://www. alpinaut. com/api /). < / a>The extracted data has to be stored in a mySQL database. What we will provide you---------------------------------- We will explain the whole concept in a crystal clear way so that you will have no confusion in understanding the requirements. What we will need from you-------------------------------------1. References of interface projects you already developed2. Expected timeframe for completion. 3. Fixed rate4. You should be ready to revise your work until all the requirements are completely satisfied. 5. We expect that you stick to agreed timelines. 6. We are looking for a freelancer, not an agency! Please note, we are a serious buyer and we need only a serious programmer, who thoroughly TESTS his projects to ensure that all functionality works as designed and expected. We will never compromise on quality and will never accept a substandard product. You should apply only if you are confident that you can deliver quality. Budget---------Give us a indicative pricing about the effort you need to program the app. The exact budget we will discuss during the interview. Donandrsquo; t expect any upfront payment. Please reply with the code word andldquo; Lady Gaga " so that I know that you have read the whole description.

Posted on Sat, Feb 4 at 8:40am
Get custom programming done at GetAFreelancer.com!

Indexing software...

Here's how the software should work... 1 - Input a website address, for example www. ABC. com< / a> 2 - The software indexes the pages and content of the site, taking note of pictures, words and layouts. 3 - The software stores this information either on the desktop or server. 4 - Next a schedule is set to re-index the website once every 2 months. 5 - During the next scheduled run, the software goes back to the website www. ABC. com< / a> and indexes the content again, but this time if there is a change in content the software will alert the user as to the changes that have been made, the pages that have been updated and the new pages that have been added. And produces a simple output in html file with a time stamp. I will hold all rights to the software once created. Thanks.

Posted on Sat, Feb 4 at 4:55am

Cookie that tracks files and settings

We need you to design a small piece of code that acts as a tracking cookie. It will work just like a cookie does when you go to different websites. The small script must be something we can put into a torrent file or downloaded file that is almost undetectable. It needs to be able to do a go through and track the files within the torrent file, IP address of computer, cookie information for other websites, gives file names of files on computer, and then report back this information to either a website or email address. After doing so, it would be great if its able to spread to other users downloading the same file.

Posted on Sat, Feb 4 at 2:29am

Need to Create Facebook Application

I need a person to create a Facebook landing tab application on a Facebook Fans Page for social marketing purpose that is integrated with paypal so people will pay montly (subscription) if they want to use this kind of Facebook application. The process is they have to purchase a license on a website that sells about the application. Then they will get the activation code to use this Facebook application. And they need to pay monthly subscription. If not, they will not be able to use the application anymore. You can see demo of this application at http://on. fb. me/r1vQrT< / a>I just want to add a fiture. User not only can share or send the Facebook page in to their profile page, but also user will able to share the page in to their twitter page. (send - share - twit)

Posted on Sat, Feb 4 at 2:07am

Test Application with SQL and C#

IMPORTANT: Apply for this job only if you can complete this in less then 24hours from starting! Hi, I am looking to develop a long term relationship with a good Microsoft SQL developer with good c# skills. This is a test project to determine your capabilities. The project will consist of a simple database and one table. the table (UserSettings) will have this column: WebID (nchar 50, not null); UserID (nchar 100, not null); SettingID (nchar 500, not null); Value (nvarchar mx, null). The purpose of this table is to store user setting relative to the web. The WebID, UserID, SettingID will be treated as a " composite primary key " Task 1: Write this stored procedures to perform the most optimum operations: 1) GetSetting (@WebID, @UserID, @SettingID) return Value If the three provided parameters much a query result (1 or 0 records) then return the Value 2) SetSetting (@WebID, @UserID, @SettingID, @Value) return integer (1 or 0) If the specified WebID, UserID and SettingID match a record then update the Value field with provided parameter (@Value). If no such much found then insert new record. if operation successful then return 1 else return 0.3) GetBulkSettings (@WebID, @UserID, @SettingIDCol) select dataset SettingID, Value@SettingIDCol parameter is a semicolumn "; " dilimiated collection of SettingIDs. If the specified WebID and UserID match then select\return all SettingID and Value dataset that match the specified SettingIDs in the SettingIDCol parameter. Task 2: Write a C#. NET Console application that creates and manages a data connection (parameters stored in web. config) to the sql table. Then create these three methods1) public string GetSettings (string WebID, string UserID, string SettingID) returns the Value fieldandnbsp; andnbsp; that matches the specified parameters from the UserSettings table2) public bool SetSettings (string WebID, string UserID, string SettingID, string Value) insert/update the Value parameter in the UserSettings table that match the specified parameters. return true if the operation completes successfully. 3) public DataTable GetBulkSettings (string WebID, string UserID, string[] SettingIDCol) gets many record from the UserSettings table that match the specified parameters and the collection of StringIDs in the StettingIDCol parameter. Returns a DataTable that contains the columns SettingID and Value as the populated result set. Thanks

Posted on Fri, Feb 3 at 10:35pm

Website Scraper

Website ScraperWe need data scraped from 4 different websites and consolidated into one online database. Data needs to be scraped twice a day, every day. andnbsp; andnbsp; Here are more detailed instructions. The sites we need scraped are related to real estate. The links are: https://sales. hsbfirm. com/fcSalesList. aspx< / a>http://www. brockandscott. com/BrockSearch. aspx< / a>{Need to click " search " in order to see data}http://www. shapiro-ingle. com/sales. aspx? state=NC< / a>{Need to click " search " in order to see data}We need all data scraped into a sortable spreadsheet. Then each address needs to be automatically entered into www. zillow. com< / a> in order to find the " Z-estimate ". This number will also be added to the spreadsheet. Lastly, in the last column, the there needs to be a simple calculation. The formula should be: (Z-estimate - Opening Bid) / Z-estimate. The format can be in percentages - for example:. 25 would appear as 25%. Thank You, Brian Murray

Posted on Fri, Feb 3 at 10:24pm
Get custom programming done at GetAFreelancer.com!

MS SQL 8 Developer

- Responsible for ensuring availability and performance of the databases that support the system. andnbsp; andnbsp; andnbsp; andnbsp; - Work to ensure that the associated hardware resources allocated to the databases and to ensure high resilience and performance tuning. andnbsp; andnbsp; andnbsp; andnbsp; - To proactively monitor the database systems to ensure secure services with minimum downtime (both SQL Server and SharePoint 2010 interface). andnbsp; andnbsp; andnbsp; andnbsp; - Responsible for providing trend analysis to management team to enable them to make informed decisions regarding resource management. andnbsp; andnbsp; andnbsp; andnbsp; - Responsible for troubleshooting and problem solving of SQL and SP10 development. andnbsp; andnbsp; andnbsp; andnbsp; - Responsible for improvement and maintenance of the databases to include rollout and upgrades. andnbsp; andnbsp; andnbsp; andnbsp; - Responsible for implementation and release of database changes according to agreed timescales and costs. Qualifications Required (Experience, Skills, Academic): andnbsp; andnbsp; andnbsp; andnbsp; - 3-5 years IT operation with strong understanding of database structures, theories, principles, and practicesandnbsp; andnbsp; andnbsp; andnbsp; - 3-5 years Microsoft SQL Server experienceandnbsp; andnbsp; andnbsp; andnbsp; - In depth SQL Server Database Administration experience, Atmos Cloud, SharePoint experience a plus. andnbsp; andnbsp; andnbsp; andnbsp; - Understanding of, and experience with, server-client computing and relational database environmentsandnbsp; andnbsp; andnbsp; andnbsp; - Experience with data management and data processing flowcharting techniquesandnbsp; andnbsp; andnbsp; andnbsp; - Knowledge of reporting and query tools and practicesandnbsp; andnbsp; andnbsp; andnbsp; - Good understanding of the organizations goals and objectivesandnbsp; andnbsp; andnbsp; andnbsp; - Good interpersonal, written, and oral communication skillsandnbsp; andnbsp; andnbsp; andnbsp; - Ability to present ideas in user-friendly languageandnbsp; andnbsp; andnbsp; andnbsp; - Self motivated and directed, with keen attention to detailandnbsp; andnbsp; andnbsp; andnbsp; - Able to prioritize and execute tasks in a high-pressure environmentandnbsp; andnbsp; andnbsp; andnbsp; - Experience working in a team-oriented, collaborative environmentandnbsp; andnbsp; andnbsp; andnbsp; - Experience of Transactional SQL, and DTS stored procedures. andnbsp; andnbsp; andnbsp; andnbsp; - Good written and oral communication skillsandnbsp; andnbsp; andnbsp; andnbsp; - Responsible for ensuring availability and performance of the databases that support the system. andnbsp; andnbsp; andnbsp; andnbsp; Required Skillsandnbsp; andnbsp; andnbsp; andnbsp; - SQL Server 2008andnbsp; andnbsp; andnbsp; andnbsp; - Database Administrationandnbsp; andnbsp; andnbsp; andnbsp; - Database Tuningandnbsp; andnbsp; andnbsp; andnbsp; - Database Managementandnbsp; andnbsp; andnbsp; andnbsp; - Database SecurityMobile Device Intergration- Create database schemas and xml messaging specs for wireless devices and adapters- Implement GPS mapping and tracking using JSR-179 Location API- Optimize and implement barcode scanning and mobile printing using JSR-82 Java APIs for Bluetooth and peripheral connection protocols- Code client-side portion of wireless applications inandnbsp; andnbsp; XML, XPATH and Java-based scripting language- Software unit-testing and bug-fixingResponsible for product development from concept to delivery; lifecycle- Define functional specifications, content requirements, information architecture and interaction design, through wireframes and detailed design docs- Spec out XML feeds or content and data APIs for apps- Work with multiple brands, technology teams and vendors

Posted on Fri, Feb 3 at 9:22pm

RSS XML scraping

Here's a list of 800 podcasts: http://www. npr. org/rss/podcast/podcast_directory. php? type=titleandvalue=all< / a>. I need the following items extracted from this page: 1) Title of each feed2) Provider3) RSS feed URL of each feed. If you click into the link on each Title, there should be a link to the XML file of the RSS feed (see the orange POD icon). I need this URL4) most recent PubDate. If you view the source of the RSS feed XML, you will see a field. I need the first (most recent) date. If there is no field, please extract the . You should be able to write a script to scrape the page and extract each field. There is some trickiness because some feeds require clicking on another link to reach the RSS feed URL (the one in XML format), so you have to make sure that you reach the page that gives the PubDate. As an output, please send me an Excel spreadsheet with each feed as a separate row and the columns are Title, Provider, RSS Feed URL, and Most Recent Publication/Build Date. For example, the first one should be " Poverty with a View ", " KNAU ", " http://feeds. feedatabaseurner. com/knaupodcast ", " Thu, 21 Apr 2011 20:40: 57 PDT ". This task must be completed by no later than 12:00pm Pacific time on Tuesday, February 7 in order to receive positive feedatabaseack. Thanks!

Posted on Fri, Feb 3 at 8:48pm

Student email list from California Colleges

PLEASE READ THE ENTIRE POSTING: We are looking for emails of students from colleges in California. Here are the colleges we want email addresses to students: -USC (https://my. usc. edu/wp/faculty/SearchForm. do) -UCLA (http://www. directory. ucla. edu /) -Cal Tech (http://directory. caltech. edu /) -UC San Diego (http://act. ucsd. edu/directory/search? jlinkevent=Redirect) -UC Davis (http://directory. ucdavis. edu/PeopleSearch. htm) -UC Santa Barbara (http://www. ucsb. edu/people/index. shtml) -UC Irvine (http://directory. uci. edu /) -UC Santa Cruz (http://campusdirectory. ucsc. edu /) -UC Riverside (http://www. ucr. edu/find_people. php) -University of San Diego (http://www. sandiego. edu/directory/people /) -San Diego State University (http://phonebook. sdsu. edu /) All of these college have an online directory of students which you can search from. We either want to build a software that will scrape the directories or run some kind of script that will be able to get email addresses of students from college directories. andnbsp; andnbsp; We are willing to pay $500 for a software that will scrape all the colleges listed above or $50 for each college list. andnbsp; andnbsp; We at least want the first name, last name, and email address in the list. andnbsp; andnbsp; The more information about a student the better but those three are essential.

Posted on Fri, Feb 3 at 2:13pm

Scrape directory of consultants

Hi, I am looking for assistance in scraping the directory found at http://proadvisor. intuit. com/fap / < / a>here's a sample profilehttp://proadvisor. intuit. com/referral/proadvisor_profile. jsp? id=3%2BAV65X3oa5c1ImS11E9oQ%3D%3D< / a>Thanks, Mike

Posted on Fri, Feb 3 at 1:16pm

Google Spreadsheet development

I am looking for a developer that can assist with writing some scripts to auto-send some emails based on values within a spreadsheet. andnbsp; andnbsp; Ex: When A1 is greater than B1, send an email to recipient listed in C1, with the subject line in D1 and email body in E1. andnbsp; andnbsp; I am definitely open for discussion on how best to structure it. andnbsp; andnbsp; I am using a Google form to collect values that need to be monitored and compared against standards. andnbsp; andnbsp; When those values are exceeded a warning email needs to be sent. andnbsp; andnbsp; There will be another script necessary to reset values in the spreadsheet. andnbsp; andnbsp; Details to come after email script is written. If you have questions, let me know. andnbsp; andnbsp; I believe this is possible to do in Google Spreadsheets and to have it operate without having to have the sheet actually open!

Posted on Fri, Feb 3 at 12:08pm
Get custom programming done at GetAFreelancer.com!