Archive

Posts Tagged ‘telephone’

Telephone / Voip Cdr Billing System

January 16th, 2012 Comments off

The software we want built in PHP and MySQL with a web interface and will provide a full end to end telecom billing solution. Our supplier will provide the calls, rental, new service activation and service ceasing as CSV’s, on a daily, weekly and monthly basis. These will be uploaded into the software and it will then process them and create bills for the customer. Each line of the CSV will have a number associated with it. This master number will belong to a customer. Customers will be on diffe…

Uk Telephone Number Data

January 9th, 2012 Comments off

We need a company where we can provide UK names/addresses and you will find us the telephone number for that person/address.

Must be able to provide ex-directory numbers.

Database Qualification Project

November 8th, 2011 Comments off

Project:

Calling 3000 USA organizations and obtaining the personal email address and direct telephone numbers of the contact within the database. The databases that we will provide you with are highly accurate databases of senior executives, and have their full name, job title, company name, and location. It obviously does not provide their telephone number or email address which you will need to obtain.

Please provide a quote for the above project example. We require your best quote per accurate record:

Any person involved in this project, must have:-

Excellent command of English and telephone manner.

Can communication clearly with Senior Managers in Fortune 500 companies, and locate and qualify the correct person.

Highly proficiency level with MS Office and the Internet.

100% typing accuracy.

If appropriate, an ability to understand our events and the target market.

We require the following information in order to review your work. We will not consider applicants unless this is provided:
Please detail the methodology/tools you would use to undertake and complete these types of projects.

Please provide detail of the script/pitch you would use?

Please provide an example of reporting you would provide?

Kind Regards
Selina Mirpuri
WCBF

Telefonfreund (engl. Telephone Friend)

November 5th, 2011 Comments off

We offer an emotional online service where real people call our customers on the phone and tell them that they are awesome..Great as a gift

slogan:
Bring happiness to your friends and family!
Can a call make a difference on you day?

more feminine, young, modern, playful

Pbx Linksys Telephone System Support

September 25th, 2011 Comments off

Looking for someone good with pbx telephone system as i have currently a system installed in an office which needs some adjustments and will need monthly support on it.

Procede Et Sysetme De Paiement Electronique Via Telephone Mo

July 25th, 2011 Comments off

Money mobile est une invention qui concerne un mode de paiement par t

Categories: Programming Tags: , , , , , ,

Full Time Telephone Sales Agent And Website Content Agent

April 27th, 2011 Comments off

We currently have 2 vacant position and we are seeking self motivated and highly disciplined individual to apply.

We require you to work 40 hours per week hours to arrange making outbound calls to the UK, (it is essential you have that allows you to make unlimited call to UK landline)

You must speak Excellent English.

further details about job
Outbound Call Center

Telephone Interviews – Us Only

April 4th, 2011 Comments off

I need someone to call 12 schools – I will supply the contact info – and ask about 8 questions to an admissions representative. I need you to record these phone conversations, then send me the audio. I will give you the questions to ask. Each call should take no more than 15 minutes.

You must be living in the US and speak perfect English. I would prefer a female to a male, but I am open to a male.

Money will be placed in escrow and released once I get the audios. I have over 60 perfect reviews, so this shouldn’t be a problem. This is a good chance for someone to get an easy 10 review.

Thanks!

Employee Database Sql

February 3rd, 2010 Comments off

I need to do the following with my code that is attached.

4.4 how many people are salaried and how many are regular
4.5 Calculate the minimum salary for all salaried employees
4.6 Calculate the minimum wage rate for all regular employees
4.7 Calculate the average wage for each eeo-1 classifications
4.8 Calculate the maximum salary for exempt employees and the maximum salary for non-exempt employees
4.9 Calculate the minimum salary for exempt employees and the maximum salary for non-exempt employees

CREATE TABLE Employee
(Emp_id int primary key identity(1,1) NOT NULL,
Last_name varchar(25),
First_name varchar(25),
Address varchar(40),
City varchar(15),
State char(2),
Telephone_area_code varchar(3),
Telephone_number varchar(8),
Job_title varchar(50),
Hire_date DATE,
Wage money,
Gender char(1) ,
Race varchar(25),
Age int );

