Archive

Posts Tagged ‘zone’

Online Earning Zone Home Base Jobs Safdar_earningzone

December 30th, 2011 Comments off

Earning Zone Providing a Great Opportunity For ALL Types Of Home Base Jobs On Internet Part-Time Or Full-Time Handsome Salary Within Monthly Or Weekly Basis,True Earning And Very Cheap Rate On Data Entry Payment Will Garrented Every 10 Days Without Saving Target Or Without Time Limitation No Send Any File On Any Particular Email Just Doing Only Work And Reciving Our Handsome Earning Every ten Days,EarningZone Providing Ad Posting Job First Time In World To Earn Monthly Basis Salary 15,000 to 35,…

Create Zone Finder Widget For Gardening Website

December 28th, 2011 Comments off

We are looking for someone who can create a gardening widget for our website.

Here is the functionality:
Someone in the US can enter their zipcode, and click “find” or “go”, and the Zone Finder will match their US zip code with a horticultural growing zone.

We want the widget to mimic this:
http://www.arborday.org/webtools/hortzones/registration.cfm

We also want to embed links into this widget if someone else wishes to use it on their site.
Budget is $100.
Thanks.

Paypal Express Checkout Integration With Mvs

December 6th, 2011 Comments off

My Oscommerce 2.3.1 Needs Tweaking 2

October 3rd, 2011 Comments off

I will try to explain as best as I can:

1. MVS – Free shipping module works fine when I use $ as the default currency, but when the default currency is

Extended Time Zone C++

September 25th, 2011 Comments off

Ok first let me explain I am a disabled vet and I have been in the hospital till friday. I took a crack at this assignment but I cant do it. So if someone can please please help me and explain why each step is the way it is that would be awesome. Remember this class is a basic class for me so to much and they will know its not me.

1. You will use Visual Studio – C++. If you are using the remote lab (Citrix), log in and locate the Visual Studio icon. If you are using a local install of Visual Studio, locate the program icon on the desktop or in the Programs menu.
2. Launch Visual Studio.

STEP 2: Create the Project and Main Class

1. Create a new project which consists of two classes; the base Time class and a derived extTime class.
2. The base class should have data members that are used to represent the hour and the minute of both types of integers. The derived class has one additional data member that represents the time zone. This data member should have a string data type.

STEP 2: Create the Member Functions

Create a function for each of the operations listed below:

1. Base class:

Set the time.
Return the time.
Print the time.
Increment the hour.
This function will take an integer parameter, which is the hours to be added and then mod 24 in case the new value is greater than 23. If the parameter is negative, there is a chance that the new value for hour will be negative. If so, we want to turn it back into a valid positive value.

Increment the minute
This function will take an integer parameter, which is the minute to be added. We perform mod 60 in case the new value is greater than 59. If the parameter is negative, there is a chance that the new value for min will be negative. If so, we want to turn it back into a valid positive value.
A default constructor and a constructor with parameters.
2. Derived class:

Should have (in addition to the classes above) its own class.
Print, which prints the time zone in addition to the time constructor.
STEP 3: Construct Main Method

1. Construct the main method so that it can test the member functions of each of the parent and the child class by instantiating objects of these classes and calling the appropriate functions.

STEP 4: Build and Test

1. Build your project (compile your program).
2. Eliminate all syntax errors.
3. Run the program.
4. Verify results of program execution and correct any logic errors discovered.

My Oscommerce 2.3.1 Needs Tweaking

September 19th, 2011 Comments off

I will try to explain as best as I can:

1. MVS – Free shipping module works fine when I use $ as the default currency, but when the default currency is

Script For Random Distribution Of Numbers

August 26th, 2011 Comments off

Here’s the deal

i have 12 numbers

$number1 = 1;
$number2 = 2;
$number3 = 3;
$number4 = 4;
$number5 = 5;
and so on

the i have 12 div like this
<div><?php if(function_exists(‘oiopub_banner_zone’)) oiopub_banner_zone($variable1, ‘center’); ?></div>
<div><?php if(function_exists(‘oiopub_banner_zone’)) oiopub_banner_zone($variable2, ‘center’); ?></div>
<div><?php if(function_exists(‘oiopub_banner_zone’)) oiopub_banner_zone($variable3, ‘center’); ?></div>
<div><?php if(function_exists(‘oiopub_banner_zone’)) oiopub_banner_zone($variable4, ‘center’); ?></div>
<div><?php if(function_exists(‘oiopub_banner_zone’)) oiopub_banner_zone($variable5, ‘center’); ?></div>

and so on….

What i need is this. Everythime the page is refreshed or load i need the $variable1 to be $number1, next time $number2. the same goes for all. There will be 12 variables (1 – 12) all 12 variables need to distributed, but in different places, no duplication. The script has to use all 12 variables everytime and use them in different places everytime.

If you have any questions please send me a message

Php Script – Member Zone And Modules

August 21st, 2011 Comments off

We need a script (probably php) consisting of member zone for our customers and modules for interaction with other websites by http (post http queries and parsing output). Script will be used for interaction with several websites of similar purpose from one web interface. Member zone will need mysql base to store values it get from interaction modules. Interaction modules will need to use templates for parsing sites output and forming queries, we will make templates ourselves.

