search the articles directory
Powered by Google™
old Internet and online articles
Six Areas for Web Site Testing - ...etter without a picture. Test!
3. Is your type too small (a frequent mistake), or perhaps too large? Try to
use nothing smaller tha...
The Cost of Doing Internet Advertising and Business - ...or selling your customers.
Online marketing is sometimes is the only good way to advertise and sell.
More often, it as one of several media ...
Internet advertising checklist - ...nger than it takes!
2. Prospects/customers. List, in writing, the reasons your customers and/or
prospects w...
Setting Up a Virtual Team - ...nel, and projects that they want to work
on, and would have complete control over all aspects of
the effort. In reality, managers must usuall...
Selecting Team Members - ... team than
you would if you hired someone because other factors,
such as availability, priorities, relationship with the functional
manager...
Installation, Customization, and Security - ...ction of them). Instead, we have included some general information about the different
types of tools.
Installing Applications
Collaborativ...
Customizing Applications - ...tware suites,
wikis, and hosted blogs, let you apply standard themes,
changing the “look and feel” without having to modify any
...
Collaborative Software Suites - ...>Cooperation is when the results of independent
subtasks are merged to create a final deliverable.
Collaboration requir...
Meeting and Communication Tools - ...ra.
The following types of tools are included in this
category:
- Instant messaging (IM) applications
- Voi...
Information Broadcasting Tools - ... retrieve information on demand, unlike presentations
and webinars that are typically scheduled.
With very little equipment, you can create...
Wikipedia - ...g).
MediaWiki, the wiki software used for Wikipedia
(http://wikipedia.org), is wiki-only.
- Full-featured management ...
RSS feeds - ...ases, it is a waste of resources (like
paper), and of the three technologies, faxes tend to be
the most irritating when received too freque...
A few words about google - ...ners,
streamlining their marketing costs, qualifying their leads, and helping track
returns on investment.
There’s genius in Google&...
Google and your business - ...akes money
when you do. But as I also mentioned, Google makes money even if you don’t.
That’s not a situation Google likes, and it...
Getting into Google - ... pages; this article is more
elementary but no less crucial for new sites.
The Three-Step Process
Many of the suggestions, tactics, and concepts ...
Keeping Google Out with robots.txt - ... publicity-hungry Webmasters want to keep Google away
from certain parts of their business. Private pages designed for friends and
semiprivate ...
Optimizing a Site for Google - ...a site’s
purpose, who it wants to attract, and how it wants visitors to behave.
SEO might or might not be connected to making money. (Fo...
Putting Google Search on Your Site - ...ee search services and three paid services:
- Google Free. A Google-branded search box that delivers Web results.
...
Introducing Search Advertising and Google AdWords - ...nt (to borrow author Malcolm Gladwell’s phrase). Nobody knows what we
are tipping into. But there’s no question that search adve...
Understanding How AdWords Works - ...o Google’s AdWords staging
area, called the Control Center, where you create and
deploy campaigns. No ads are displayed, and no billin...
Creating Effective Ad Groups - ... most powerful element of your campaign? Because
it contains the four motors of your advertising and conversion strategy: ads,
keywords, bid...
AdWords bid on keywords - ...words link. I describe this method in the preceding
section, in the discussion about editing keywords. The same screen allows
keyword ed...
Managing AdWords Campaigns - ...
- Understanding and choosing geo-targeting
- Implementing Google’s conversion tracking feature
Pausing and Resuming...
Getting into Froogle and Google Catalogs - ...;s business
services in an even broader light, you might say that Google is in the keyword
business. As a keyword services company, Google bri...
Establish your goals for selling on eBay - ...throbe and slippers and talking on
the phone.
Working at home can mean that you run a full- or part-time business in which
you conduc...
Know How eBay Auctions Work - ...com/help/policies/user-agreement.html) so
you know what you can and can’t do. The following sections provide you with some
more rules of...
Follow the Eight Step eBay Sales Plan - ... want
- the kinds of things that merchants
have depended on throughout the ages.
First, you need to start by registering as an auction sel...
Start Selling with eBay - ... you have to know how to
compete on an equal footing with individuals who have auctioned off hundreds,
even thousands, of items over a period ...
Get the Computer Equipment You Need for eBay - ...ber, when you shop for memory or other computer hardware, save
your receipts. You may be able to record and deduct all these purchases as
busi...
Become an eBay Auctioneer - ...ource of income
after they lose their job; they sell full-time for a while to make ends meet, then
move to selling part-time when another job ...
latest articles under "Web services"
Navigation: Categories » Internet and online » Web services
Below is a list of all Web services articles. If you want to find a tutorial by keywords, all you have to do is a quick search in our directory. Just use the search option available at the top-right side of the page. The website search is powered by web-articles. Or, if you want to read specific Web services tutorial, just point to it. The newest articles and tutorials are shown first in the list. To access the last ones, browse the pages 2, 3, 4... at the bottom. Also, you may browse articles alphabetically ordered.
Page# 1 (last added articles shown first)
Enter page# 1 (last added articles shown first)
Below is a list of all Web services articles. If you want to find a tutorial by keywords, all you have to do is a quick search in our directory. Just use the search option available at the top-right side of the page. The website search is powered by web-articles. Or, if you want to read specific Web services tutorial, just point to it. The newest articles and tutorials are shown first in the list. To access the last ones, browse the pages 2, 3, 4... at the bottom. Also, you may browse articles alphabetically ordered.
Page# 1 (last added articles shown first)
Metrics and setting up a web analytics program (09/15/2008)
(...) Your web analytics program will do its best to determine a total number of unique visitors based on IP addresses and any other info it can gather. Admittedly, the number is not perfectly accurate. But it's a good tool for tracking trends. (...)
(...) Your web analytics program will do its best to determine a total number of unique visitors based on IP addresses and any other info it can gather. Admittedly, the number is not perfectly accurate. But it's a good tool for tracking trends. (...)
Database example (05/12/2008)
(...) The table has the following definition: CREATE TABLE EPAL (email varchar(32) NOT NULL, type varchar(8) NOT NULL, want varchar(8) NOT NULL, interest1 number(4), interest2 number(4), interest3 number(4), interest4 number(4), interest5 number(4), CONSTRAINT id_pkey PRIMARY KEY(email), CONSTRAINT type_check CHECK (type in ('MALE', 'FEMALE', 'EPERSON')), CONSTRAINT want_check CHECK (want in ('MALE', 'FEMALE', 'EPERSON', 'ANY')) ); The ‘check’ constraints are not particularly important and can be omitted if the database that you use does not support such constraints; the program code essentially duplicates these checks. The example program is a standalone Perl program reading data from the keyboard and working directly with the database. Commands can be given to the program to add records to the database or to perform searches. (...)
(...) The table has the following definition: CREATE TABLE EPAL (email varchar(32) NOT NULL, type varchar(8) NOT NULL, want varchar(8) NOT NULL, interest1 number(4), interest2 number(4), interest3 number(4), interest4 number(4), interest5 number(4), CONSTRAINT id_pkey PRIMARY KEY(email), CONSTRAINT type_check CHECK (type in ('MALE', 'FEMALE', 'EPERSON')), CONSTRAINT want_check CHECK (want in ('MALE', 'FEMALE', 'EPERSON', 'ANY')) ); The ‘check’ constraints are not particularly important and can be omitted if the database that you use does not support such constraints; the program code essentially duplicates these checks. The example program is a standalone Perl program reading data from the keyboard and working directly with the database. Commands can be given to the program to add records to the database or to perform searches. (...)
Finding what matched and other advanced features (05/01/2008)
(...) The following example illustrates the extraction of two fields from an input line. The input line is supposed to be a message that contains a dollar amount. The dollar amount is expected to consist of a dollar sign, some number of digits, an optional decimal point and an optional fraction amount. (...)
(...) The following example illustrates the extraction of two fields from an input line. The input line is supposed to be a message that contains a dollar amount. The dollar amount is expected to consist of a dollar sign, some number of digits, an optional decimal point and an optional fraction amount. (...)
Each output line consists of a list of words (04/26/2008)
(...) The body of the main while loop works by splitting the input line into a list of words and then processing this list. while($title = ) { chomp($title); @Title = split / / , $title; .. (...)
(...) The body of the main while loop works by splitting the input line into a list of words and then processing this list. while($title = ) { chomp($title); @Title = split / / , $title; .. (...)
Slightly modified specification for a CS1 program (04/24/2008)
(...) The totals option should print details of total sales and largest order. The quit option terminates the program. An invalid option selection is reported; then the program repeats the prompt for input. (...)
(...) The totals option should print details of total sales and largest order. The quit option terminates the program. An invalid option selection is reported; then the program repeats the prompt for input. (...)
Lists and arrays (04/24/2008)
(...) Does (OK, ‘has done to it’, as these are not class member functions): – Create a list, usually initializing it with a non-empty set of data elements (though empty lists are fine). – Add elements ‘at front’ or ‘at end’ of the list. – Remove elements ‘at front’ or ‘at end’ of the lists. (...)
(...) Does (OK, ‘has done to it’, as these are not class member functions): – Create a list, usually initializing it with a non-empty set of data elements (though empty lists are fine). – Add elements ‘at front’ or ‘at end’ of the list. – Remove elements ‘at front’ or ‘at end’ of the lists. (...)
The next few elements define options (04/12/2008)
(...) conf file define options relating to files in user directories, set default values for the names of control and index files, and define the files and formats used for logging. A ScriptAlias directive is then used to define the standard cgi-bin directory, and another Directory directive group sets the access permissions for this directory. The next part of the file contains data used to generate HTML pages with fancy listings of directories (listings that incorporate little GIF images that distinguish subdirectories and different types of files). (...)
(...) conf file define options relating to files in user directories, set default values for the names of control and index files, and define the files and formats used for logging. A ScriptAlias directive is then used to define the standard cgi-bin directory, and another Directory directive group sets the access permissions for this directory. The next part of the file contains data used to generate HTML pages with fancy listings of directories (listings that incorporate little GIF images that distinguish subdirectories and different types of files). (...)
Generation of dynamic pages (04/10/2008)
(...) These extra Directory directives must contain control options that permit execution of CGI scripts in a directory or SSI processing of files from a directory. Server-side includes are flagged by special tags in an HTML file, tags such as: <!--#flastmod .. (...)
(...) These extra Directory directives must contain control options that permit execution of CGI scripts in a directory or SSI processing of files from a directory. Server-side includes are flagged by special tags in an HTML file, tags such as: <!--#flastmod .. (...)
The vBulletin Administrator Experience (05/31/2007)
(...) A reason can also be given for the deletion. Also, an administrator can edit a post (again, leaving a reason if they wish). Other options include closing a thread (so that users can no longer post to it) and making the thread sticky (so that it stays at the top). (...)
(...) A reason can also be given for the deletion. Also, an administrator can edit a post (again, leaving a reason if they wish). Other options include closing a thread (so that users can no longer post to it) and making the thread sticky (so that it stays at the top). (...)
Blogging healthy athmosphere (05/30/2007)
(...) Having executives who blog and who encourage blogging is a great way to introduce blogging, though it isn’t a requirement. The key to a healthy blogging atmosphere is to have the company, leaders, and managers value blogging, bloggers, and blog feedback. This is why having a corporate blog, product-specific blogs (if you make products such as cars or software), or market-specific blogs (if you create a wide variety of products) is important: it allows your customers to provide feedback in a variety of locations and therefore allows you to use that feedback in a variety of ways. (...)
(...) Having executives who blog and who encourage blogging is a great way to introduce blogging, though it isn’t a requirement. The key to a healthy blogging atmosphere is to have the company, leaders, and managers value blogging, bloggers, and blog feedback. This is why having a corporate blog, product-specific blogs (if you make products such as cars or software), or market-specific blogs (if you create a wide variety of products) is important: it allows your customers to provide feedback in a variety of locations and therefore allows you to use that feedback in a variety of ways. (...)
Employee who blogs (05/30/2007)
(...) But some companies go so far as to provide a single website that lists new posts, features individual bloggers, and links comments made by a blogger to that blogger’s internal blog. The more ways you provide for your employees to connect, the more connections they will make. The challenge is that implementing these features is more expensive than simply allowing employees to set up blogs. (...)
(...) But some companies go so far as to provide a single website that lists new posts, features individual bloggers, and links comments made by a blogger to that blogger’s internal blog. The more ways you provide for your employees to connect, the more connections they will make. The challenge is that implementing these features is more expensive than simply allowing employees to set up blogs. (...)
Enter page# 1 (last added articles shown first)
