Programmation > Perl
Technical co-founder - US ECommerce Company
Network Design/PCI Compliance Consultant
Best Practical RT Installer on Windows
Hi, we are looking for somebody to come along and install: http://bestpractical. com / < / a>andnbsp; andnbsp; andnbsp; - Best Practical Request Tracker (RT) on a windows machine for us. The job will be to install any pre-requisists of RT such as perl, apache, and install RT and get it fully operational on a windows server. Please only apply if you can give a fixed price for this job and have experience of RT. We would like this doing quite urgently, the windows server is running Team Viewer for you to do the install work. We require the RT to use MySQL. andnbsp; andnbsp; The RT system will also need to use email to tickets and so on and so on, if you know RT you will know what we mean. So please get in touch if you are free to work on this with immediate effect and have good experience of windows, apache, RT, perl install, MySql and so on. andnbsp; andnbsp; This isnt a big job, an experienced person will take no more than 2-3 hours, but, once we get the base install up and running there will be customisation we will seek help on as a 2nd stage project. Look forward to hearing from all your RT expertsThanksDarren and Mark
Simple Facebook Contest App
Populate SQL Table with API Results
We are looking for a person who can mine the Facebook, YouTube, and Twitter APIs to fill out the missing data in a provided MySQL table. You will be given a table with 2M+ URLs. You need to write and execute a program that populates that table with information from the aforementioned APIs (the YouTube API will only apply to the YouTube links). We will give you access to a high end server with MySQL setup and the dataset precreated, you will be responsible for executing and filling that table. Spec: -You are given a MySQL table with following schemaURL: - String URL of a webpage. fb_likes: - Number of times the URL was liked on facebook. fb_shares: - Number of shares on facebook. fb_comments: - Number of comments on facebook. youtube_views: -youtube_likes: -youtube_shares: -youtube_comments: - twitter_shares: - Number of times the URL was shared on twitter. The table will contain millions of URLs and everything else will be null. We will give you a high end amazon linux machine with 8GB RAM and lots of computation power. You will write and execute a program that will go over the entire table and populate the remaining columns based on the URL for that particular row. The facebook stuff can be retrieved from http://graph. facebook. com/URL< / a>. Both twitter and Youtube have APIs too. Note that youtube columns only need to be filled if URL is a youtube video, i. e starts with www. youtube. com< / a>, otherwise they can remain empty. Platform: - You are free to pick between Java/Python/Perl. Your binary should be easily executable without much configuration on a standard Linux Machine. Scalability: - The table will contain atleast 2 Million URLs and your code should finish in reasonable time. You will be bottlenecked on the API limits, and your code should respect those API Limits. The completion of this task will entail you successfully running your program over our entire dataset, hence this is important that you take these issues into account.
Gaming Website Creation & Design
Windows Systems Administrator at Everett, MA for long term contract
Senior Financial Developer
Ebook Api Integration to website using epubbud
I need an api programmer to integrate the epubpub api onto my website. The api can be found at http://www. epubbud. com/api. php< / a>Go to epubbud to find out how their website functions. I want it to function exactly the same way as epubbud does but with my own branding. I need this work completing soon. PLEASE TELL ME WHY YOU ARE SUITABLE - GIVE ME EXAMPLES OF YOUR WORKHere is an overview of the api below... The ePub Bud APIIf you don't know what an API is, don't worry about it! What can it do? Absolutely everything the epubbud. com website can do! How does it work? Simply POST to any of our site URLs with two additional variables: andnbsp; andnbsp; andnbsp; api_username the username or email address of your ePub Bud account. andnbsp; andnbsp; andnbsp; api_password your account's password. Can the API create ePub Bud accounts? Yup.. just post to the url: andnbsp; andnbsp; andnbsp; http://www. epubbud. com/login. php< / a>With the variables: andnbsp; andnbsp; andnbsp; new (with the value " 1 ") andnbsp; andnbsp; andnbsp; submit (with the value " 1 ") andnbsp; andnbsp; andnbsp; username (your desired username) andnbsp; andnbsp; andnbsp; password (your desired password) andnbsp; andnbsp; andnbsp; name (your name) andnbsp; andnbsp; andnbsp; email (your email address) If the response is a 302 redirect, you succeeded. Any other response means there was an error. (This is the only functionality that doesn't require the api_username and api_password variables.) How do I upload a file to convert via the API? Simply post to the url: andnbsp; andnbsp; andnbsp; http://www. epubbud. com/uploader. php< / a>With the variable: andnbsp; andnbsp; andnbsp; file (make it the actual content of the file to convert) Of course, you also need to post the api_username and api_password variables! Any questions, problems, or suggestions? Please, let us know! Example PHP code using the API php$email = 'test@epubbud. com '; $password = 'testtest '; $name = 'API test '; $username = 'apitester '; $filename = 'testfile. pdf '; # let's try creating an account first! $ch = curl_init (); curl_setopt ($ch, CURLOPT_URL, 'http://www. epubbud. com/login. php '); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_POST, 1); $postData = array ( 'email '=>$email, andnbsp; andnbsp; 'password '=>$password, andnbsp; andnbsp; 'name '=>$name, andnbsp; andnbsp; 'username '=>$username, andnbsp; andnbsp; 'new '=>1, andnbsp; andnbsp; 'submit '=>1 andnbsp; andnbsp;); curl_setopt ($ch, CURLOPT_POSTFIELDS, $postData); $response = curl_exec ($ch); if ($response) { print " error creating account! $response "; # note: $response is going to be a full HTML page! } else { #we are good! # upload a file to convert! $ch = curl_init (); curl_setopt ($ch, CURLOPT_URL, 'http://www. epubbud. com/uploader. php '); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_POST, 1); $postData = array ( 'api_username '=>$email, andnbsp; andnbsp; 'api_password '=>$password, andnbsp; andnbsp; 'file '=> " @$filename "); curl_setopt ($ch, CURLOPT_POSTFIELDS, $postData); if (is_file ($filename)) { $res2 = curl_exec ($ch); if ($res2) { print " error: $res2 "; } else { print " successfully uploaded! "; } } else { print " no such file: $filename "; }}? >Example Perl code using the API#! / usr/bin/perlmy $email = 'test@epubbud. com '; my $password = 'testtest '; my $name = 'API test '; my $username = 'apitester '; my $filename = 'testfile. pdf '; use LWP; my $browser = LWP:: UserAgent->new; # let's try creating an account first! my $response = $browser->post (andnbsp; andnbsp; 'http://www. epubbud. com/login. php ', andnbsp; andnbsp; andnbsp; [ 'email '=>$email, 'password '=>$password, 'name '=>$name, 'username '=>$username, 'new '=>1, 'submit '=>1andnbsp; andnbsp; andnbsp; ],); if (my $error = $response->{ '_content '}) { print " error creating account! $error "; # note: $error is going to be a full HTML page! } else { # we are good! # now let's upload a file to convert! my $res2 = $browser->post ( 'http://www. epubbud. com/uploader. php ', [ andnbsp; andnbsp; 'api_username '=>$email, # $username also works andnbsp; andnbsp; 'api_password '=>$password, andnbsp; andnbsp; 'file '=> [$filename] ], 'Content_Type '=> 'form-data '); my $loc = $res2->{ '_headers' }->{ 'location '}; if ($loc eq 'http://www. epubbud. com/upload. php ') { print " successfully uploaded! "; } else { print " error: $loc "; }}
WordPress Website Integral Development
Perl script that resizes and adds a colored border
The perl script must generate resized colored bordered images from uploaded images. The generated images must be the same size, borders and color uniformed with rounded corners. In other words the generated images must all look like this: http://www. cannabissearch. com/imgs/strains-18. jpg< / a>
jQuery Programmer
Interested in making a difference in the world while also making a living? Posted at http://donor. com/jobs< / a>donor. com is a long-established yet cutting edge SaaS company that provides non-profit organizations with an integrated fundraising data solution. Weandrsquo; ve helped non-profits raise over $5 billion dollars to make a difference, and we want to help even more. We are looking for the right person who has great communication skills (by phone and by email), is skilled at working with jQuery for our online gadgets for fundraising, and is self motivated. Title: jQuery ProgrammerMain Job Function: Primarily responsible for jQuery Gadget work, but there will also be Perl coding work in related API's. Location: 100% virtualPosition Type: Contract to begin with, moving to full or part time based on ability and availabilityBenefits available for staff: Family health plan (close to 100% funded by donor. com based on the state), dental, life insurance, prescription drug coverage, all offered through our PEO Trinet. Reports to: Director of RandDCompensation: TBD based on skill level, experienceQualifications: andnbsp; andnbsp; andnbsp; andnbsp; Solid background in jQuery is mandatory and developing for the webandnbsp; andnbsp; andnbsp; andnbsp; Perl programming experience is highly desiredandnbsp; andnbsp; andnbsp; andnbsp; donor. com is primarily a Mac and Linux environment, although some knowledge of Windows is requiredandnbsp; andnbsp; andnbsp; andnbsp; A strong independant work ethic is needed as donor. com is 100% virtualBenefits: andnbsp; andnbsp; andnbsp; andnbsp; Work from home, no relocation required andnbsp; andnbsp; andnbsp; andnbsp; Work with a great team of talented people andnbsp; andnbsp; andnbsp; andnbsp; Flex Time Policy allows some latitude to set your own hours andnbsp; andnbsp; andnbsp; andnbsp; Up to 100% coverage of premiums for family health and dental, life insurance and prescription drugs (based on which State you are in and for full time staff only). Roles and Responsibilities: andnbsp; andnbsp; andnbsp; andnbsp; Execute assigned tasks in a timely mannerandnbsp; andnbsp; andnbsp; andnbsp; Understand, and organize work related to jQuery donor. com gadgetsandnbsp; andnbsp; andnbsp; andnbsp; Acknowledge, and deal with specific Gadget related ticketsandnbsp; andnbsp; andnbsp; andnbsp; Coordinate and work with other staff to triage, build and implement enhancements to Gadgets as directed. andnbsp; andnbsp; andnbsp; andnbsp; Learn and understand donor. com WebWare API's and their integration with Gadgetsandnbsp; andnbsp; andnbsp; andnbsp; Work cooperatively with other donor. com resourcesandnbsp; andnbsp; andnbsp; andnbsp; Responsible to track and record time worked in our online ticket tracking system as a contractor, and staff are required to track 75% of their salaried time. Interested? To find out more, send your resume.