Wishlist & Loyalty Reward Program/zone For Ecommerce

June 20th, 2011 Comments off

I have an ecommerce and I want to add wishlist function and reward zone/loyalty program function to it.

Wishlist:
Similar but not limited to the one you can see here:
https://www-ssl.bestbuy.com/site/olspage.jsp?id=pcat17201&type=page

Reward zone/ loyalty program:
Similar but not limited to reward zone / loyalty program you see here:
https://myrewardzone.bestbuy.com/

$50 – do not post bid above this price.

The Extended Time Zone Class

May 30th, 2011 Comments off

STEP 1: Create a New Project

Create a new project which consists of two classes; the base Time class and a derived extTime class.

The base class should have data members that are used to represent the hour and the minute both of type integer. The derived class has one additional data member that represents the time zone. This data member should have a string data type.

STEP 2: Create and define member functions

Create a function for each of the operations listed below:

Base class:

* set the time
* return the time
* print the time
* increment the hour
* increment the minute
* a default constructor and a constructor with parameters.

Derived class: should have (in addition to the classes above) its own

* print which prints the time zone in addition to the time
* constructor

STEP 3: Construct Main Method

Construct the main method so that it can test the member functions of each of the parent and the child class by instantiating objects of these classes and calling the appropriate functions.

STEP 3: Create the Base Time Class
Back to top

Using the Class diagram, create the base Time class using the following specifications.

Create a property to set and get the hour attribute.
Create a property to set and get the minute attribute.
Create a default constructor that sets the hour to 12 and minute to 0.
Create a parameterized constructor that accepts the hour and minute and sets the appropriate attribute.
The increment hour method will take an integer parameter which is the hours to be added. The method needs to check if the increment is greater than 23 hours since the clock will need to roll over to the next day, but the hour should never be greater than 23 [Hint: use the modulus operator (%).] Also, if the incremented hour is less than zero, set the value to the appropriate value. For example, if the current hour is 3 and the increment is -4, the new hour would be 23.
The Increment minutes method will take an integer parameter which is the minute to be added. If the number of minutes is greater than 60, then calculate the number of hours and minutes, and add the hours to the hour attribute [Hint: use the modulus operator]. If the calculated minutes is less than zero, then reset the minutes to 0 and notify the user.
The displayTime method will display the time in 24-hour format, such as “23:45″.

STEP 4: Create the ExtendedTime Class
Back to top

Using the Class diagram, create the derived ExtendedTime class using the following specifications.

Create a property to set and get the time zone.
Create a default constructor that invokes the base class default constructor, and then sets the time zone to CDT (Central Daylight Time).
Create a parameterized constructor that accepts the hour, minute, and time zone, and invokes the base class constructor to initialize the hour and minute, and then initialize the time zone attribute.
The displayTime method should invoke the base class displayTime method and then add the time zone to the output message.

STEP 5: Create the Windows Interface Form
Back to top

Add a new form, called

Categories: C/C++, Programming Tags: , , , , , ,

Extended Time Zone Class

May 26th, 2011 Comments off

Below is what i have so far. i had part of it working and when i added more it got errors. i;d like it to ask for your time zone first and do it that way instead of how i have it right now where it asks for hour/minutes first. it needs to make sure if it turns into a negative number it returns the right time.

here’s what it should do:
1. Create a new project which consists of two classes; the base Time class and a derived extTime class.
2. The base class should have data members that are used to represent the hour and the minute of both types of integers. The derived class has one additional data member that represents the time zone. This data member should have a string data type.

Create a function for each of the operations listed below:

1. Base class:

Set the time.
Return the time.
Print the time.
Increment the hour.

This function will take an integer parameter, which is the hours to be added and then mod 24 in case the new value is greater than 23. If the parameter is negative, there is a chance that the new value for hour will be negative. If so, we want to turn it back into a valid positive value.

Increment the minute
This function will take an integer parameter, which is the minute to be added. We perform mod 60 in case the new value is greater than 59. If the parameter is negative, there is a chance that the new value for min will be negative. If so, we want to turn it back into a valid positive value.
A default constructor and a constructor with parameters.

2. Derived class:

Should have (in addition to the classes above) its own class.
Print, which prints the time zone in addition to the time constructor.

1. Construct the main method so that it can test the member functions of each of the parent and the child class by instantiating objects of these classes and calling the appropriate functions.

This is what I’ve done so far

#include <iostream>
#include <string>

using namespace std;

class Time
{

public:

string zone;//declare time zone

Time() {} //calling function
int hour, minute; //declare hour & min
void setMinute(); //sets mins
void setHour(); //sets hours
int getMinute(){return minute;};//gets minute and returns it
int getHour(){return hour;};//gets hour and returns it
void addMinute();//adds minutes
void addHour();//adds hours
void printTime();//prints time

};

class ExtTime : public Time
{
public:

ExtTime(int hour, int minute)
{
this->hour = hour;
this->minute = minute;
}
void timeZone(int, int);
void printTime();

private:

string zone;

};

