Friday, April 28, 2006

Free English to Vietnamese and Vietnamese to English translation services.

Hello there!

To celebrate the Vietnam Reunification Day (30 Apr) and the International Labour Day (1 May), I'm happy to offer the friendly visitors of my blog with free English to Vietnamese and Vietnamese to English translation services.

The texts which you would like to be translated could be anything from your personal daily business to your favor literatures. But please make sure that the texts are not more 03 papers in A4 size.

You are encouraged to leave your text in the comment box of this topic. The next work would be mine.

Wednesday, April 26, 2006

Gió vô tình ngàn năm trôi mãi

Trả lại anh !
Tất cả những yêu thương Ngày cũ...
Trả lại anh !
Khăn của gió mùa đông!
Hơi ấm của buổi thơm nồng!
Bao hạnh phúc Gói trong nỗi nhớ!
Giờ mùa đông lại về Gõ cửa...
Gió vô tình gạt tiếng đi xa!
Để trái tim em không mở ra!
Đón anh vào một lần sau cuối!
Có phải vì trái tim yếu đuối
Vết thương lòng rỉ máu ngày xưa!
Biết giờ này anh ở nơi xa
Vui duyên mới
Cùng tình yêu mới
Có bao giờ anh còn thấy được
Mùa tuyết nào chung bước bên nhau
Có bao giờ anh biết được đâu???
Em khóc lặng chờ anh về trên phố!
Đếm thời gian trên bước chân quen.
Không có anh rồi em biết khóc vai ai??
Và đêm nay một tiếng thở dài
Tim em lạnh hóa thành bông tuyết!
Bay giữa cuộc đời Không biết về đâu!
Và có khi cho mãi ngàn sau
Không ai hiểu một thời tuyết ấm!

Barcelona vs. AC Milan

AC Milan has troubled itself when it has not well managed to have a positive result in San Sirro one week ago.

The game of Althen has gone 12 years ago. Only Maldini, Costacuta, Raijkard, Accelloti of Althen game remain on the field.

Anyhow, I still believe the resulf 2:1 for Milan is totally possible. Forza Milan!!!!

How to compile a Java program

How to Compile and Run a Java Program


Everytime you make a Java program, you will follow the same 3 steps:
Create a source file. This is the file where you write the java code. This file can be written in any text editor (such as Notepad on Windows or Xemacs on UNIX). This file must be saved with a .java extension.Note: the Java compiler is case-sensitive so you must capitalize consistently. HelloWorld is not the same as helloworld.
Compile the source file. The compiler, javac, takes your source file and translates it into bytecode.
Bring up the Command Prompt
Windows XP- Start Menu->Accessories->"Command Prompt"
Windows 95/98/2000/NT/ME - Start menu->"MS-DOS Prompt"
UNIX - Open eterm or xterm
Move into the directory that contains your source file(s)
Type cd dirname to change directories (where dirname is in the name of the directory you want to go into and is located in the current directory).
Type ls in UNIX or dir in DOS (Windows) to list the contents of the current directory.
Type ../ to move up (back) a directory.
Type javac filename
filename should be the name of your .java source file(s)
If you have errors trying to compile, see our FAQ Page.
Run the program. Since we are dealing only with Applets in this guide, there are 2 options for running your program. We can either view the applet with the AppletViewer or embed our applet on a website and view it in a java-enabled web browser.
Web -
Create a web page
For help see Basic HTML or use this basic template.
Make sure that you set the source of the Applet to the name of your compiled class files. I.E. In the

Tuesday, April 25, 2006

The Thesis schedules

vu hong khanh

Typical Table of Contents
Part 1: Business case

Content of work
Required No of pages
Writer

deadline
I. Introduction: the Company
From 5- 7 pages
Khanh
5/5/2006
1. General Presentation
2. Main Business processes
3. The company’s Information system
II. Business Improvement project
1. Target Process: detailed description
From 2- 5 pages
Khanh
31/5
Ø Identify problems:
Ø Goal:
Improve sales up to 20% compare with recently year.
Ø External analysis:
10
- Lan Anh + Hung
- Khanh: assist
31/5
- Customer behavior:
Using business statistic to analysis (by questions survey…)
- Government policy:
Detail some policies, decrees, circular, information ect…that having the negative impacts on Mercedes or Vietnam local automobile industry.

