search the articles directory
Powered by Google™
other articles in the directory
Developing a hack for a vBulletin installation - ck we're going to be developing here is one that allows you to control how vBulletin handles private message receipts. As we saw in Article 3, private messages, known a...
Getting Plugins and Products for vBulletin - notonly plugins but also templates, options, phrases, help files, and control panel entries. This means that these are a bigger, more integrated types of plugins. ...
Understanding the Definition and Philosophy of Ajax - of Ajax
Jesse James Garrett at Adaptive Path coined the original definition1 of Ajax. Quoting the original
definition, Ajax incorporates the follo...
Understanding the Definition and Philosophy of Web Services and SOA - technical terms such as Simple Object Access Protocol (SOAP), Web Services Description
Language (WSDL), and so on. It leads you to believe that in order to build aWe...
Understanding the Definition and Philosophy of REST - wever, they miss the fact that REST does not refer to the data
sent between the client and the server. It refers to how to address and send or receive the data.
Le...
The Easiest Way to Get Started with Ajax and REST - use of Ajax techniques.
If your technology does hinder you from writing Ajax applications, then you should think hard
about continuing using the technology.
...
Testing a Dynamic Contract with Ajax - citly into
the client or server code, so that you can verify any client. This article is about building Web
services, and you can call Web services by an XMLHtt...
Testing the Client Side Logic - cess the individual GUI elements.
RealPlayer is used to play some media file. Imagine running a media-file
generation service. Testing the format of the media ...
Understanding JavaScript and Types - function has two parameters, num1 and num2, and represents two
individual numbers. In the implementation of AddTwoNumbers, the two numbers are added
together an...
Coding Using Conventions and Not Configurations - ing
a framework. The framework can be created in one of two ways. The first way is to create
infrastructure and wire it together, and the second is to make assump...
Advantage of parameterless functions in JavaScript - m2) {
return num1 + num2;
}
The num1 and num2 parameters are added and the result is returned.
Solution
Another way to write the same fu...
JavaScripot Functions - ct. For example, in Ajax you have two ways to instantiate the XMLHttpRequest object, and
the method used depends on the browser.
The Factory pattern is ...
Implementing an Error and Exception Handling Strategy - l implementation. At a technical
level, when the first character is processed, the JavaScript runtime is executing and can
generate an error. But if an error ha...
Understanding the Behavior of Variables When Implementing Recursion - he buffer variable to assign the innerHTML property. This sort of declaration
is problematic because buffer might be undefined. JavaScript will not mention this as a...
Using Functions to Initialize and Make Decisions JavaScript - default framework for your application to properly function.
Solution
For illustrative purposes, let’s go through an example where a function requires an i...
Understanding the Ramifications of Duck Typed Code - e via a prototype definition, or
you can define the methods and properties by assigning a class instance. In general, you have
the ability to dynamically wire tog...
Implementing JavaScript Generics - ontainer manages any type.
A JavaScript programmer might look at the code and think, “Hey, I have this already in
JavaScript!” Here is the same code, t...
Putting XMLHttpRequest into a Factory - sting in an incremental
manner. Doing otherwise will cause errors to be generated in code pieces that do not
have problems. Throughout this article, recipes use test-...
Defining and Extending Classes - assertEquals(cmpval, inst.value);
}
return inst;
}
By using a local variable, the instance of the function can be referenced within the imp...
Implementing Code Blocks - ries.
Source: /website/ROOT/ajaxrecipes/javascript/codeblocks.html
function GenerateSquaredSeries( lastValue) {
var array = new Array(...
Turning toSource into a Complete Serialization Solution - method that can be called,
as illustrated in the following source code.
Source: /website/ROOT/ajax articles/javascript/tosource.html
var ...
Implementing Mixins in JavaScript -
The DefinedClass function is used to define a type. Two methods, defined1 and defined2,
are associated with the DefinedClass type. Each method is associated w...
Implementing Proxy Methods - attern you are creating a delegate
model. The main difference between a proxy and delegate model is that the proxy model
is responsible for calling the original i...
Parent method implementation calls - that represents the complete implementation
of the proxy method. Another approach is to dynamically generate and evaluate some
parts of the generated code, and u...
Implementing Delegates - = function() { // initialize toolkit 1}
In this code example the toolkit is saying that when the onload event is called, use my
functionality. The second toolkit...
Implementing Overloaded Methods - method is called twice, and for each call the function implementation called is the last assignment
value. The code is trivial and is meant to illustrate that you ca...
Should I Buy a Home - ou want added security and privacy
While you can spend a lot of time debating the rent versus own
question, my suggestion is that if you’re even remotely int...
How to Get a Good Deal in Rising or Falling Markets - g
and make the comparison anew. Remain confident, however. Almost
everyone eventually decides to go forward and buy a home, once
they know the trick of how to go...
Rent a home - , then give yourself every chance
of it being an educated decision. Don’t simply say, “Prices are too
high to buy.” They may be even higher next...
What Are the Pros and Cons of Condo Co ops versus Single Family Homes - e on an absolute cost basis
Maintenance required
Little architectural control
Pros of Owning a Condo/Co-op
Little or no exterior main...
Where do I find a good lender - rt they are listed in the yellow pages under Mortgage
Brokers. (Note: A mortgage banker may not make loans directly to
consumers. Look for a mortgage broke...
Validating Your Data - ver side. Imagining the validation is performed on the client side, you
can define the following points:
• You use JavaScript to implement all validat...
Creating Dynamic Layouts - ite has
the same flaw.
The reality is that neither is better, because each has advantages and disadvantages. Yet
neither is optimal. When the Web initially sta...
Manipulating Dynamic Content Blocks - p.
The dialog
box and many other elements are all HTML content blocks defined using div elements.
You could also use an iframe HTML element, which is an ...
Implementing Dialog Boxes - r example,
When writing HTML pages, you can use dialog boxes for a whole host of things, such as
• To provide meta information associated with a hotspo...
Serializing HTML - urce code for the example is as follows.
Source: /website/ROOT/ajax articles/dhtml/inconsistent.html
<html>
<head>
<title>...
Dealing with Formatted Data and Forms - ow the best way to go about it.
Theory
Filling in forms can be painful. They require you to enter the data in a piecemeal manner. The
way you enter the data is...
Implementing an SOA Architecture - >
• Validating and testing aWeb service
• Picking apart the data
• Implementing a REST-based Web service
• HTML
...
Implementing the Application Logic Layer -
generateEntry( req, entry)
generateFooter( req)
Don’t get too excited by the code’s simplicity, as the code provides an infrastructure ...
Testing the Web Service - ge to SOA, it is its ability to
seamlessly share data.
Let’s put this into another context. Imagine you own a pizza restaurant, with take-out
order...
XMLHttpRequest Details and Making Asynchronous Requests in Ajax - ementById( 'httpstatus').innerHTML = xmlhttp.statusText;
document.getElementById( 'result').innerHTML = xmlhttp.responseText;
document.getElementById( 'xmlresult'...
Implementing the Asynchronous Class in Ajax - Asynchronous class work, the user needs to do two things: associate the
settings data member with some information and call an appropriate method (e.g., get) to
...
Implementing the Synchronous Class in Ajax - xmlhttp.responseXML);
flexbox.update();
}
}
synchronous.get("/services/blog/entries/current");
}
The bold code shows the only ...
Handling Errors in AJAX - page, the user has no chance of
figuring out how to fix the problem.
Using an exception block, you can manage these issues and then attempt to fix the prob...
Ajax Processing the Atom Feed - r i=0; i < items_count; i++) {
title[i] = items.getElementsByTagName('entry
')[i].getElementsByTagName('title')[0];
link[i] = items.getElementsByTagName('e...
Implementing a Universal Web Service Architecture using Ajax - k at a problem within a stock-trading application as an example of a problem in building
Web services. The problem is that a number of clients need access to real-time...
Identifying the Resource and Representation using Ajax - client wants JSON, then the server will generate JSON.
The data that is generated as JSON, XML, and CSV is all the same. Thus, it can be said that the
data is the...
Ajax Closed Access Web Services - theoretically possible. The problem is that companies such as Oracle,
Microsoft, and IBM aren’t going to tell you how their files are structured.
That lack ...
Implementing Web Services for Large or Slow Data Sets - o
generate.
Theory Many developers experience the need to show a huge number of records to end users. The first
reaction of most develope...
Implementing the HTML Client - s/json.js"></script>
</head>
<script type="text/javascript">
function Initialize() {
DynamicIterator.initialize("display&...
Multithreading in JavaScript - ( this.data);
}
else if( typeof( this.obj) == "object") {
this.obj.run( this.data);
}
}
var Thread = {
threadObjects : new Array(),...
Managing the Data Using a Client Cache using Ajax - aching does not reduce the
conversation counter, but it does reduce how much data is sent in the conversation.
Use this approach if you have data that changes regular...
Using HTTP Validation - conversation, the HTTP validation model is implemented as follows.
This example illustrates a request from a client and the response from the server.
...
Real time data using Ajax - not including scalping, nearly real-time is good enough.
Real-time data is a variation of the article we’ve already seen, where a real-time task is
simila...
Implementing an Ajax Shopping Cart - access of the
data, which may be public or private, is consistent and straightforward.
Note This article discusses two examples: a shoppin...
Creating HTTP Resources with Ajax - etrieve the unique URL from
the action URL.
Source: /client/scripts/jaxson/communications.js
function UniqueURL( url) {
this.asynchrono...
Implementing a Shopping Cart using Ajax - quot;text/javascript">
var unique = new UniqueURL( "/pyservices/shopping/cart/getone");
unique.haveIt = function() {
docum...
Implementing a Bank Account using Ajax into a shopping cart - le for sending the cookie to the server for a given URL and its descendents.
• HTTP authentication: By using HTTP authentication, it is possible ...
Do not Submit Your Forms Ajax Them - TML form has a number of UI elements, such as a text box, a list box, or a combo box, that
users can use to enter information. When they’re content with the in...
AIDS epidemic started deliberately - ndon
Journal of the Royal Society of Medicine
September 1988 (Volume 81 pp 537-539)
For the sake of his conservative audience of British physicians, ...
AIDS and population control - reds of studies were done for the CIA in the area of neuropharmacology, particularly in the
area of intercellular communications-neurotransmitters.
The ide...
AIDS virus and the race war - nd
that birth control is the only way in which population can be kept from increasing. There are others,
which, one must suppose, opponents of birth control woul...
Black population and AIDS virus -
Foundation (which later used Robert Strange McNamara, Maxwell Taylor and McGeorge Bundy to
forward its racial-environmental views) and Mr. Dodge was the financial...
AIDS is the biogenetic equivalent of the atom bomb - >But intelligence reports indicate that the actual laboratory experiments at Fort
Detrick, Los Alamos and Cold Spring Harbor began during the 10s.
How were the e...
Gay people and AIDS - impaired if the infecting virus damages more or less selectively the cell responding to the
virus." (World Health Bulletin, 1972, 47, 257 and Fed Pro...
AIDS infection and gay people - exual disorder," which it
called "Gay Related Immunodeficiency" (GRID). (The disease was later given the name AIDS by Don
Armstrong, chief of in...
If the blood of one partner contains HIV - tors and scientists who wanted to attend were told they would face
"disciplinary action." So the meeting was boycotted by many who most needed to be prese...
Blood test for AIDS - se fluids, the better part of
wisdom dictates that we assume the possibility that it can also be transmitted by these routes."
Dr. Restak was right about...
People do not die of AIDS - r the pre-AIDS syndrome. The virus has now
settled in the brain, kidneys, lungs, liver even the eyes and multiplied until its dread presence can no
longer be ...
Confidential HIV Testing - excessive absenteeism nor for excessive health
care costs to the employer.
A recent federal statute requires that AIDS "educational" programs be a p...
AIDS HIV Doctors - cause
they want the public kept in ignorance about how widespread AIDS has become. Mandatory testing
would reveal to the public that AIDS is much more widespre...
Drugs can fight against AIDS - nt backed Dr. Gallo all the way. But why? Because of the Machiavellian
nature of AIDS politics. Ample evidence exists that Dr. Gallo's approach to AIDS treatment h...
Supressors and receptors - research in Wuppertal,
Germany, "growth factors can now be introduced or removed as desired." When arterial walls thicken, itis due to "growth fac...
HIV is presently being transmitted - remarkable tool of the human genomic sequence will put us in a position to customize medical care, to
become familiar with and to address the individual features o...
AIDS and the condom - lity of the condoms is so poor that as
much as eighty percent of them break or leak.
"The AIDS virus has entered into an explosive phase in Africa, and the ...
People are dieing - ugh much too late to save the population.
And in India, anyone found to have AIDS is immediately imprisoned and never released. Period.
And yet: The most...
Herbal medicine and AIDS - ture are
slim and none.
Yet the corporations persist and pocket the money.23 Genentech, which is partly owned by Hoffman La
Roche, is, according to intelligence so...
AIDS and mortality - scientific and medical journals. The deceptions
must be exposed with maximum publicity.
The public must be fully informed of the true nature of the threat from ...
What are the chances of a seller agreeing to pay your closing costs - most of your down payment, even all or most
of your closing costs. And, as we’ve seen, when the lender won’t do
it, there’s always the possibility of...
Boying a home Effective interest rate and mortgages - e 3 percent. Thus, if the index is at 5 percent, add the 3-percent
margin and you have your effective mortgage interest rate of 8
percent.
TRAP IT&r...
FHA and VA mortgages - ,000.
If you get a new FHA loan, you’ll have to pay the insurance premium
for the loan up front. (See the explanation for the similar
PMI in the previous article...
Recognizing a Good Real Estate Agent - , or BMW. He or she
(most agents are women) meets clients over cocktails, attends flashy
parties with lenders, and makes oodles of money (often into seven
figures, but...
Find an active real estate agent - er and can’t find the perfect house for you
unless and until you give the agent the parameters of what you’re
seeking. This doesn’t mean you need to t...
What About the Bad Apples - do you
protect yourself?
I wish I had a surefire answer. However, the tips here are the same
ones that are given when picking any person whom you give your
confidence...
Find the Right House in the Right Area at the Right Price - ’t buy a house with only
one bathroom. It’s very difficult to resell.
Do you want a newer house with all the modern goodies such as
better insulation, copp...
BUY A LESS EXPENSIVE HOUSE THE BEST NEIGHBORHOOD - eem interested
in the house at the time. Later on, you may think about it and
realize the home had more appeal than you at first realized.
Never look at more than thre...
How Do I Negotiate in Real Estate - own efforts. The agent in many cases is the
seller’s agent, with a fiduciary responsibility to the seller to find a buyer.
In most states it is unethic...
Have You Tried Hiring an Appraiser - every lender. If you
intend to save money on an appraisal by using it for both setting the
price and obtaining a mortgage, be sure you know in advance which
appraiser...
What If the Seller Does not Accept My Offer - ter how small), the original
offer is dead. Unless you accept the seller’s counteroffer, you’re
entitled to your deposit back.
Once in a very great while a...
What are Contingencies - the sales offer hinge on some event or
action. What my builder friend meant was that as long as those
words were in it, he could get out of the contract if he had to. H...
Should I Agree to an Arbitration Clause - seller for damages
or specific performance (forcing them to sell to you) by signing
this clause. (On the other hand, the sellers could be giving up
the same rights, m...
Where can i find a fixer - p>
Why Should I Consider a Fixer? There are three reasons that people want to buy fixers. They are:
Get into an area you&r...
How Do I Find the Right New Home - it will take to do the entire fix-up.
The Hardest Part
Probably the hardest part of buying a fixer is getting the seller to
accept a reason...
What If the Builder is Slow or Stops Construction - deposit from
her and signed an agreement, explaining that she would be
required to fill out a sales agreement as soon as the house was
built. The $500 merely reserved ...
How do I find a good builder - t able to comply, the insurance
company picks up the tab for covered items after a deductible
is paid.
Should I Get a Home Inspectio...
Buying Directly from Sellers FSBOs - the property.
Take the time to check out the home. Look it over carefully, especially
since you won’t have an agent along to point out good
parts . . ....
Be your own contractor - at the building
materials list doesn’t involve some overly expensive timbers or metal.
Be careful, however, if you buy through-the-mail plans. A“working
se...
Home Inspection Checklist - the house,
indicating heavy moisture? (There’s almost a hysteria these
days about black mold check with your agent.)
Does the ground outside slope aw...
New Changes to Closing Procedures - e transaction, will be within three days of
your making a formal application. Giving you notice, however,
does not necessarily mean reducing those costs or even being
...
How do I find a property - our offer was structured, your time period can be anywhere
from a minimum of about 30 days to a maximum of about six
months.
You then bring in a rebuyer (one who actua...
web articles sitemap - #9
Navigation: Home page » Sitemap 9
-
Arts and entertainment ¬ - Music
- Movies and TV
- Direct Broadcast Satellite - ...en author Danny on his island two miles out at sea. Planning a Satellite TV System Getting satellite TV f...
- Internet and HDTV with one dish - ... on an island or remote mountaintop, where you’d never get any other Internet access (ask Danny he knows). ...
- Getting Into DVRs - ...ill eventually appear again in high-def versions of the same units. Finally, we cover some interesting DVR varia...
- Poetry
- Photography
- Posing a group - ...with these poses, but there’s no reason you can’t pose mom with her daughters or dad with his sons if that&...
- Prefocusing for cameras with shutter lag - ...e the beginning of the kick. Then I start shooting once I know the ball is in the air. With a fast motor drive, I ...
- Auto racing - ...rformance machines working at peak operation. Don’t forget to make some wide shots of the whole track environme...
- Humanities
- Performing arts
- Comics
- People
- Visual arts
- Philosophy
- Fashion
- Gambling and casino
-
Business ¬ - Advertising
- Cooperative advertising - ...l Advertising Program Should Specify • Who pays. How much or what percent of th...
- Who reads newspapers - ... Sunday edition. The six-month average circulation of the daily newspapers totaled 55,859,000. Approximately 82 p...
- Flyers, Brochures, Bulletins, and Invitations - ...ects to the most sophisticated agency-produced materials. As with every promotion, creating a flyer or brochure ...
- Sales management
- Direct marketing
- What is competition - ...ave worked with many different models of competition. Still central to much of their work is the model of perfe...
- Competition on the market - ...opportunity. As the number of firms interested in sharing the pie increases, the degree of rivalry increases. Take,...
- Strategic Usefulness of Competitive Intelligence - ...part from the merely self-respecting ones is that they watch their competition in such depth and with such dedicati...
- Gathering Competitive Intelligence - ..., the market, and our strategy? Essentially, knowledge about competitors comprise their size, growth...
- Organization for Competitive Intelligence - ...At the corporate level, competitive intelligence is concerned with competitors’ investment strengths and prior...
- Workplace communication
- Customer services
- Branding
- Online business
- Strategic planning
- Products life cycle - ...ng product life-cycle patterns. Introduction is the period during which initial market acce...
- Portfolio matrix in a business - ...h a conceptual framework within which these alternatives can be developed. One such framework is the portfolio...
- Portfolio Matrix and Product Life Cycle - ...the optimum point for liquidation. Balanced and Unbalanced Portfolios U...
- Business portfolio approach - ..., forging successful strategy begins with understanding of what is happening in one’s industry and deciding w...
- Business Organizational Structure - ...results and adapt them to rapidly changing market conditions continues to rank among the major challenges confronting...
- Balance the Demands of Scale and Market Responsiveness - ...und itself facing a familiar dilemma. On the one hand, it was vital that its organizational structure become more...
- Negotiation
- Small business
- Presentation
- Business ethics
- Business development
- Diversification is at best a risky strategy - ...Incorporated. Pacific Southwest Airlines acquired rental cars and hotels, only to see its stock decline quickly. ...
- Value marketing strategy stresses real product performance - ...oning and image mongering. It simply means providing a product that works as claimed, is accompanied by decent se...
- Business development versus Perspectives of Product Strategies - ...cially design and communication efforts. (a) Successful management of a single brand requires positioning the brand ...
- Inflation and pricing strategy - ...ay a key role in formulating marketing strategy. Despite the importance attached to it, effective pricing is not an...
- Skimming pricing and penetration pricing - ... competition is expected to develop and market a similar product in the near future, or when the product is so inno...
- Project management
- Certification
- Marketing strategy
- Marketing Mix Factors and promotion - ...quires greater emphasis on advertising because the push of a sales force is limited. As a matter of fact, the furthe...
- How to identify target markets - ... Current world population is growing at about1.7 percent per year. This is a slight decline from the peak rate of1.9...
- Entry marketing and your business - ...atent licensing agreements These agreements are based on either a fixed-fee or a royalty basis and include ...
-
Health ¬ - Weight loss
- Bodybuilding
- Aerobics
- Yoga and meditation
- Nutrition
- Men`s issues
- Women`s issues
- Hair loss
- Medicine and alternative
- Depression
- Beauty
- Quit smoking
- Cancer
- Heathy work
- Health Promotion into the Twenty first Century - ...ty and water supplies, food and clothing and social support which underpin health. For many this is a struggle aga...
- Professional model of health promotion - ...current government policies, despite its rhetoric (DoH 1998a). The programme of action to improve the health of ...
- HIV and AIDS
- People do not die of AIDS - ...ttled in the brain, kidneys, lungs, liver even the eyes and multiplied until its dread presence can no longer be ...
- Confidential HIV Testing - ... care costs to the employer. A recent federal statute requires that AIDS "educational" programs be a p...
- AIDS HIV Doctors - ...about how widespread AIDS has become. Mandatory testing would reveal to the public that AIDS is much more widespre...
- Human body
- Human body MEDIAL SIDE OF THE THIGH - ...c bone and turn them downwards taking care to preserve the anterior division of the obturator nerve, which lies on th...
- GLUTEAL REGION AND POSTERIOR ASPECT OF THE THIGH - ...is much more heavily laden with fat, particularly in the female; this being a secondary sex characteristic. Observ...
- POPLITEAL FOSSA AND BACK OF THE LEG HIP JOINT - ...e the anterior part of the capsule and note that it is attached to the intertrochanteric line. Define the iliofemo...
- DNA
- Several companies have sprouted up to provide bioinformatics tools - ... gene and distinguishing them from the other 96 percent or so that have no known function, often called junk DNA. ...
- The original plan was to repeat the sequencing more times - ...list .5in'> Fill tens of thousands of gaps in the sequence. These holes amounted to about 15 percent of the ...
- If the biotechnology company called Myriad Genetics - ...e now routinely isolating genetic mutations associated with such widespread illnesses as cancer, Alzheimer’s dise...
- Alzheimer Disease
-
Legal and finance ¬ - Investing
- Loans
- The Lease Option - ...er obligates himself or herself to sell you the property, but you are not obligated to buy it. By obtaining the r...
- The Sandwich Lease Option - ...den to the owner. He decides to lease it on a month-to-month basis but cannot find a tenant because nobody wan...
- Refinance
- Insurance
- Debt and credit
- Taxes
- Bonds and Leads
- Settlements
- Mortgages
- Leases and leasing
- Personal finances
- Bankruptcy
- Real estate
- Stocks and mutual funds
- Printed and Televised daily stock updates - ...of either the WSJ or the IBD. The best way to get a feel for the kind of information available in print is to occa...
- Practicing stock tracking and investing - ...d write it down. Your investment strategy helps you concentrate on only certain kinds of stocks, based mainly on s...
- Watching what mutual funds managers are investing in - ...pectus of a fund you’re interested in, look at the stocks the fund managers are investing in and how success...
- Market and Finances
- Wealth building
- Accounting
- Historical facts
- Brokering
-
Internet and online ¬ - Blogs
- Active blog tracking - ...of links. By going to Technorati’s website and entering the address for your blog or your website, you c...
- Monitor your blog with Blogpulse - ...eatest weakness is that while you can tell from memory if your stats are growing, you don’t have historical ...
- Searching for blogs - ... Search. Using each tool to its fullest potential, and being aware of new tools as they emerge, will help you ...
- You and your blog - ...the site. It featured a multicultural assemblage of people and the tag line, “Employees Our Greatest...
- Ten Tips for Comment Response - ... • Admit where you’ve failed. Admitting failure can be difficult for compani...
- Develop a blogging strategy - ...ldquo;weird and wacky news from around the Web” kind of blog, largely because that’s how they mark...
- Beyound the blog - ...ategy. DEVELOPING COMMENT GUIDELINES As you begin to blog, you will receive comments to yo...
- Knowing what your competition is doing - ... the Mustang as well. If you want to know how much people love having WiFi in your coffee shop, you’d be...
- APIs and Web Feeds
- Forums
- Hacking a vBulletin Board - ...erlying functionality of the board. However, making changes to the templates and the PHP code is definitely considered...
- Administering Your Forum - ...br> • Super administrators • Some useful changes that can be made to the config.php file ...
- vBulletin database maintenance - ...e against problems is to keep a backup. vBulletin has a lot of features to allow you to protect your precious...
- Spam block
- Ezines and Magazines publishing
- Ecommerce
- Web design tips
- Web development
- Web hosting
- Affiliates
- Auctions
- Monitor Your Sales Activity on eBay - ... changing your description isn’t a straightforward matter - at least, not after bids have been receive...
- Improve Your Competitive Edge on Ebay - ... more established, the amount of feedback displayed by the Power Sellers goes up as well. Right now, according to ...
- Use an Auction Manager on Ebay - ...help.co.uk/sitemap.php ) provides a Web page full of tips for auction buyers and sellers alike, including sugges...
- Online security
- What are digital signatures - ...e that nobody can change the information that I send electronically? As a business, can I be sure that a custome...
- Digital rights management - ...ntended recipient. Technology has now leaped ahead into a ‘digital age’. Whatever the type of content and ...
- Electronic licensing advantages - ...o provide accountability to both software developers and software users, both stand-alone and networked. Business use...
- Security policies Countering cybercrime - ... Turnbull Guidelines Whilst the provisions of the Turnbull Guidelines are only requirements...
- Cybercrime policy statement - ...priate authority any suspected acts of cybercrime; will assist the police in their investigations and prosecutio...
- What to do when cybercrime is detected - ...t person to establish contacts with specialist lawyers and investigators. Damage mitigation is another issue that must...
- Audio and video streaming
- Live broadcasting
- Domain names
- Search engines
- Creating Effective Ad Groups - ... to devote an entire article to Ad Groups, the truth is that I could probably write an entire book about them. (Suc...
- AdWords bid on keywords - ...t from the keyword by two asterisks (**), putting the bid amount on the same line as the keyword. Here’s an exa...
- Managing AdWords Campaigns - ...- Budgetary. Your return on investment is suffering and your business is leaking market...
- Internet advertising
- The Cost of Doing Internet Advertising and Business - ...a charges and people usually equal the savings. Learning how to use Internet advertising as all or part of your mar...
- Internet advertising checklist - ...ection of e-mail addresses of value to you, and even more important, to those receiving your messages? The key...
- Internet marketing
- Discussion boards
- Pay per click
- Search engines optimization
- Internet protocols
- Web services
- Generation of dynamic pages - ...elax the constraints a little, you can add extra Directory directives to the main httpd.conf file. These extra Director...
- The vBulletin Administrator Experience - ...erge threads with other threads, split threads into multiple threads, delete posts, and remove redirects. (Redirects a...
- Online payments
-
Home and family ¬ - Gardening
- Home improvement
- Home insurance
- Interior decorating
- Home security
- Home appliances
- Gardening
- Elder care
- Parenting
- Babies
- Animals and pets
- Pregnancy
- Home repair
- Home business
- Be your own contractor - ...lve some overly expensive timbers or metal. Be careful, however, if you buy through-the-mail plans. A“working se...
- Home Inspection Checklist - ...o;s almost a hysteria these days about black mold check with your agent.) Does the ground outside slope aw...
- New Changes to Closing Procedures - ...making a formal application. Giving you notice, however, does not necessarily mean reducing those costs or even being ...
- How do I find a property - ...anywhere from a minimum of about 30 days to a maximum of about six months. You then bring in a rebuyer (one who actua...
- The lease option - ...s rent goes toward the down payment. Of course, you’ll want this portion to be as high as possible. Just remembe...
- 12 Steps to Quicker and Easier Home Buying - ... some time since you bought, or if this is going to be your first purchase, the process may seem mysterious, even ...
- Crafts and hobbies
- Personal life
-
Self improvement ¬ - Success
- Leadership
- Innovation
- Time management
- Motivation
- Spirituality
- Goals
- The Buddy Boss Review - ...cy phone call about your brother in intensive care. A Buddy Boss will beat you to the hospital. Just act delighted wit...
- Blend Into the Crowd Without Losing Your Goals - ..., goal-setting can be a private matter and you can adopt healthy ways to keep yourself accountable without becom...
- A Strategic Partnership How to Harness the Idiot Power - ... these people? This was not such a difficult question back when everyone knew each other. In my father's day, yo...
- Your Rock and Hard Place - ... offices everywhere. To stop fighting 'em and join 'em doesn't mean adopting their values. It means learning how t...
- Stuck in Adolescent Rebellion - ...Those nasty habits will drive others insane (in the non-clinical sense). It's never too late to finish unfini...
- Amazing experiences
- Stress
- Positive and negative attitude
- Happiness
- Memory improvement
-
Computers and technology ¬ - Ethernet
- Obtaining and Using a Domain Name - ...an-friendly way to identify a computer on the Internet is with a domain name. Instead of remembering four numbers, us...
- Inside the Internet Protocol - ...the networking stack introduced in Chapter 1. In transmitting, the IP layer receives a message to send from a high...
- A computer that uses the Internet Protocol must have an IP address - ...s, the address only needs to be different from the other addresses in the local network. In theory an isolated local ...
- Javascript
- BIOS
- Linux Commands
- The process of adding a disk under Linux on the Intel - ...ation. If you didn’t recompile the kernel from the original installation, it is unlikely that you will need to recom...
- With the partitions created you need to put file systems on them - ...soft Windows, this is akin to formatting the disk once you’ve partitioned it.) Under Linux, you use two tools for th...
- Mounting NFS partitions works much the same way as mounting local partitions - ...ome some additional options you can use in conjunction with the mount command’s -o option, as shown in Image 7-6....
- Servers
- 20 Key High Availability Design Principles 1 - ...iness and balance the savings against its cost. When considering the return on investment of a particular availabilit...
- Consolidate Your Servers - ... to manage fewer larger systems that are configured similarly, using today’s technologies, than it is to manage...
- Documentation provides audit trails to work that has been completed - ... network design or programs, for example), it can be almost impossible to remember why you did something a particu...
- Firewalls
- Hardware
- Software
- Data recovery
- Learn from the errors of their ways - ...administrator who had done a mass delete from the wrong window and had removed enough of the operating system that he ...
- Mobile computing
- Memory
- Programming
- Understanding All Relational Result Sets - ...erstand the nature of relational result sets. The code in this article is not supported by Access, so if you want ...
- How and when to use Group by Having and Distinct - ...ns not specified in the GROUP BY clause can have different values in these constituent rows. By comparison, DISTINCT l...
- Creating your physical data model - ...d’s foreign key matches the parent’s primary key. A nonspecific relationship doesn’t migrate keys, so...
- ColdFusion Can Be Extended In Many Ways - ...n application’s functionality for use by other application servers, including non-ColdFusion servers COM...
- First ColdFusion Application - ...he Web page that you see. You need three things to build your application: Macromedia ColdFusion MX Server, inst...
- Building the company add action template - ... <cflocation url=”Finished.cfm?msg=#URLEncodedFormat(‘#Form.CompanyName# has been added to the databas...
- Windows registry
- Windows XP uses only one registry editor - ... the tutorial, I'll review the many useful tools available in earlier versions of Windows. Using the Registry E...
- The Registry Editor allows you to quickly create - ...e the new subkey has been created, you can populate it with additional subkeys and value entries. Note A hive, key...
- The Registry Editor may be used from the command line - ... Restoring Restoring is what Joe and Ed on the Learning Channel do to old furniture, rig...
- PC components
- Maintenance of Optical Disc Drives and Discs - ...for damage. If the disc has a crack, there is little hope of saving it. If there is no serious visible damage, try the d...
- Video is the single most important feature of a PC - ...xt: 640 x 480 pixels (the smallest picture elements) and 16 colors. Video Graphics Adapter (VGA) is a video standard use...
- Video adapters are available in AGP and PCI - ...systems in which the video did come in PCI. DVI Video DVI video is becoming more popular, especially ...
- PHP
- Databases
- Microprocessor
- Storage Devices
- Motherboard and buses
- Networks
- Multiprotocol Label Switching and Asynchronous Transfer Mode Architecture - ...ity The success of Asynchronous Transfer Mode was limited to its use in the WAN network. As IP became the ...
- Label Advertisement - ... label. Each label value is mapped to a VPI/VCI value, and a virtual circuit is built for each label. Such a virtu...
- Cisco Express Forwarding - ...tocol that the router can forward packets for must have a separate forwarding table. Such protocols might include D...
- VPN
- Application Proxy and Gateway Firewalls - ... the criteria set, rewrites it, and sends it on its way.The proxy terminates the connection from the outside sourc...
- The inspection of TCP IP packets - ...incoming interface or routing table.Therefore, if the packet has inconsistent information concerning its origin...
- Lower Data Transfer Rates Than a Packet Filter - ...iderations. Lower Data Transfer Rates Than a Packet Filter As stated above, ther...
- AJAX
- Creating HTTP Resources with Ajax - ... Source: /client/scripts/jaxson/communications.js function UniqueURL( url) { this.asynchrono...
- Implementing a Shopping Cart using Ajax - ...ique = new UniqueURL( "/pyservices/shopping/cart/getone"); unique.haveIt = function() { docum...
- Implementing a Bank Account using Ajax into a shopping cart - ...en URL and its descendents. • HTTP authentication: By using HTTP authentication, it is possible ...
- Do not Submit Your Forms Ajax Them - ...ext box, a list box, or a combo box, that users can use to enter information. When they’re content with the in...
- Understanding the Definition and Philosophy of Ajax - ... Adaptive Path coined the original definition1 of Ajax. Quoting the original definition, Ajax incorporates the follo...
- Understanding the Definition and Philosophy of Web Services and SOA - ...ocol (SOAP), Web Services Description Language (WSDL), and so on. It leads you to believe that in order to build aWe...
- Understanding the Definition and Philosophy of REST - ... to the data sent between the client and the server. It refers to how to address and send or receive the data. Le...
- The Easiest Way to Get Started with Ajax and REST - ... hinder you from writing Ajax applications, then you should think hard about continuing using the technology. ...
- Microsoft office
- Recording Transactions in Credit Card and Line of Credit Accounts - ... charges. As does the Withdrawal form, the Charge form has places for entering a transaction date, amount, p...
- Changing, or editing, transactions using Money 2004 - ... case, display the errant transactions in the Find and Replace dialog box. Then follow these steps to fix the transa...
- Money 2004: Setting Up Your Own Categories and Subcategories - ...creating categories and subcategories. That way, you get it right from the start and you lower the odds of havin...
- Money 2004: Moving all transactions from one category to another category - ...ds subcategory when you should have assigned them to the Childcare category, select the Education: Kids subcategory...
- Fixing mistakes as you reconcile in Money 2004 - ... button and enter the transaction. • Repair an error: Enter the correct amount, check n...
- Money 2004: Setting Up Investment and Retirement Stock Option Accounts - ... investment and retirement accounts, you can click the Portfolio button and see an electronic version of your po...
- Editing an Investment or Retirement Account Transaction - ...or investment securities is to click the Work with Investments link in the Your Portfolio window and click the n...
- Recording stock splits, short sells, margin purchases, and other esoterica - ...e Your Portfolio window, click the Record a Special Activity link and then choose Record a Split f...
- Getting to Know Microsoft Office 2007 - ...late your data, such as underlining, enlarging, coloring, or deleting it. Third, you have to save your data as a f...
- Giving commands to Office 2007 - ...p;Gallery icons: Some icons display a downward-pointing arrow that displays a drop-down list of addi...
- Sharing Data with Other Office 2007 Programs - ...rd, Excel, PowerPoint, Access, and Outlook). To store data on the Office Clipboard, you just need to use the Cut or ...
- Optical devices
- Windows Vista
- Avoid Using Serial Ports When Connecting Older Digital Cameras - ...strong> Choose Start Control Panel. Windows displays Control Panel. ...
- Opening Windows Vistas Photo Gallery - ...he pictures in the gallery. • Click the Recently Imported category to see pictures you’ve imported...
- Change the Date or Time Stamp on a Picture using Vista - ... does. Click the Auto Adjust button, and Windows Photo Gallery tries to improve the exposure and color. If you like t...
- Hot to connect DV Camcorder to Your Computer - ...FireWire connection Most DV camcorders use a FireWire or IEEE 1394 connection. If your computer doesn&...
- How to edit a movie recorded with a video camera - ...a link in the Edit section of the Tasks pane if it’s not currently selected. You can then use the Location dro...
- Vista: Creating DVDs with Windows DVD Maker - ...oose to burn your movie to a DVD, Windows Movie Maker announces that it will save your project, close it, and open...
- How to burn CDs and DVDs on Windows Vista operating system - ...good idea to have a rough idea of the capacity of CDs and DVDs, understand the difference between recordable and rewri...
- Burning Files to Disc Using the Mastered Format - ...he Disc Title text box, either accept Windows’ suggestion a short form of the current date or type a more descrip...
- How to play some games on Windows Vista Ultimate - ...ll and configure game controllers, and how to get the best performance from your computer when running games. ...
- How to configure Windows games from my computer - ...self to User Account Control. Windows displays the Parental Controls window. 2. ...
- What is an Internet network and how to setup a home network - ... simply computers connected to each other so that they can share resources or exchange information. A network can con...
- Expert Knowledge: IP Addresses and How They Work - ...:ffff:0000:2f3b:02ba:00ff:fe28:9c5a. You can also compact many IPv6 addresses by suppressing any leading zeroes in a sec...
- Advantages of Wired Networks over Wireless Networks - ...xample, there are no cables. But it doesn’t always work out that way in practice, as anyone will attest who ...
- Choosing Hardware for a Gigabit Ethernet or Fast Ethernet Network - ...Network Interface Cards If you’ve decided to go with Gigabit Ethernet, your choices are simple...
- How to create Small Networks with FireWire - ...the cable flies”- around or over any obstacles that the cable can’t go through, and preferably not strung l...
- How to build a network for your home or your home office - ... your computer recently, chances are that it already has a network adapter built in. 2....
- Learn how to setup different types of networks - .... Crossover cables can transmit data to an uplink port just fine. See the next section for a description of u...
- How to connect to a Wireless Network - ...rong>3. Select the network in the list, and then click the Connect button. The wizard displays...
- Browsing the Network with a wireless connection - ...username and password, select the Remember My Password check box if you want Windows to store the password, and then cl...
- Connecting Mac and Linux Clients to the Wireless Network - ...item. 4. Navigate to the computer that's sharing the drive, and then click...
- Should You Connect Your Network to the Internet - ...ers, mapping a drive by using the net use command, and configuring network components manually. It ends by discussing h...
- Should You Use ICS or Another NAT - ...ent NAT device. • ICS is integrated with Windows Firewall. This integration lets you set up a shared and f...
- Setting the IP Addresses of Connected Computers - ...abs an IP address from it on the next go-around of network polling. If Windows doesn’t find a DHCP server whi...
- How to use a Shared Internet Connection - ...ed in the section “Sharing Files and Folders” in Article 9, you can share a file or folder in two easy way...
- Connecting to an LPR Printer - ...s one. For some print servers, you may need to install TCP/IP redirection software that captures the print jobs and ...
- Software security
- Linux
- Simple Network Management Protocol SNMP - ...ed; so it is very easy for a man in the middle to sniff the community strings. When you set up SNMP on a device (includ...
- Firewalls, netfilter/iptables - ...lot of documentation on both projects for netfilter, http://www.netfilter.org, and for iproute, ...
- Iptables Target Specifications in Linux - ...a packet to a user-defined chain. For example, if we create a new chain like "iptables –N SSH", we need...
- HTML XHTML and CSS
- Creating Extensible Document Structures with XHTML - ...R/xhtmlroadmap/. This document describes the end of development on HTML as well as the next few steps — roughly...
- HTTP Content Negotiation and Context Tangles - ...ys, it hasn't been sufficient for a long while. Web developers have had to create a lot of workarounds for figuring ou...
- Fragmenting XHTML - ... Drafts of the XHTML 1.1 specifications. Some content may change between the time of this writing and the final appr...
- XML DTD Modules - ...wn modules, it is critical that you include abstract modules. XREF If you haven't done much...
- Putting XHTML 1 Together - ...p://www.oasisopen. org/html/a401.htm. The Formal Public Identifier is the easiest part to create. FPIs contain four f...
- Extending XHTML - ...d this article if you plan to build your own extensions to XHTML or you need to understand how new modules from vario...
- Building or Modifying Driver Files - ...se to create a separate customization file, also. The XHTML-Biography Module driver has to include the declarations fo...
- PC performance
- MAC
- Rolling Your Own with Unix Utilities - ...ou. But if your motivation is to save money, I urge you to reconsider. The complex issues one must address in designing...
- Set Up Your Backup System. Partitioning without Reformatting - ...can't create duplicates. This is not a deal-breakeryou can use any of dozens of other applications to do that, and som...
- FileVault and Backups - ...g your software to ignore the FileVault disk image and instead look only at the files stored within it; you must then ...
- Restore Data from a Backup - ...repair tool to fix any errors on your hard disk. If you are unable to fix the problems, or if they recur even after the...
- Troubleshooting and backup resources - ...upport/). Apple's discussion forums: Another Mac user may have discovered, and solved, a similar probl...
- Windows XP
- Game Controllers and External Drives in Windows XP - ...squo;re using). Your entire hand fits on top of the controller, much like a trackball, and your fingers use the keys...
- Surge Protectors and UPS Units - ...ns: - Safety nets: A UPS provides a number of extra minutes of AC power if your...
- Maintaining Your Hardware - ...squo;s coming from the proud owner of two antique RadioShack computers and three antique Atari computers.) When S...
- Should you refill used inkjet cartridges. Scanners. - ...et cartridge which I discuss in the next section you should clean the cartridge nozzles immediately after the...
- Rotating and cropping images using a scanner in Windows XP - ... significantly cut down its file size. To rotate an image that you’ve scanned so that it displays in the...
- Ripping Your Own MP3 Files in Windows XP - ... this article, I tell you what’s so incredibly cool about MP3 digital music, how you can create your own MP3s, a...
- Listening Music using Windows XP Professional - ... that appears. - Run an MP3 player application such as MUSICMATCH Jukeb...
- Installing Microsoft Windows Updates - ...mputer troubleshooter. Computer problems that require a soft- ware update, new driver, or system patch can be particul...
- Updating the BIOS under Windows XP - ...ere. Don’t update your BIOS just because you discover that there’s a new release out there on a website. If...
- Viruses, Worms, and Trojan Horses - ...;s theft, plain and simple. Not only does it involve the unauthorized use of computer and network resources, but it al...
- Firewall Software under Windows XP - ...to break into your files. It’s not that the data on your computer is anymore attractive than the data on any of t...
- Internet connection and Windows XP - ...er and your Internet service provider’s (ISP) point of access to the Internet. That problem might be due to a co...
- How to setup a local network in Windows XP - ...oubleshooting, however, fixing a network is usually a matter of examining each element and returning the configuration ...
- Windows XP activation and hardware problems - ... to either physically examine the suspect part or swap it out with another piece. Sometimes a hardware failure is...
- Installing a New Hard Drive on Windows XP Professional - ...load and run Windows, but you still have to find a way to recover the data from the broken drive. Therefore, you...
- How to recover data from a corrupted hard drive using Windows XP Pro - ...drive if you make regular and frequent backups. It’s often easy to confuse a software failure on ...
- How to move a hard drive to a new computer under Windows XP - ...p the new computer and install Windows XP on the drive that came with that computer and treat the old drive as a D or s...
- Adding more RAM under Windows XP - ...es were not identical to the others, the system would default to the slowest one and continue working....
- Mouse, Keyboard, Motherboard and Power Supply Problems - ...uter does not work at all after you install a new motherboard, look for these possible reasons: Is the po...
- Using a printer on Windows XP Professional - ...D indicators on the printer is on, the printer probably has an electrical problem. Confirm that the power switch is tur...
- Windows XP Professional technical support - ...ibly discover symptoms and solutions that you have overlooked. And second, a bona fide expert might have seen the same...
- Creating a backup of your system under Windows XP - ...timately, you must shift your goal from identifying and repairing the problem that caused your computer to crash to re...
- Reinstalling Windows XP Professional - ... appear during startup, before Windows loads. If you see the Press Any Key To Boot From CD message, press the spacebar...
- How to Back Up Your Data using Windows XP - ...on an automated schedule, or remember to run them manually. Like changing the oil in your car, there’s no immed...
- What to do to optimise your Windows XP operating system - ... on the disk. This is known as fragmentation. On a severely fragmented drive, a single file might be split into a doze...
-
Travel and leisure ¬ - Outdoors
- Sailing and cruising
- Rentals and vacation
-
Electronics and communication ¬ - Mobile cell phones
- VOIP
- GPS
- Conferencing
- Satellite
- Wireless
- Buying a Windows Notearticle with Integrated WiFi - ... much attention to cute design and colors. Buy a laptop with a CPU specially designed for mobile computers...
- Playing with Wi Fi Gadgets - ...ing to go to great lengths to be the first on their block with new technology "toys." So a bit of caution is in ...
- Protocols
- Batteries
-
Education and reference ¬ - Science
- Philosophy
- Life concepts
- Home schooling
- University and college
- Vocational
- Research
- The Universe
- Space Race: From Sputnik to the International Space Station - ...light of a Soviet cosmonaut Yuri Alekseyevich Gagarin. This Really Is ...
- Mythology
- Homeric and Platonic elements - ...Even for the one who comes last there lies a life that is desirable and not evil, if he chooses intelligently ...
- Avernus, The lake. Charon - ...'s birds and in his joy prayed: "Be leaders, if there is some way, and direct your course to the grove where t...
- Charon, Menippus and Hermes - ... roll a huge rock, others hang stretched on the spokes of a wheel; Theseus sits in his misery and he will rema...
- Orpheus and Orphism. Who was Hymen - ...s, had wept his fill to the breezes of the upper world he dared to descend to the Styx ...
- A new dynasty was then founded by Labdacus - ... Peloponnese) to escape from the anger of her father, Nycteus. In despair Nycteus killed himself, and his brothe...
- The seven against Thebes - .... Several other dramas deal with the saga, including two with the title Phoenician Women, one by Euripides and t...
- Thebes Mycenae was the most popular source for legends - ...us of Corinth against Oenomaus. He would have a short start and take Hippodamia in his chariot with him; O...
- The Trojan horse and Achilles - ...: "Thus she spake; but already the life-giving earth held them there, in Sparta, in their own native land." ...
- Troy, Priam and Iliad - ...ows that Troy could be captured. Accordingly, Odysseus and Diomedes fetched Philoctetes from Lemnos; his wound ...
- The war for Troy and the Trojan horse - ... Menelaus, king of Sparta, Diomedes, king of Argos, and Nestor, king of Pylos. We have already seen how involved ...
- The visit of Odysseus to the Underworld - ...e rock with his trident, and Ajax was hurled into the sea and drowned. The storm was not the only peri...