void ExtTime::timeZone(int, int)
{
cout << “Enter time zone (EST, PST, MST, CST): “;
cin >> zone;

if (zone == “PST”)
cout << “The time is: ” << hour << “:” << minute << endl;

if (zone == “MST”)
cout << “The time is: ” << (hour-1) << “:” << minute << endl;

if (zone == “CST”)
cout << “The time is: ” << (hour-2) << “:” << minute << endl;

if (zone == “EST”)
cout << “The time is: ” << (hour-3) << “:” << minute << endl;

}

void Time::setHour()
{

cout << “Enter the hour: “;//asks for user input
cin >> hour;//gets user input

while (hour < 0 || hour > 23);//while loop to keep hours in correct range of 0-23
{ //hours can not equal 24 because that would start the next hour of 00:00
cout << “I’m sorry, but the hour must be between 0 and 23.” << endl;
cout << “Please re-enter the hour.” << endl;
cin >> hour;//gets user input
}
}

void Time::setMinute()
{

cout << “Enter the minutes: “;//asks for user input
cin >> minute;//gets user input

while (minute < 0 || minute > 59);//while loop to keep minutes in correct range of 0-59.
{ //minutes can not equal 60 as that would be the start of another hour
cout << “I’m sorry, but the minutes must be between 0 and 59.” << endl;
cout << “Please re-enter the minutes.” << endl;
cin >> minute;//gets user input
}

}

void Time::addMinute()
{

minute ;//increments minute by one
if(minute == 60)//mintues cant be equal to 60
{hour++ ;//adds one hour to the time if minutes equal 60
minute = 0;//resets minutes to 0

if(hour == 24)//hours cant be more than 24
hour = 0;//rest hours to 0
}
}
void Time::addHour()
{

hour ;//increments hours by one
if(hour == 24)//hours cant be equal than 24
hour = 0;//resets hours to 0

}

void Time::printTime()
{

cout << “The new time would be: “;
if(hour < 10)//adds a 0 to hour to make it more professional looking
cout << “0″;
cout << hour << “:”;

if(minute < 10)//add a 0 to minute to make it more professional looking
cout << “0″;
cout << minute;
}

int main()
{

Time myTime;
myTime.setHour();//calls function
myTime.setMinute();//calls function
int h = myTime.getHour();//gets hour
int m = myTime.getMinute();//gets hour
cout << “You entered the time as ” << hour << “:” << minute << endl;
myTime.printTime(); cout << endl;//prints time
cout << endl;//adds blank line to seperate text
myTime.addHour();//calls function to add hour
cout << “When we add 1 hour to the time”<< endl;
myTime.printTime();cout << endl;//prints time
cout << endl;//adds blank line to seperate text
myTime.addMinute();//calls function to add minute
cout << “When we add 1 hour to the time”<< endl;
myTime.printTime();//prints time
cout << hour;
cout << minute;
cout << endl;
ExtTime newTime(hour,minute);
newTime.timeZone(hour,minute);

//this will be deleted when turned in as its only to keep the window from closing once the program finishes. VB2010 ends program fast, VB2008.net does not
cin.ignore(256, ‘n’);
cout << “Press ENTER to continue…” << endl;
cin.get();
//
return 0;

}

Categories: Modification Tags: , , , , , ,

Extended Time Zone Class

May 26th, 2011 Comments off

Below is what i have so far. i had part of it working and when i added more it got errors. i;d like it to ask for your time zone first and do it that way instead of how i have it right now where it asks for hour/minutes first. it needs to make sure if it turns into a negative number it returns the right time.

here’s what it should do:
1. Create a new project which consists of two classes; the base Time class and a derived extTime class.
2. The base class should have data members that are used to represent the hour and the minute of both types of integers. The derived class has one additional data member that represents the time zone. This data member should have a string data type.

Create a function for each of the operations listed below:

1. Base class:

Set the time.
Return the time.
Print the time.
Increment the hour.

This function will take an integer parameter, which is the hours to be added and then mod 24 in case the new value is greater than 23. If the parameter is negative, there is a chance that the new value for hour will be negative. If so, we want to turn it back into a valid positive value.

Increment the minute
This function will take an integer parameter, which is the minute to be added. We perform mod 60 in case the new value is greater than 59. If the parameter is negative, there is a chance that the new value for min will be negative. If so, we want to turn it back into a valid positive value.
A default constructor and a constructor with parameters.

2. Derived class:

Should have (in addition to the classes above) its own class.
Print, which prints the time zone in addition to the time constructor.

1. Construct the main method so that it can test the member functions of each of the parent and the child class by instantiating objects of these classes and calling the appropriate functions.

This is what I’ve done so far

#include <iostream>
#include <string>

using namespace std;

class Time
{

public:

string zone;//declare time zone

Time() {} //calling function
int hour, minute; //declare hour & min
void setMinute(); //sets mins
void setHour(); //sets hours
int getMinute(){return minute;};//gets minute and returns it
int getHour(){return hour;};//gets hour and returns it
void addMinute();//adds minutes
void addHour();//adds hours
void printTime();//prints time

};

class ExtTime : public Time
{
public:

ExtTime(int hour, int minute)
{
this->hour = hour;
this->minute = minute;
}
void timeZone(int, int);
void printTime();

private:

string zone;

};