CREATE TABLE Job_title
(Job_title varchar(50) primary key NOT NULL,
EEO_1_Classification varchar(30),
Job_description varchar(250),
Exempt_Non_Exempt_Status bit);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Edelman’, ‘Glenn’, ’175 Bishops Lane’, ‘La Jolla’, ‘CA’, ’629′, ’555-0199′, ‘Cashier’, ’10-07-2003′, 10.75, ‘M’, ‘Caucasian’, 64);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘McMullen’, ‘Eric’, ’763 Church St’, ‘Lemon Grove’, ‘CA’, ’619′, ’555-0135′, ‘Bagger’, ’11-01-2002′, 6.75, ‘M’, ‘Caucasian’, 20);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Slentz’, ‘Raj’, ’123 Torrey Dr’, ‘North Clairmont’, ‘CA’, ’619′, ’555-0123′, ‘Assistant Manager’, ’06-01-2000′, 48000, ‘M’, ‘Asian’, 34);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Broun’, ‘Erin’, ’2045 Parkway Apt 2B’, ‘Encinitas’, ‘CA’, ’760′, ’555-0100′, ‘Bagger – 30 hours/wk’, ’03-12-2003′, 6.75, ‘F’, ‘Caucasian’, 24);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Carpenter’, ‘Donald’, ’927 Second St’, ‘Encinitas’, ‘CA’, ’619′, ’555-0154′, ‘Stocker’, ’11-01-2003′, 7.50, ‘M’, ‘African American’, 18);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Esquivez’, ‘David’, ’10983 N Coast Hwy Apt 902′, ‘Encinitas’, ‘CA’, ’760′, ’555-0108′, ‘Asst. – Butchers & Seafood Specialists’, ’07-25-2003′, 9.25, ‘M’, ‘Hispanic’, 25);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Sharp’, ‘Nancy’, ’10793 Montecino Rd’, ‘Ramona’, ‘CA’, ’858′, ’555-0135′, ‘Cashier’, ’07-12-2003′, 10.50, ‘F’, ‘Caucasian’, 24);

INSERT INTO Job_title (Job_title, EEO_1_Classification, Job_description, Exempt_Non_Exempt_Status)
VALUES (‘Accounting Clerk’, ‘Office Clerical’, ‘COmputes, classifies, records, and verifies numerical data for use in maintaining accounting records’, 0);

INSERT INTO Job_title (Job_title, EEO_1_Classification, Job_description, Exempt_Non_Exempt_Status)
VALUES (‘Assistant Manager’, ‘Officials & Managers’, ‘Supervises and coordinates activities of workers in department of food store. Assists store managerin daily operations of store’, 1);

INSERT INTO Job_title (Job_title, EEO_1_Classification, Job_description, Exempt_Non_Exempt_Status)
VALUES (‘Bagger’, ‘Sales Workers’, ‘Places customers orders in bags. Performs carryout duties for customers’, 0);

INSERT INTO Job_title (Job_title, EEO_1_Classification, Job_description, Exempt_Non_Exempt_Status)
VALUES (‘Cashier’, ‘Sales Workers’, ‘Operates cash register to itemize and total customers purchases in grocery store’, 0);

INSERT INTO Job_title (Job_title, EEO_1_Classification, Job_description, Exempt_Non_Exempt_Status)
VALUES (‘Computer Support Specialist’, ‘Technician’, ‘Installs, modifies, and makes minor repairs to personal computer hardware and software systems, and provides technical assistance and training to system users’, 0);

INSERT INTO Job_title (Job_title, EEO_1_Classification, Job_description, Exempt_Non_Exempt_Status)
VALUES (‘Director of Finance & Accounting’, ‘Officials & Managers’, ‘Plans and directs the finance and accounting activities for Kudler Fine Foods’, 1);

INSERT INTO Job_title (Job_title, EEO_1_Classification, Job_description, Exempt_Non_Exempt_Status)
VALUES (‘Retail Assistant’, ‘Craft Workers’, ‘Obtains or prepares food items requested by customers in retail food store’, 0);