- Competitors:
- Market analysis:
(Slowdown market growth…, give the detail figures to improve)
- Technologies:
…etc…
Ø Internal analysis:
10
- Khanh.
- LA + Hung: assist
31/5
- Sales:
· Sales process
· Situation
· …
- Marketing
- Finance
- Human resource ( organization structure)
- Distribution
- Information system
- Production
- R & D
2. Project goal : Qualitative description
5
Not yet
Waiting for Processor
3. Project goal : Quantitative description
5
Not yet
4. Project goal : economical and financial analyses
3
Lan Anh
31/5

Java definition

An object-oriented programming language that is platform independent (the same Java program runs on all hardware platforms without modification). Developed by Sun, Java is widely used on the Web for both client and server processing. Modeled after C++, Java added programming enhancements such as "garbage collection," which automatically frees unused memory. It was also designed to run in small amounts of memory. The first Web browsers to run Java were Sun's HotJava and Netscape Navigator 2.0.Applets, Applications and ServletsJava programs can be called from Web pages or run stand alone. When launched from a Web page, the program is called a Java "applet." When a non Web-based Java program is run on a user's machine, it is a Java "application." When running in a Web server, it is a Java "servlet."Intermediate BytecodeThe source code of a Java program is compiled into an intermediate language called "bytecode," which can reside on any hardware platform. In order to run the bytecode, it must be compiled into machine code either ahead of time like a C/C++ program, just before it is needed (see JIT compiler) or via a Java Virtual Machine (JVM), which is a line-at-a-time interpreter. There are compilers and JVMs for all major hardware platforms, and the intermediate bytecode is what makes Java machine independent.Java Vs. JavaScriptJava is a full-blown programming language, whereas JavaScript is a scripting language that is much more limited in scope. JavaScript source code is not compiled into bytecode. It is embedded within an HTML page and is primarily used to manipulate elements on the page itself. For example, JavaScript is widely used to provide drop-down menus and other interactive events on the page. See JavaScript.
A Revolution?Java was originally developed in 1991 as a language for embedded applications such as those used in set-top boxes and other consumer-oriented devices. It became the fuel to ignite a revolution in thinking when Sun transitioned it to the Web in 1994. Java is a full-blown programming language like C and C++ and allows for the creation of sophisticated applications. Thus far, Java applications and applets have been mildly successful at the client side, but Java on the server has become very popular. Sun's J2EE enterprise model has become an application server standard (see J2EE).Write Once-Run AnywhereJava embodies the "write once-run anywhere" model, which has been one of the Holy Grails of computing for decades. For example, a J2EE server application can be replicated from a Unix server to a Windows server and vice versa with relative ease. Sometimes, a little tweaking is necessary; sometimes a lot, but Java is closer to "write once-run anywhere" than any development platform in the past. See Java platform, servlet, JSP, Java 2, Jini, network computer, CaffeineMark and caffeine based.The following Java example of changing Fahrenheit to Celsius is rather wordy compared to the C example in this Encyclopedia. Java is designed for GUI-based applications, and several extra lines of code are necessary here to allow input from a terminal.
import java.io.*;
class Convert {
public static void main(String[]args)
throws IOException {
float fahr;
StreamTokenizer in=new StreamTokenizer(new
InputStreamReader(System.in));
System.out.print("Enter Fahrenheit ");
in.nextToken();
fahr = (float) in.nval;
System.out.println ("Celsius is " +
(fahr-32)*5/9);
}
}
Java Uses an Intermediate Language
Java source code is compiled into an intermediate language called "bytecode." The bytecode can be run in any hardware that has a Java Virtual Machine (JVM) for that machine platform. Thus, the "write once-run anywhere" concept.
Java Runs on Clients and Servers
When a Java program has been called by a Web page from the client machine, it is dubbed an "applet." When it runs on the server, it is known as a "servlet." When running stand alone in a user's computer, it is a Java "application."
Sources=Sources 32
Attribution()

My picture

The Master in Business Management and Information System Thesis

vu hong khanh