void ExtTime::timeZone(int, int)
{
cout << “Enter time zone (EST, PST, MST, CST): “;
cin >> zone;

if (zone == “PST”)
cout << “The time is: ” << hour << “:” << minute << endl;

if (zone == “MST”)
cout << “The time is: ” << (hour-1) << “:” << minute << endl;

if (zone == “CST”)
cout << “The time is: ” << (hour-2) << “:” << minute << endl;

if (zone == “EST”)
cout << “The time is: ” << (hour-3) << “:” << minute << endl;

}

void Time::setHour()
{

cout << “Enter the hour: “;//asks for user input
cin >> hour;//gets user input

while (hour < 0 || hour > 23);//while loop to keep hours in correct range of 0-23
{ //hours can not equal 24 because that would start the next hour of 00:00
cout << “I’m sorry, but the hour must be between 0 and 23.” << endl;
cout << “Please re-enter the hour.” << endl;
cin >> hour;//gets user input
}
}

void Time::setMinute()
{

cout << “Enter the minutes: “;//asks for user input
cin >> minute;//gets user input

while (minute < 0 || minute > 59);//while loop to keep minutes in correct range of 0-59.
{ //minutes can not equal 60 as that would be the start of another hour
cout << “I’m sorry, but the minutes must be between 0 and 59.” << endl;
cout << “Please re-enter the minutes.” << endl;
cin >> minute;//gets user input
}

}

void Time::addMinute()
{

minute ;//increments minute by one
if(minute == 60)//mintues cant be equal to 60
{hour++ ;//adds one hour to the time if minutes equal 60
minute = 0;//resets minutes to 0

if(hour == 24)//hours cant be more than 24
hour = 0;//rest hours to 0
}
}
void Time::addHour()
{

hour ;//increments hours by one
if(hour == 24)//hours cant be equal than 24
hour = 0;//resets hours to 0

}

void Time::printTime()
{

cout << “The new time would be: “;
if(hour < 10)//adds a 0 to hour to make it more professional looking
cout << “0″;
cout << hour << “:”;

if(minute < 10)//add a 0 to minute to make it more professional looking
cout << “0″;
cout << minute;
}

int main()
{

Time myTime;
myTime.setHour();//calls function
myTime.setMinute();//calls function
int h = myTime.getHour();//gets hour
int m = myTime.getMinute();//gets hour
cout << “You entered the time as ” << hour << “:” << minute << endl;
myTime.printTime(); cout << endl;//prints time
cout << endl;//adds blank line to seperate text
myTime.addHour();//calls function to add hour
cout << “When we add 1 hour to the time”<< endl;
myTime.printTime();cout << endl;//prints time
cout << endl;//adds blank line to seperate text
myTime.addMinute();//calls function to add minute
cout << “When we add 1 hour to the time”<< endl;
myTime.printTime();//prints time
cout << hour;
cout << minute;
cout << endl;
ExtTime newTime(hour,minute);
newTime.timeZone(hour,minute);

//this will be deleted when turned in as its only to keep the window from closing once the program finishes. VB2010 ends program fast, VB2008.net does not
cin.ignore(256, ‘n’);
cout << “Press ENTER to continue…” << endl;
cin.get();
//
return 0;

}

Categories: Modification Tags: , , , , , ,

U.s. Only – Pacific / Mountain / Central Time Zone

April 21st, 2011 Comments off

First please refer to the project title: I am looking for people in the United States because of time zone considerations. US only.

We do a wide variety of web development, coding, and graphic design projects and need help with the overflow.

You must be available on Google Talk, and periodically available by phone.

Please respond with:

1. Your skill set(and strengths)
2. Your website or portfolio
3. The days of the week you work
4. The hours of the days you work
5. Your wholesale rate to the trade

You must be able to accept payment via PayPal, ScriptLance, Google or Payoneer. You must have persistent connectivity. Please feel free to attach a resume or CV if you have one.

Please respond with the keyword HAGAJI so we know you have read and understand this and pay attention to detail.

Please respond with the keyword HAGAJI so we know you have read and understand this and pay attention to detail.

Please respond with the keyword HAGAJI so we know you have read and understand this and pay attention to detail.

The Extended Time Zone Class

March 18th, 2010 Comments off

This is a C++ project. Pretty simple.

I have attached a sample output as something to reference.

STEP 1: Create a New Project

Create a new project which consists of two classes; the base Time class and a derived extTime class.

The base class should have data members that are used to represent the hour and the minute both of type integer. The derived class has one additional data member that represents the time zone. This data member should have a string data type.

STEP 2: Create and define member functions

Create a function for each of the operations listed below:

Base class:

* set the time
* return the time
* print the time
* increment the hour
* increment the minute
* a default constructor and a constructor with parameters.

Derived class: should have (in addition to the classes above) its own

* print which prints the time zone in addition to the time
* constructor

STEP 3: Construct Main Method

Construct the main method so that it can test the member functions of each of the parent and the child class by instantiating objects of these classes and calling the appropriate functions.

let me know of any questions thanks!

Categories: C/C++ Tags: , , , , , ,

Desktop Media Player

March 16th, 2010 Comments off