INSERT INTO Job_title (Job_title, EEO_1_Classification, Job_description, Exempt_Non_Exempt_Status)
VALUES (‘Stocker’, ‘Office/Clerical’, ‘Stores, prices and restocks merchandise displays in store’, 0);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Avery’, ‘Ledonna’, ’198 Governor Dr’, ‘Del Mar’, ‘CA’, ’619′, ’555-0135′, ‘Asst Bakery & Pastry’, ’3-28-2003′, 10.50, ‘F’, ‘African American’, 23);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Drohos’, ‘Craig’, ‘Null’, ‘Selena Beach’, ‘CA’, ’619′, ’555-0202′, ‘Assistant Manager’, ’6-15-2000′, 51000, ‘M’, ‘Caucasian’, 32);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Meier’, ‘Elaine’, ’9703 Orchid Lane’, ‘Del Mar’, ‘CA’, ’858′, ’555-0112′, ‘Cashier’, ’9-10-2000′, 10.25, ‘F’, ‘Asian’, 51);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Quillian’, ‘Stanley’, ’98542 Wandering Road Apt 2-B’, ‘Del Mar’, ‘CA’, ’760′, ’555-0198′, ‘Asst Butchers & Seafood Specialist’, ’12-6-1999′, 11.50, ‘M’, ‘American Indian’, 29);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Tyink’, ‘Thomas’, ’87592 Pacific Heights Blvd’, ‘Del Mar’, ‘CA’, ’858′, ’555-0159′, ‘Asst Bakery & Pastry’, ’5-1-2001′, 9.50, ‘F’, ‘Asian’, 35);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Vance’, ‘Brent’, ’927 Cynthia Lane’, ‘Spontney’, ‘CA’, ’858′, ’555-0147′, ‘Bagger’, ’3-29-2001′, 6.75, ‘M’, ‘Caucasian’, 22);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘McNamara’, ‘Juanita’, ’923 Parkway’, ‘Roway’, ‘CA’, ’619′, ’555-0500′, ‘Accounting Clerk’, ’10-29-1999′, 12.75, ‘F’, ‘Hispanic’, 32);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Nguyen’, ‘Meredith’, ’10583 Arenas St’, ‘La Jolla’, ‘CA’, ’619′, ’555-0102′, ‘Computer Support Specialist’, ’9-27-1998′, 21.50, ‘M’, ‘Caucasian’, 25);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Stephens’, ‘Harvey’, ’7863 High Bluff Drive’, ‘La Jolla’, ‘CA’, ’619′, ’555-0123′, ‘Dir of Finance and Acct’, ’3-9-1999′, 75000, ‘M’, ‘Caucasian’, 51);

INSERT INTO Employee (Last_name, First_name, Address, City, State, Telephone_area_code, Telephone_number, Job_title, Hire_date, Wage, Gender, Race, Age)
VALUES (‘Vu’, ‘Matthew’, ’981 Torrey Pines Road’, ‘La Jolla’, ‘CA’, ’619′, ’555-0138′, ‘Computer Support Specialists’, ’8-16-2000′, 18.50, ‘M’, ‘Asian’, 26);

– 3.2 verifies data in tables
SELECT * FROM Employee

SELECT * FROM Job_title

–3.3 joins two tables and restricts data by wage
SELECT *
FROM Employee
JOIN Job_title
ON Employee.Job_title=Job_title.Job_title
WHERE Wage
BETWEEN 9.00 and 13.00

–3.4 Joins two tables and uses hire_date to restrict data
SELECT *
FROM Employee
JOIN Job_title
ON Employee.Job_title=Job_title.Job_title
WHERE Hire_date
BETWEEN ’1-1-1999′ AND ’12-31-2009′

–3.5 Sorts data by telephone area code
SELECT *
FROM Employee
JOIN Job_Title
ON Employee.Job_Title = Job_Title.Job_Title
WHERE Telephone_Area_Code
LIKE ’619′

Categories: SQL Tags: , , , , , ,

Telephone Numbers….

December 30th, 2009 Comments off

Hi!
I am interested for a script where i can list unlimited telepohone numbers in a column(for example 10000, 20000, 50000, … numbers). I want this script for only one reason to do not repeat the same telephone number twice or more. The number that repeat should be highlighted so i can have the opportunity to delete them manually. I would like that the repeated numbers be next to each other and the last i would like to have one column or one page for each telephone operator. I am waiting your offers.

Thank you.

Data Scraping Project

August 21st, 2009 Comments off

Need data scraped from a telco’s online telephone directory.

Visit www.btcbahamas.com <- Go to Telephone Directory

1. Require all categories A-Z from yellow pages on all islands listed from drop down box under yellow page search.
2. Require all business white pages from all islands listed from drop down.
3. Duplicates not to be entered i.e. companies can be listed under both yellow pages and white pages, or singly under white pages only.
4. Field information required include Company Name, multi line address, misc. info + departments, telephone numbers, fax #, website, email where applicable.
5. Output should be in Access DB/SQL/Excel (can be finalized)
6. Long term plan is to develop a pc + mobile telephone directory.

Key content include Yellow Pages, White Pages, All Islands, All Categories and all data content.

Telephone Broadcasting

August 16th, 2009 Comments off

broadcast phone calls using the computer to a list of phone numbers and also the ability to use sequential or random dialing. The message will ask for a response so it needs to be able to record an answer. I do not have a land line however I do use magicjack if a phone line is needed. An example of the type of system I am looking for can be reviewed at these websites.

http://www.hosteddialer.com/
http://www.voiceshot.com

http://www.spitfiredialers.com

Api Script Needed

August 14th, 2009 Comments off

I need an API script to connect to my telecom provider.

The task of it should be.

1. To allow me to search my suppliers data base for telephone numbers

2. register telephone numbers via my suppliers api.