THE INITIAL CONCEPTUAL DESIGN OF BUSINESS PROPOSAL FOR mbis PROGRAM
By
Nguyen Thi Lan Anh
Bui Phi Hung
Vu Hong Khanh
A thesis submitted in partial fulfillment of the requirements for the degree of
Master of Business Management and Information System
Ho Chi Minh Open University and University of Brussels of Liberty
2004 - 2006
Approved by ___________________________________________________
Chairperson of Supervisory Committee
Program Authorized to Offer Degree
Master in Business Management and Information System
Date:_______________________________________________ 09 Jan 2006__

Ho chi minh city open university

the initial conceptual design for mbis1 final thesis
By
Nguyen Thi Lan Anh
Bui Phi Hung
Vu Hong Khanh
Chairperson of the Supervisory Committee:
Professor Alle
Department of Postgraduate

introductions
INTRODUCTIONS:

Introduction
Mercedes-Benz Vietnam Ltd. (MBV) produces and sells passenger cars, minibuses, city buses and tourist buses.

The MBV factory is located at Go Vap district, Ho Chi Minh city. The factory covers 105,000m2 and has a production capacity of about 4,000 vehicles per year.

The factory includes a Training Center which carries out sales, marketing and technical training courses to ensure a high level of employee competence.

Mercedes-Benz Vietnam has achieved certificates of ISO 9002 and 14001.


Vision of Mercedes-Benz Vietnam
Mercedes-Benz Vietnam is No.1 in:
Customer care
Quality
and Innovation
Mission of Mercedes-Benz Vietnam
Constantly delight our customers with quality and innovation of our products and services, resulting from the excellence of our processes and people.

Basic Aims/ Strategic Goals
Exceed customers expectations and satisfaction
Motivated and team oriented workforce
Improve continuously skills and sense of professionalism
achieve turnover/ cost and profit targets
Fulfill schedules and target agreements
Continue improvement of processes
Develop new business fields
Customer Center
Customer Center is designed and built to meet Mercedes-Benz worldwide standards. Professional staffs always welcome guests in a comfortable hall to help customers freely examine and have a chance to drive Mercedes vehicles.

Information about automobile, spare parts and latest news of Mercedes-Benz worldwide are also provided here. Customers will be consulted and answered all personal concerning questions before making decision of buying Mercedes-Benz vehicles.


Production
Mercedes-Benz Vietnam has invested in the latest technology transferred by Mercedes-Benz in Germany. CKD-parts are imported from the affiliated Mercedes-Benz companies and then assembled/manufactured in Vietnam.

All the designs of the vehicles are the same as Mercedes-Benz global ones. For large buses, some details of body and chassis are modified to meet Vietnamese market's needs.

Mercedes-Benz Vietnam is proud of its professional and skillful engineers and workers, who passed inland and oversea training courses of multi-national production level.


Automobile Testing Center
Built as the top equipped in South East Asia, Mercedes-Benz Automobile Testing Center in Vietnam is to test the vehicles quality and assure that Mercedes-Benz worldwide standards are applied.

In this modern center, all testing, maintenance and technical diagnosis activities for Mercedes-Benz vehicles are done with digitalized testing procedures, thus yielding accurate results quickly and conveniently.

Not only a wise investment decision for production technology, Mercedes-Benz automobile testing center is also an effort of Mercedes-Benz Vietnam to offer customers the best services.

Service

Service Agencies
Mercedes-Benz has Authorized Service Agencies, which are located throughout the country.

24-hour hot line
Provide on-the-field service to customers in case they could not come to Mercedes-Benz workshop. 24-hour hotline: 0903802092.

Workshop Information and System "Star Diagnosis"
Modern workshop computer star diagnosis system, in accordance with Mercedes-Benz world-wide standards, ensure that maintenance, warranty and repair Service are performed efficiently.

Original spare parts for all MB products
Central Parts Department always stocks original spare parts of MB products to serve customers as quickly as possible.

Electric Part Catalogue
Electric Part Catalogue systems can find the right part quickly for all MB vehicles.

Mercedes-Benz Collection

All series of Mercedes-Benz luxurious miniature cars of different model lines are available for sale at Customer Center and Mercedes agencies.



Additionally, Mercedes-Benz luxury fashion items such as watches, sunglasses, wallets and leather bags, personal accessories, are ready for your own fashion collection.

Main Business Processes:

Monday, April 24, 2006

Mercedes Benz S 500 (W221) test drive.



This is properly the first S 500 (W221) in Vietnam.