We need a media Player desktop application that runs under Windows XP pro and Windows 7. The Player will run full screen. The cursor and the Windows taskbar shouldn’t be visible.

The program plays in two zones of the screen on a static image background. The media player loads content in the background, and play it without any pause in between.

In Zone 1 the player will display video files with audio. In Zone 2 the Player will display image files. All content files will be stored locally.

The content to be displayed in each zone will be based on TXT playlists locally stored. The programmer should provide the Client with a sample TXT playlist.

The programmer should indicate the most appropriated technology to be used for developing. The programmer should indicate the most appropriated format, resolution and settings for the videos to be displayed in Zone 1 and settings for the images to be displayed in Zone 2.

The player will keep a log of the content played in Zone 1. The log format will be a

Phpbb Modifications

March 10th, 2010 Comments off

I try to list the changes in order of importance, from most urgent to the least.
1)Changing of the mail administrator

2)the random image generator for registration is often indecipherable you can not understand what was written, nor indicate whether they accept uppercase and lowercase letters, maybe put a simpler because then there is also the arithmetic to be included

3)upon registration you are alerted to the receipt of an email with a link to activate the profile, and only on this mail link reports an error in the database, as if the registration had not been successfully completed, whereas the profile is and is already active, or delete in whole or part of this system error

4)can deliver the ban command to a user or a group without this being an admin of the forum and then log into the control panel General

5)approaches in the management of a forum I like availability: moderator – admin – all – registered – private notri currently all registered users so if we pass through some private to a degree to limit some access? should create another profile?

6)add in the forum can insert YouTube video link to the site

7)add in the forum can enter strings like audio for video

8)change the navigation of the pages by inserting “initial” and “final” instead of front and back replaced by the “>”

9)reset the statistics that correspond to when there was change and allow then riaggiornino

10)increase the stats of the homepage by entering multiple entries: no registered users, no discussions, no members online, no guest online, no news, for example

11)allow access to the download section for registered users only

12)hit the homepage and the forum in all resolutions since motions in cases is displaced from the center or one or the other

13)set the home page news in the middle and allow the insertion of images loaded from the web, YouTube videos and audio, in this case choose pure images of fixed format in order not to unpack the width

14)make the forum adaptable to different resolutions and thus change the image header by creating a fixed central zone, two straps and expandable sides and logo zone login

15)the current enlargement of the forum is outside the auto shaped profile, see if you can make internal

16)insert a space between the header for a sponsor and the forum itself

17)enter a zone on the news where to put random banner

18)closure of the home and the Forum with an aesthetic similar to the head (if you want to talk about it verbally)

In conclusion I would ask how you can do to log on and find a post quickly between periodic backups that I made. I made systematically through the administration panel for complete backups of the forum, how would I act if I wanted to call one a sort of a “parallel space” so that we can fish out some information and without creating damage to the site today?
I hope I have been clear, we could assess whether it is feasible to upgrade Phbb 3.

Thanks.

Whmcs Module 4psa Dns Manager

March 8th, 2010 Comments off

We are looking for a API script to create DNS zones in 4PSA DNS manager trigerred by WHMCS.

- As soon as a domain name is ordered in WHMCS we need the script to create a zone in DNS Manager.
- We want define the DNS package setting such as client Zone SOA Settings and default IPadresses in WHMCS.
- We want to define the client permissions in DNS manager in WHMCS.
- We want to define the number of zone a client is allowed in WHMCS.

Categories: PHP Tags: , , , , , ,

Quick Script Instillation Done

February 5th, 2010 Comments off

Good day,

I am looking for a “Script Installer,” who can do the following Script for me.

This Job is basically to (uploading and install) the Script to my Server. The program is basically a (Self Hosted) “Tracking Script” which tracks advertising traffic. And it needs to be installed Correctly by the winning Coder.

*Please Note:

I need this done quickly! If you are a (Pro- in Installing Scripts), this should be very very easy for you. Having said that, please do NOT bid, if you are Not a Pro. I do NOT want to waste my time with amateurs who have No Experience or Skills to do this Job for me.

So, if you want to be my “Go-To- Coder” who does all of (My Script Installs), then you need to (Prove Yourself) to me. The way you can do that is, by doing 1- Small Job for me, like (This One). No Worries, you Will get Paid.

*But, I will be looking at the following: (Your Speed, Your Skills, and Self Sufficiency). In other words, I want to see ‘How Fast’ you get it done? if you actually ‘Know What’ You are Doing?, and if you can do it ‘By Yourself’ (without) My Supervision. Of course, I will give you (All Access you need, as well as the Full Script Files).

–>>Please know this, I do NOT have time to Hold your hands and help you learn. And I do NOT have time for you to figure out things, especially on my time. You just need to be a (Professional Script Installer) that knows the following Coding Languages: (PHP, HTML, Perl/CGI, Java, API), mostly “PHP.” And you need to know the following(Database) well: (MySQL), because that’s what I use.

*Also, If I do Pick You, I want a (Flat-Rate) on “All” (Script Instillations) types of work I give you. Because this will be an… “On-Going” work offer.

**I have (Several Scripting) Job for you, on a Weekly basis.