3. manage my telephone numbers via my suppliers api.

Gsm Gui Interface

July 13th, 2009 Comments off

DAC are manufacturers of weather and vandal resistant telephones. Our latest variant is a fixed GSM product that is installed in rural areas where there is no infrastructure. The telephone has self-reporting features to indicate its’ health status and can be programmed remotely via SMS. DAC are looking for some control software with a simple GUI for users to read the telephone information and also to programme the telephone parameters.

Telephone Answering Services..

May 18th, 2009 Comments off

Hello,

Need someone to answer calls for us when we’re not avaliable,preferabbly on skype and then to email the message to us. We pay on a per message status – good english, not bothered about where in the world you are!!
Many thanks

Telephone Data Collection

April 29th, 2009 Comments off

Project Review:
Call a list of 200 vehicle dealerships in the United States and get the Name and Email Address of the Parts Manager

To be delivered in Excel form.

Please let me know if you have any questions.

Thank you,
Peter

Short Php Function Required

April 13th, 2009 Comments off

I need a PHP function which will decode telephone numbers that have been encoded using a javascript function.

The Problem
———–

You can see the problem at the following link:

http://www.goldenpages.ie/category_Accountants_Dublin-14-2.html

When you click on ‘Telephone’ the page calls a javascript function, passing an encoded argument. The javascript then replaces ‘telephone’ with the correct phone number. I need a PHP function which will take the encoded argument and return a decoded telephone number. You will see the requirement if you click on ‘telephone’ on that website.

I believe the javascript library being used may be Prototype.

Requirement
———-

You will produce a PHP function like the following:

function decode_telephone ($encoded_javascript_argument)
{
…{YOUR CODE}…
return $telephone_number;
}

Payment
——-

You will provide me with a demo to show that your function works. I will then pay you in full and you will send me the source code.

I anticipate a number of these projects over the coming weeks. I am an experienced PHP coder, but I do not work with Javascript.

Magento Calling Card Feature

April 8th, 2009 Comments off

Magento Features to sell virtual goods which is a group of Unique code.
1. A typical sample will be prepaid telephone calling cards. The prepaid telephone calling cards are a set of unique PIN and password, they are created by the phonecard system. So those PIN/password pairs have to be uploaded to the store either through a file, manually, or by progrmaming magento to grasp from outside database. Furthermore, those PIN/password pairs will be sent out by email once payment is collected. For further develepment flexibility, the best description for a such product similar to ?calling card? might be a adjustable turple (v1, v2, v3, ….). Then, for prepaid phonecard, it will be a turple with two elements: (PIN, password); for refilling card, it will be a turple with one element: (PIN); for software activation code, it also might be a turple with two elements: (code, expiration date); for some other product,, such as paid membership, computer gaming keys, etc, it might be a turple with three, four, or what ever elements.
2. Let’s continue the story about prepaid telephone calling card sample. Usually, there are different types of cards, each type has multiple codes with the same price. Say, type one, good for making calls to England, $10/card, there are 100 cards for sale; Type two, good for making calls to China, $8/card, there are 200 cards for sale; and so on. Also,the phonecard PIN/password need to be sent out to cutomer?s email account once the payment is collected.
I found the above requirement can be implemented as a virtual product, the PIN/password can be sent to customer?s email in the virtual product?s SKU field. The problem is, when a customer select multiple one kind of phone cards to his/her cart, say, type one,10 cards, he/she will receive the invoice email with cost of 10 phonecards, that’s $100, but only ONE SKU(PIN/password) in his/her email invoice!!!!!, that will cause big problem. Because what the customer supposed to receive is 10 PIN/password pairs.
3. Although we can set up the quantity in stock as 1 for each card to force the customer can only buy one card for that PIN/password, that will confuse the customer if he/she wants to buy more than card when he/she tries to update his/her shopping cart before checking out.
4. Unirgy every developed a gift certificate/virtual card extention at http://www.magentocommerce.com/extension/751/gift-certificates–virtual-cards. Problem with this extension is,
A) it does not accept unique codes from third paryt. It generates Unique code/password pairs randomly.
B) the code/password from this extension could be used as coupons. Thus it cannot be used to sell unique codes as described above. Since it can be used as coupon code to credit back some money from the cart total when checking out. Spammer/hacker can buy one PIN/password and use it to make international phone call. Meanwhile, he/she can come back to buy another pair of PIN/password. when checking out, he/she can use the previously bought pair to credit all the payment from the cart total. If he/she contiunes, he/she can get all PIN/password pairs in the store by paying once!!!!
Hope this is developed as an extension, based on virtual product. detailed documentaiton is neede. Serious bid only.

Thanks very much!

Andrew

Bear