Mar
03

when using default docman theme, in Firefox there is a blank space between the title categorietitle, sometimes between some other items, which looks really argly.
In Internet Explorer IE it works well,there’s no such space.

I haven’t find out the reason yet(i believe it’s about your joomla theme), but i got a solution.

Please delete this piece of code ” <div class=”clr”></div>” from all the following files in this location
Continue reading “Docman Firefox theme error solved!”

Feb
28

“hpqscnvw has stopped working” or “Unable to communicate with HP scanning Software. Please verify that it has been installed and is working properly. If this problem persists, please shut down your application and try again” or “An error occurred communicating with the scanning device. Please ensure that the scanning device is connected properly and try again”

HP printer’s other functions works well but the scanner does not work and the sentences shows as above.

It is because that HP Solution Center (the scanning software that comes with many HP scanners) has a bug. In Vista OS, it crashes when tablet functionality is enabled.

After many weeks of escalation, it has still not been acknowledged or resolved,  because it bounced between HP and Microsoft.

The easiest way to solve this is:

1. enter “services” in the search bar in the start menu and click “Services” in the search result.

hpqscnvw has stopped working

:

2. stop these two servecs Continue reading “perfectly solve the “hpqscnvw has stopped working” problem”

Nov
08

One of the most common requirements any web designer/developer will come across is likely to be that of the small business taking its first steps online; a client with an established widget-selling company now wants to move into the national market and sell their widgets to the world.

What they need to do this (apart from a great-looking, functional, usable and accessible website!) is some sort of shopping-cart system to allow their customers to add, remove and update the products they wish to buy.

This article will walk through the simple steps to achieve this, using the server-side language PHP and a MySQL database.

Setting up the database

Let’s take as our example a bookseller. They are not the best-stocked bookseller in the world, having as they do only three titles in stock, but it is enough for our example. Let’s create the database and add some stock:

  1. CREATE TABLE books (
  2. id int(6) unsigned NOT NULL auto_increment,
  3. title varchar(100) NOT NULL default '',
  4. author varchar(100) NOT NULL default '',
  5. price decimal(3,2) NOT NULL default '0.00',
  6. PRIMARY KEY (id)
  7. ) TYPE=MyISAM;
  8. INSERT INTO books VALUES (1, 'Where God Went Wrong', 'Oolon Colluphid', '24.99');
  9. INSERT INTO books VALUES (2, 'Some More of God\'s Greatest Mistakes', 'Oolon Colluphid', '17.99');
  10. INSERT INTO books VALUES (3, 'Who Is This God Person Anyway?', 'Oolon Colluphid', '14.99');

Now that step is out of the way, let’s create our shopping cart.

Identify our requirements

The cart we are going to build should be pretty familiar to most internet users. It will provide a means of displaying a message on every page of the site (along the lines of “You have 5 items in your shopping cart”), which when clicked will take the customer to a list of the items in the cart; each item may be removed or have its quantity updated.

As all of our stock details are stored in the database, the only piece of information that we need to store about each customer is the id of each product they have added to their cart. To do this, we are going to use PHP’s built-in session handling capabilities.

Using sessions in PHP

PHP’s session handling is very easy to understand.

To ‘switch it on’, simply add session_start(); at the top of your code; you can then store values (or arrays) in session variables:

$_SESSION['name'] = ‘Matthew’; $_SESSION['age'] = 31;

These $_SESSION variables will now be available to any PHP scripts on other pages (as long as you’ve included the session_start(); call first).

Continue reading “A simple PHP shopping cart script”

Oct
14

when installing EA fifa soccer 2009 in Vista, the following problem may occur

error reading from file X :\autorun.dat. Verify that the file exists and that you can access it.

the problem is that in Vista, you must have the authority to visit a certain file.

you can do the following to solve the problem:

  1. copy all the content in the Fifa 09 DVD to your hard drive.
  2. Right click the autoruan.dat then chose Properties

Continue reading “Perfect solve the fifa 09 installation problem in Vista”

Oct
13

Question 1

Using the BAIT (Business, Applications, Information, Technology) architecture stack, give examples of

a) A set of important business processes that would be relevant for Air Centre to document and manage for their business.

This case is assumed that Air Centre has implemented a differentiation strategy by providing customers with all aspects, real time information about airline ticket through internet. The online service allows customers to compare flights from different airline companies. Moreover, customers can book their airline tickets online and simply pick up their tickets by validated transaction number to airline’s check in counter.

The following business goals for the Air Centre were assumed according to the information provided.

  • Improve customer satisfaction by providing 24/7 online booking service.
  • Cut operational costs by automating business processes.

Continue reading “Information Architecture Assignment 2”

Oct
13

Background

When I started my bachelor’s degree in the university in China, I had more spare time than in high school and I started a small website which actually a forum. At the beginning, the reason why I built the website is just interest and that I wanted to obtain some experience about websites and programming. At the very start, the main audience is students in my university and then expended to universities all over the country. The categories of the forum includes image sharing, funny stories, past exam papers, second hand goods on campus, studying abroad information, computer games, English study and so on. As the website grew bigger, problems started to occur. This, from my point of view, is the problem of a legacy system and the small website I started is a legacy system. This paper discussed what should be done upon this situation. (Some actions I actually did and some I think should be done after taking this subject)