***One last thing, if I need you, you MUST be available to Chat on IM. So, you need to be available at (My Time Zone), which is “East Coast” Time Zone. I am in the US (EST), so you need to match my time zone, especially at the beginning of the work, so that I may answer any questions you may have and also give you some instructions (if need be).

—->>I have attached the Script I need installed on my Server for your Review.

*Bid wisely!

Looking forward to your Bids!
~rex2009

Zencart Zone Weight Fix 2

December 18th, 2009 Comments off

We have already created pages to customize the shipping for our zencart site based upon weight however we need them reconfigured to work for our new site from the admin. Changes must obviously reflect upon checkout.

Please find files attached for reference.

Buddyzone – New Features

December 4th, 2009 Comments off

100% complete clone of potspace.com!
I do no that it uses the “Buddy Zone Script”

However.. It has tons more features added.. You can see the features just by signing up and looking at it. It’s way more like the original myspace.

Buddy Zone Demo – http://buddyzone.vastal.com/
Potspace.com – http://potspace.com

I want all the features of potspace!
at one point PotSpace.com (Chris) was selling his modified script.
but I cant get in contact.

The site will have nothing to do with pot. I just want the script!

I have Buddy Zone 2.0 also.. not current.. I want all current stuff.” Right now.. Potspace.com is having major.. issues… but you can see what i want like act as if the errors are not their.

Thanks.

Zencart Zone Weight Fix

November 29th, 2009 Comments off

We have already created pages to customize the shipping for our zencart site based upon weight however we need them reconfigured to work for our new site from the admin. Changes must obviously reflect upon checkout.

Please find files attached for reference.

Buyer Zone Clone

November 26th, 2009 Comments off

I want a site built as a clone like www.buyerzone.com but there would be only 3 categories. I would want the same capabilities as that site. I would need the home page designed as well. I would also want the site submitted on all the major search engines once completed.

Programming Time Zone Calls

November 24th, 2009 Comments off

What we need is, when a customer submits a lead in freesitesignup.com (They have to enter the name, the email and a valid phone number), the call should be made between 8 am and 9 pm. Right now most of the calls are being made at any hour of the day (e.g. at 6 am, 12 pm). It is simply to make sure when calls are submitted that they are submitted within the designated time frame.

When you submit a call, you specify when you’d like it delivered, for example:

action=”0″ menuid=”28978-56331813″> promptid=”1″ filename=” kat2.wav”/> number=”aaabbbcccc” dateandtime=”11/18/2009 11:28 AM” callid=”48609″/>

Our account is set to the Pacific time zone, this time is Pacific time.

The Extended Time Zone Class

November 15th, 2009 Comments off

Create a new project which consists of two classes; the base Time class and a derived extTime class.

The base class should have data members that are used to represent the hour and the minute both of type integer. The derived class has one additional data member that represents the time zone. This data member should have a string data type.

STEP 2: Create and define member functions

Create a function for each of the operations listed below:

Base class:

set the time
return the time
print the time
increment the hour
increment the minute
a default constructor and a constructor with parameters.
Derived class: should have (in addition to the classes above) its own

print which prints the time zone in addition to the time
constructor
STEP 3: Construct Main Method

Construct the main method so that it can test the member functions of each of the parent and the child class by instantiating objects of these classes and calling the appropriate functions.

Categories: C/C++ Tags: , , , , , ,

World Digital Zone

November 15th, 2009 Comments off

I am planning to start online business sale with general market orders of digital products in which half portion will be of garments/leather products. e-commerce work shud be done.
different attraction labels but best quality picture .paypal payments + all cards payment shud be online.
i can give sample website on request.
regards

C++ Time Zone

September 13th, 2009 Comments off

I have attached a document that better explains the details of this project. If you have any questions let me know.

Categories: C/C++ Tags: , ,

Expand Banner Ad Script Php

August 31st, 2009 Comments off

=====================================================================
This is a project or a job for my Pay Banner Ad PHP Script.

I’ve been delaying this for months.

I try to do it myself but it seem a lot more *advanded*
programming than I normally can do. Meaning almost all files
must be completely modified.

Now I don’t want this script to be turned into an PRO like
OpenX, Adbrite, etc. Would like it to be (if possible) simple ad system.

Do what must be done.
=====================================================================

********************************************************************
********************************************************************
CAN THIS JOB BE DONE WITH THE CURRENT SCRIPT? LETS ME KNOW.
********************************************************************
********************************************************************

