Bookmark and Share
Subscribe


Archive

Archive for the ‘Perl/CGI’ Category

First Business Insurance by firstbusiness

January 28th, 2009

I am currently building a purely online based insurance website.
The aim is to provide visitors with instant online quotes based on information they input into an online (web) form.
Information would be submitted, parsed, and a price would be drawn or calculated from a database depending on the options chosen by the user in the form.
Many online quote engines already exist and in order to compete with these companies I must also be able to provide this service.
Note: This will not be a ‘Comparison’ site, such as gocompare.com where many insurers will be searched.
It is much simpler.
For an example, check out the car quote engine on directline.com

I am looking for somebody to write the quote engine for me in whatever language is most appropriate.
Quote engines required are:
Tradesmen (Public Liability)
Let Property
Shops
Offices
Van
Motor Fleet

Though I assume a single engine would be universal as long as databases are all in the same format and layout.

Or possibly a development environment would suit, so that each quote type is put together by myself by chosing questions, possible answers and text fields, and the final result is then “built” by the program which is uploadable and usable by the public to provide them quotes.

Databases will be provided by the insurance companies I deal with or in smaller cases compiled by myself.

Depending on the extra cost, I may also want the rest of the website developed. A basic page is already up at www.firstbusinessinsurance.co.uk for an initial layout and style design. (Budget: €250-750, Jobs: .NET, ASP, Java, Perl/CGI, Website Design)

Comments

.NET, ASP, Java, Perl/CGI, Website Design ,

Near clone website by MEDIAPOLIS

January 26th, 2009

We are looking for a near clone of Pocker community sites pokah.lv or poker.ru or the best of both. Obviously branding will be different. This project needs to be as good if not better than the original sites so no newbies please… (Budget: €250-750, Jobs: AJAX, Javascript, Perl/CGI, PHP, XML)

AJAX, PHP, Perl/CGI, XML

http://zippostalcodes.com website clone needed by kerdsoftware

January 26th, 2009

I need a web site with all features from zippostalcodes.com. Please do not bid if you do not really know (learn) the functionality of this service… (Budget: min €3000, Jobs: AJAX, Javascript, Perl/CGI, PHP, Website Design)

AJAX, Javascript, PHP, Perl/CGI, Website Design

First Business Insurance by firstbusiness

January 26th, 2009

I am currently building a purely online based insurance website. The aim is to provide visitors with instant online quotes based on information they input into an online (web) form. Information would be… (Budget: €250-750, Jobs: .NET, ASP, Java, Perl/CGI, Website Design)

.NET, ASP, Java, Perl/CGI, Website Design

Complex project for companies only by onlinesolutions

January 26th, 2009

This project requires a team of several skilled programmers each one having at least 4-5 years experience in one of the following areas: - Perl - XML / XSD - MySQL - AJAX - HTML - Javascript… (Budget: min $3000, Jobs: AJAX, Data Processing, Perl/CGI, XML)

AJAX, Data Processing, Perl/CGI, XML

Diablo II lod 1.12 Dupe Method Closed bn

December 26th, 2008

Hi. I have found Diablo 2 Dupe Program until now.
But I couldn’t find it.
I tried to find it for Google searching site, Many dupe programs are searched, but all of this files are fake.
I want to get genuine worked on closed battlenet v1.12 Asia realm.
If someone offers true dupe Program, I am willing to give enough money to Provider.
Once proven that it works i will pay.

ASP, C/C++, Data Processing, PHP, Perl/CGI , , , , , ,

Diablo LOD v1.12 Dupe

December 26th, 2008

~**~Want this don ASAP~**~
I need this program to duplicate Virtual items within the online game Diablo 2 LoD ( expansion ) v1.12. It must work on their closed Battle.net servers. The software should let me duplicate ANY item of my choice multiple (Infinite, program shouldn’t burn out or somthing) times.

*Budget is not great ~ Need possibly 150 or less.
*I play realm Useast/Softcore/Ladder (This dont matter, aslong as it works for this realm, but all realms are fine.)
*The dupe program must be fast and unable to be patched.
*Will be requireing some kind of proof before money will be sent.(i.e. video/screen shots with date/time posted, ect..)
*Money will be sent via Paypal.(Easiest)

C/C++, Java, Perl/CGI, Visual Basic , , , ,

Red5 Streaming Module

December 25th, 2008