Continue reading “Information Architecture Individual Assignment”

Oct
13


BUSINESS INTELLIGENCE APPLICATION PROPOSAL

Submitted By:

274620: Vasundhara Rajagopalan

281788: Ambarish R Srikar

198290: Krishna Guduru

276279: Kai Dong


Business Intelligence (306-622)

Faculty of Economics and Commerce

Dr. John Williams

Group Assignment- Semester 2, 2008.

Business Intelligence Proposal

“Bradbury Ltd.”

(WORD COUNT: 3322)



Table of Contents

Executive Summary

1. Section 1: Business Intelligence

1.1 Business Intelligence

1.2 BI and Bradbury Ltd.

2. Section 2: Future:

2.1 Expected Evolution of BI over 5 years

2.2 Evolution of BI and Bradbury Ltd

3. Section 3: Potential Limitations of BI

4. Section 4: Technology:

4.1 Technology options of BI for Bradbury Ltd.

5. Section 5: Conclusion.

6. Section 6: References

Continue reading “Business Intelligence Group Assignment- Semester 2, 2008.”

Aug
06

source: http://www.extremeprogramming.org/

put the articles together and make them easy to read and share.

What is Extreme Programming(XP)?

Extreme Programming (XP) is actually a deliberate and disciplined approach to software development. About eight years old, it has already been proven at many companies of all different sizes and industries world wide.
XP is successful because it stresses customer satisfaction. The methodology is designed to deliver the software your customer needs when it is needed. XP empowers your developers to confidently respond to changing customer requirements, even late in the life cycle.
This methodology also emphasizes team work. Managers, customers, and developers are all part of a team dedicated to delivering quality software. XP implements a simple, yet effective way to enable groupware style development.
XP improves a software project in four essential ways; communication, simplicity,

Continue reading “Extreme Programming (XP)”

Jul
14

Devil May Cry 4 was released. i’m working on it at the moment. it’s cool

Devil May Cry official site: http://www.devilmaycry.com

althogh the most wanted on is MGS, which is PS3 only. hopefully two years later, it will be on PCs.

Metal Gear Solid official site:http://www.konami.jp

Download

Devil May Cry 4  ISO and crack Torrent download here

Jun
23

After doing relative research about Cisco, its business model can be described as shown in Figure1. All the entities are connected via web portals, internet, xml, EDI etc. Cisco’s virtual close system is connected to these entities too and generates “real-time” financial statement for decision makers.

Continue reading “Cisco’s business model 2008”

Jun
09

Porter’s Five Forces


A MODEL FOR INDUSTRY ANALYSIS

The model of pure competition implies that risk-adjusted rates of return should be constant across firms and industries. However, numerous economic studies have affirmed that different industries can sustain different levels of profitability; part of this difference is explained by industry structure.

Michael Porter provided a framework that models an industry as being influenced by five forces. The strategic business manager seeking to develop an edge over rival firms can use this model to better understand the industry context in which the firm operates.

Diagram of Porter’s 5 Forces

SUPPLIER POWER

Supplier concentration
Importance of volume to supplier
Differentiation of inputs
Impact of inputs on cost or differentiation
Switching costs of firms in the industry
Presence of substitute inputs
Threat of forward integration
Cost relative to total purchases in industry

BARRIERS
TO ENTRY


Absolute cost advantages
Proprietary learning curve
Access to inputs
Government policy
Economies of scale
Capital requirements
Brand identity
Switching costs
Access to distribution
Expected retaliation
Proprietary products

THREAT OF
SUBSTITUTES


-Switching costs
-Buyer inclination to
substitute
-Price-performance
trade-off of substitutes

BUYER POWER

Bargaining leverage
Buyer volume
Buyer information
Brand identity
Price sensitivity
Threat of backward integration
Product differentiation
Buyer concentration vs. industry
Substitutes available
Buyers’ incentives

DEGREE OF RIVALRY

-Exit barriers
-Industry concentration
-Fixed costs/Value added
-Industry growth
-Intermittent overcapacity
-Product differences
-Switching costs
-Brand identity
-Diversity of rivals
-Corporate stakes

I. Rivalry

In the traditional economic model, competition among rival firms drives profits to zero. But competition is not perfect and firms are not unsophisticated passive price takers. Rather, firms strive for a competitive advantage over their rivals. The intensity of rivalry among firms varies across industries, and strategic analysts are interested in these differences.

Continue reading “Porter’s Five Forces”

Jun
09

The Value Chain

To better understand the activities through which a firm develops a competitive advantage and creates shareholder value, it is useful to separate the business system into a series of value-generating activities referred to as the value chain. In his 1985 book Competitive Advantage, Michael Porter introduced a generic value chain model that comprises a sequence of activities found to be common to a wide range of firms. Porter identified primary and support activities as shown in the following diagram:


The goal of these activities is to offer the customer a level of value that exceeds the cost of the activities, thereby resulting in a profit margin.

Continue reading “The Value Chain”

Feed Icon