Currently, the ad script only has one sized banner ad (zone) which is normally 468×60.
The one simple code:
< php include (‘http://www.domain.com/*ADFOLDER*/banner.php’) >

Customers who have my script (and others who are interested but have not yet purchase) have been contacting (requesting) me about adding more (unlimited) zones.

IE:
zone 1: top page (468×60)
zone 2: bottom page (468×60)
zone 3: left side page (150×150)
zone 4: right side page (150×150)
zone 5: bottom2 page (80×30)
so on…

Codes:
< php include (‘http://www.domain.com/*ADFOLDER*/banner.php?zone=1′) >
< php include (‘http://www.domain.com/*ADFOLDER*/banner.php?zone=2′) >
< php include (‘http://www.domain.com/*ADFOLDER*/banner.php?zone=3′) >
so on…

ALSO! The script currently allow admin/webmaster/owner to accept payments in USD, EURO currencies. Just thought I should mention it.

=====================================================================
Requirements:
~ *Unlimited* Ad Zones – widthxheight, zone name,..
~ *Unlimited* ad products, prices..
~ modify banner.php (?zone=X) – whatever is possible
~ advertisers account area pages
~ admin area pages
=====================================================================

********************************************************************
********************************************************************
CAN THIS JOB BE DONE WITH THE CURRENT SCRIPT? LETS ME KNOW.
********************************************************************
********************************************************************

Please bid a reasonable (not insane) price for the job.

If you have questions or anything you need to ask me, PLEASE DO!

Add Zone To Joomla Template

August 14th, 2009 Comments off

Urgent: I need a new zone position coded into my Joomla theme (Solar Sentinel by RocketTheme.com).

Please don’t bid if you can’t have it done by this weekend.

Redesign Standard Buddy Zone

July 29th, 2009 Comments off

I have a buddy zone script but don’t feel it’s professional looking enough. I am looking to have the site redesigned to include search results (if needed), header, footer, and member profile areas.

Can you do this?

Google Maps Overlay

July 15th, 2009 Comments off

I have a KML file that shows the boundaries of an enterprise zone. This is working fine and the zone boundaries show up over the map. What i want is for someone to be able to put their address in a search box and have google maps show if that address is within the zone.

Original Website Portal

July 6th, 2009 Comments off

I need to create an italian-english website portal.
For the italian zone….i need it to autoupdate its content day by day with most relevant today news from italy and from the world(written in italian language)this updating method should not be made in javascript because i read that google bots will not be able to read it so this will not help me on serp.(the autoupdating option will be managed from the admin panel in all its aspects)
I need that when a people enter my websites find the most relevant news witten in italian and have the possibility to comment them in seconds (like a kind of autoupdating blog).they will also have the possibility to vote “Yes or no” near each fact with a simple click. and to see results after they have voted.
i want also to be able to manually add my posts anyway and they can vote or comment them too.
I want it to have rss feed too.
On the main page of the site (on the right) there should be a google search bar(a small one) so that people can use my portal as their main home page.google results will display directly on my page( a very small and not desturbing bar of the site will remain up in the the top frame).
+ ebay search bar(with results that are listed directly on my webpage and then if clicked i will earn money with ebay affiliate program. i do not know if this is possible anyway let me know if it is not.)
i also need that the portal is integrated with google adsense and ebay affiliate images in all pages.
the portal should have the possibility to add a forum zone too(integrated with google adsense and ebay affiliate links too).anyway i do not need you make any forum now.
the portal should also have an youtube bar so people can search youtube videos inside a big frame of my website and will have my top bar always visible if they want to do other things on my website.

the portal should have an admin panel where it is possible to easily and fast change the keywords of all pages and manage affiliations for: google adsense, ebay, clickbank, amazon + manage banners content and general layout ,links + images and buttons.
the admin panel should have more functions possible and an easy structure.
the site will have an english zone too with the same structure but its own content (autoupdating contenct with ENGLISH news (no more italian this time)etc etc and all functions are integrated with adsense+ebay+amazon+clikbank.(everything can be managed from the admin panel)

graphich for the whole portal should be good, clear and light…related to universe space mysteries and human evolution…this is because the website will talk about arguments like: the world today, political facts, philosophy, history,mysteries etc etc.

i see that many ready turnkey websites have good integration with affiliate programs but i want mine to be a sort of portal where people can vote comment and discuss about actual news(autoupdated) or things posted by me and they have everything under control (i mean google search bar,ebay search bar,youtube search bar,a facebook button+a myspace button + twitter etc etc so they are fast redirected to the place they want if they want it and my portal website will remain open since all these redirection will open a new page or some of they will remain in a frame of my page. i still need to understand what is better about this).

site has to be easy light and clear…not flash heavy content etc etc.
it has to be an all in one portal for people that want to stay updated with facts,express their votes and opinions and want to have all the most relevant web under control at a click far (youtube ebay facebook myspace google etc etc)

this is my idea anyway suggestion are always accepted.

remember that the website has to be made with an italian zone and an english one.
so i do not know how affiliation work in this case…anyway i want affiliate images or links are in the same language of the user.
i want that when an user came on the site he is automatically placed on his own language zone(ip autochecking?) and have the possibility to change the zone just clicking one flag at the top of the page.
autoupdating content will be in english for the english zone and in italian for the italian one.
(autoupdating contenct options will be in the admin panel so i can change everything about it to take news from everywhere i prefer. let me know if this is possible.)

i do not have idea if this is an easy or an hard work for a good programmer.
all i can say is that i will not give this work to the first man that say me he can.
i want this to be a good project and made in the best possible way.
original content, original ideas and original structure and design.

this is what i am looking for.

Ea For Mt4 Programer Required

June 28th, 2009 Comments off

*Input Slippage value (any vlaue ex. 1,1.5,2,4.5

A Simple Javascript Snippet

June 19th, 2009 Comments off

Ok, so I am not well versed with javascript and do everything with php. But this one calls for a bit of js manipulation.

For someone who knows JS this should be a five minute job.

So, we are using openx for ad management. The problem is that placing the openx javacode all over the page is simply too annoying.

so we had created a single php function called disp_ads where it would be fed the ad_zone and another variable and then it would display the ad.

this is one it looks like:

function ad_disp_raw ($ad_zone, $ad_n) {
?&gt;
&lt;script type=’text/javascript’&gt;&lt;!–//&lt;![CDATA[
var m3_u = (location.protocol=='https:'?'/cp/adserver/www/delivery/ajs.php':'/cp/adserver/www/delivery/ajs.php');
var m3_r = Math.floor(Math.random()*99999999999);
if (!document.MAX_used) document.MAX_used = ',';
document.write ("&lt;scr"+"ipt type='text/javascript' src='"+m3_u);
document.write ("?zoneid=&lt;?=$ad_zone; ?&gt;");
document.write ('&amp;amp;cb=' + m3_r);
if (document.MAX_used != ',') document.write ("&amp;amp;exclude=" + document.MAX_used);
document.write (document.charset ? '&amp;amp;charset='+document.charset : (document.characterSet ? '&amp;amp;charset='+document.characterSet : ''));
document.write ("&amp;amp;loc=" + escape(window.location));
if (document.referrer) document.write ("&amp;amp;referer=" + escape(document.referrer));
if (document.context) document.write ("&amp;context=" + escape(document.context));
if (document.mmm_fo) document.write ("&amp;amp;mmm_fo=1");
document.write ("'&gt;&lt;/scr"+"ipt&gt;");
//]]&gt;–&gt;&lt;/script&gt;&lt;noscript&gt;&lt;a href=’/cp/adserver/www/delivery/ck.php?n=&lt;?=$ad_n; ?&gt;&amp;amp;cb=INSERT_RANDOM_NUMBER_HERE’ target=’_blank’&gt;&lt;img src=’/cp/adserver/www/delivery/avw.php?zoneid=&lt;?=$ad_zone; ?&gt;&amp;amp;cb=INSERT_RANDOM_NUMBER_HERE&amp;amp;n=&lt;?=$ad_n; ?&gt;’ border=’0′ alt=” /&gt;&lt;/a&gt;&lt;/noscript&gt;
&lt;?
}

// function ad_disp is a generic add display module from phpads
function ad_disp ($ad_zone, $ad_n) {
?&gt;
&lt;fieldset class=ads&gt;
&lt;legend&gt;ADVERTISEMENT&lt;/legend&gt;
&lt;? ad_disp_raw ($ad_zone, $ad_n); ?&gt;
&lt;/fieldset&gt;&lt;?

}

———
So as you can see, sometimes we call the ad_disp function which displays a little fieldset around the ad or we can call the ad_disp_raw function directly if we don’t want the fieldset around the ad.

—-&gt; the job:
we need the same methodology done but ALL is java. So, no php function but a java function PLUS the call.

So, really all one needs to do is write two js functions where one calls the other (see above php functions) and their call syntax – where all we do is call the function with the two variables.

right now the function calls look like this:

&lt;? ad_disp{12, 1233s32); ?&gt;
so we want a call that is as simple as this!

—&gt; this needs to be done rightaway. so if you can’t do this in less than an hour don’t bid please.

Cre-loaded 6.3b2b Project (2)

May 7th, 2009 Comments off

We use creloaded 6.3 B2B latest version and need some adjustments added (preferably with standard modules).

We will alter our system ourselves so need accurate simple

Cre-loaded 6.3b2b Project

April 28th, 2009 Comments off

We use creloaded 6.3 B2B latest version and need some adjustments added (preferably with standard modules).

We will alter our system ourselves so need acurate

Quick Project – Flash Glow

April 19th, 2009 Comments off

Hello, project is to make the “Game zone” and “Welcome to game zone” on my website polargammon com glow From left to right, game zone first, then continues to welcome to game zone.
You can see such example on http://www.loftstory.tqs.ca/
Look at “Loft story 6″ on the left, under the eye.
It can be slower, but thats just an example.

This animation should start when arriving on the website, refreshing the page or moving mouse cursor over.

I have attached the image to the project so you could be able to start the project imediately when I choose you.

I want a quality feeling, and a quick job.

PS : I might need help to embed the animation on my script.

Happy bidding

Thanks

Zone Spider Script

April 11th, 2009 Comments off

Greetings,

we are in need of a script again. Now this are our requirements:

1) The script needs to be able to fetch the data of all registered domains of a certain top level (currently we need it for .ch, but needs to be expandable to other top levels).

2) The script needs to be open source and our copyright.

3) Must not use whois service. Must not take ages (literally weeks or months) to complete one scan.

4) Script should preferably be done in PHP

Finally let me mention, this is basically about the idea how to fulfill this job rather than about the programming issue (since the programming itself should be easy then). We thought for the start just using random patterns of letters and numbers, doing ping or fping or dig on the nameservers of the registry, but this takes ages. So we

Swoopo Clone Time Zone

April 5th, 2009 Comments off

looking for someone to set my time zone and my paypal email.

Bear