We need a custom module for Red5. It would implement IStreamPlaybackSecurity and IStreamFilenameGenerator so that the following conditions would be met.

1. Content would be streamed from a custom directory corresponding to a database key.
2. Only the first 2 minutes of the stream would be played if the user has not yet purchased access to the stream (this can be determined with a single database query.)

This system is the FMS solution we’re migrating to as part of our online education site. The portion of the database schema which the project will need is as follows:

CREATE TABLE sessions (
nid CHAR(11) NOT NULL PRIMARY KEY DEFAULT ”,
ip CHAR(15) NOT NULL DEFAULT ‘0.0.0.0′,
id INT UNSIGNED NOT NULL DEFAULT 0,
loggedIn DATETIME,
stamp TIMESTAMP
);
CREATE TABLE paid (
did INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
id INT UNSIGNED NOT NULL DEFAULT 0, — users table key
cid INT UNSIGNED NOT NULL DEFAULT 0, — class table key
yid INT UNSIGNED NOT NULL DEFAULT 0, — paypal table key
exp DATETIME NOT NULL DEFAULT ‘1970-01-01 00:00:00′,
stamp TIMESTAMP,
INDEX(id,cid,yid)
);
CREATE TABLE media (
pid CHAR(11) NOT NULL PRIMARY KEY DEFAULT ”,
cid INT UNSIGNED NOT NULL DEFAULT 0,
title CHAR(100) NOT NULL DEFAULT ”,
eid INT UNSIGNED NOT NULL DEFAULT 0,
thumbId CHAR(11) NOT NULL DEFAULT ”,
thumbOffset CHAR(3) NOT NULL DEFAULT ”,
width SMALLINT NOT NULL DEFAULT 0,
height SMALLINT NOT NULL DEFAULT 0,
contentLength INT UNSIGNED NOT NULL DEFAULT 0,
duration INT UNSIGNED NOT NULL DEFAULT 0,
— Longest in /etc/apache/mime.types is 55 chars:
— application/vnd.llamagraphics.life-balance.exchange+xml
contentType CHAR(55) NOT NULL DEFAULT ‘application/octet-stream’,
uploadFileName CHAR(100) NOT NULL DEFAULT ”,
— Longest in /etc/apache/mime.types is 7 chars:
— sv4cpio
extension CHAR(7) NOT NULL DEFAULT ‘dat’,
reviewed CHAR(1) NOT NULL DEFAULT ‘N’,
status CHAR(150) NOT NULL DEFAULT ‘Awaiting conversion.’,
dispOrder INT UNSIGNED NOT NULL DEFAULT 0,
vtype CHAR(1) NOT NULL DEFAULT ‘U’, — ‘U’ for undefined
stamp TIMESTAMP,
INDEX(cid)
);

The streams are located on the servers under the /video directory. They are indexed by the 11 character pid key in the media table. This works out so that the video files are spread across directories according to the following method. The key is broken down into subdirectory and file name such that a key of ‘abcdefghijk’ would refer to the FLV stream in the file ‘/video/a/b/cd/ef/ghijk.flv’.

The RTMP URL used to embed our JW FLV Media Player derived player contains the cid and the user’s session id (nid in sessions.) So you only need to a single SQL query which will ask if the user has purchased the video. If the user has then begin streaming, if not then start a timer which will allow only the first two minutes of video to be delivered (and seeking past this point is not allowed.)

We’re open to alternative suggestions for implementation. Security is an important aspect of this project. The following two tutorial pages detail the implementation of most of the project.

http://www.joachim-bauch.de/tutorials/red5/HOWTO-Security.txt/view
http://www.joachim-bauch.de/tutorials/red5/HOWTO-StreamCustomDirectories.txt/view

Flash, J2EE, Java, Javascript, Perl/CGI

Diablo 2 Dupe Program

December 20th, 2008

Hello i am looking for someone who can produce a program for me, here is what it needs to be able to do

i need this program to duplicate Virtual items within an online game Diablo 2 LoD ( expansion ) ,
i need this to work on their closed Battle.net servers(latest patch v1.12)

i need the program to duplicate an item of my choice multiple times.
the dupe program most be good, fast, and CANNOT BE PATCHED, it must have a Good GUI , EASY usage, and very quick duping time of multiple items.

Once proven that it works i will pay you 300 dollars for it.

ASP, C/C++, Perl/CGI , , ,

Bookmark and Share
Subscribe