marietatum

January 4, 2011

How to call Servlet to process the request

Filed under: Uncategorized

Call Servlet processes the request

1, element and its child elements, declare a Servlet.

*: Specify a text description for the Servlet.

*: for the Servlet to provide a short name displayed by some of the tools.

*: specify an icon for the Servlet, the graphical management tool that the Servlet.

: Servlet's name, and Uniqueness.

or : the full path for the Servlet. specified web application jsp file full path to / start of a jsp file to do URL mapping.

*: Servlet initialization parameters defined.

*: initialization parameters described in the text.

: initialization parameter name.

: initialization parameter.

?: WEB application is started, Servlet is loaded in the order. Contents of an integer value.

Negative or did not set this element that Servlet container to the client request load it when the Servlet

WEB positive or o that the application is started by numerical size from small to large initialization Servlet.

If both contain element and the , is also pre-compiled jsp files and load.

?: The role of the implementation of components

: text description.

: the role of the designated name of the implementation of components.

*: Statement at the component or components to deploy the code in the security role references.

*: text description of security roles.

: the use of the security role name.

?: Assigned to a security role reference.

2, element and its child elements, in the servlet and define a mapping between the url.

: Servlet name, uniqueness and consistency. And elements in the statement of the same name.

: specifies the URL relative to the Servlet Path. The path relative to the root web application context path.

Third, the process of loading Servlet

Context container object to the request path (URL) to deal with it, get rid of the request URL after the context path, the path mapped by the rules and Servlet Mapping the path () do match, if the match is successful, call the Servlet handling request.

Matching rules:

URL request an exact match, if successful, call the Servlet processes the request. Match the longest path prefix to / for the path separator, step by step according to the path tree matching, select the longest match of the Servlet to deal with. If you do not match the previous success, the container will make WEB application to call the Servlet processes the request. If not defined the default Servlet, the container will be sent by the client 404 (the requested resource does not exist) error message.

MKV file converter

COMPARE Printer

how to rip dvd and convert video To blackberry

Articles about Strategy And War Games

Audio RIPPERS And Converters Expert

Easy to use Personal Finance

VOB to MOV

TS to DVD

VOB file CONVERTER

October 26, 2010

Learning comfortably find bean's Home Interface

Filed under: Uncategorized

EJB error? Not panic!

You have Java in their favorite books read on the chapter Enterprise Javabean technology also has practiced a simple HelloWorld bean, and follow the deployment process of the proposed release it. Now you have to write a client to client through the call to this masterpiece. So you write a similar code in Listing 1:

Listing 1. A very simple bean called client

1 InitialContext ic = new InitialContext ();

2 Object or = ic.lookup (”ejb / HelloWorldHome”);

3 if (or! = Null) (

4 / / Narrow the return object to the Home class type

5 HelloWorldHome home =

6 (HelloWorldHome) PortableRemoteObject.narrow (or,

7 HelloWorldHome.class);

8 / / Create an EJB object instance using the home interface.

9 HelloWorld hw = home.create ();

10 / / Invoke the method

11 System.out.Println (hw.hello ());

12)

13

Run the command line client, use the most convenient one hand Java installation - the application server style = “COLOR: # 000000″ href = “http://server.it168.com/” target = _blank> ; the one used by the server. Everything is perfect! With the joy of success, you are transferred to the second computer to run your client. This time, you get a terrible error message. First, you may get java.lang.NoClassDefFoundError: javax / ejb / EJBObject, then a bunch of other NoClassDefFoundError s, because you forgot to submit a tie with the necessary stub and the JAR file, and does not provide or take into account other various EJB-related content. Ultimately, your client is running to the first line of interesting code (InitialContext ic = new InitialContext ();). Arrival in this row are the exception - you will almost certainly be an exception - will be chosen based on your specific context provider vary.

Interpretation of these terms

Before we continue down the definition of several terms would be helpful. Use of the computing world are some strange terminology, vocabulary and trendy acronym, Java technology is no exception (perhaps this should be JavaIsNoException?). If you are experiencing problems mentioned above, this term which may make you feel some loss. So let us discuss in this article will encounter the term to try to understand their meaning is a good idea.

Name space, context, context of the initial context and sub-location of these terms are related - from the perspective of the client when the EJB component where the conceptual position. A name space to imagine a town, cities and towns in the store by the EJB home interface (we will discuss it later) said. Context is a town in one location. When you start the initial context is the location - as it is the way to the town. The sub-context is the street name.

home interfaces (home interface) and remote interface (remote interface) Enterprise JavaBean component has three parts. First is the bean code itself. Then the home interface, which defines the EJB bean to create your own way. home interface is released in the name space. When you have a home interface, you can call the Create () to get remote interface from the application server. Access the remote interface, you can call the actual EJB code form methods.

How these terms apply to your town simulation go? Get the correct town and find the correct address, you'll need into the shop or ring the bell (called Create ()). This process is for you to go all the shops are the same, but the response you receive depends on who is providing services - such as a butcher, a baker or a candlestick maker. This response represents the remote interface. Everyone is different and may require him to provide something different. You must know the person you talk to (the bean) of the career to ask the right questions (ie, call the correct method) - to a butcher to a loaf of bread from time to properly.

CosNaming, LDAP and JNDI Java Naming and Directory Interface (Java Naming and Directory Interface JNDI) provides a standard interface, which indicate how the name of the space you need to interact. We have mentioned is JDNI LDAP and CosNaming namespace type. We now extend the metaphor: JNDI is a template for cities and towns, while the CosNaming, and LDAP is a particular town. They operate in a similar manner, but have different layouts.

Attribute provides a mapping

Let us look at how to use all of these elements in order to successfully call from a remote computer on our way to EJB components. In order to allow customers to connect to your carefully crafted EJB components, need a few things. First of all, it requires the client code for all JAR files, general EJB JAR file, such as J2EE.jar related and when to deploy the generated bean stub and tie. These files allow your client can always reach the initial context.

Next, your client needs information is the value of some properties. First, you will need a few java.naming.factory.initial value. The attribute points to a provision of the initial context factory class. A typical value of the property is com.sun.jndi.cosnaming.CNCtxFactory, that is what we are here a few examples used in value. This class exists in the rt.jar in, so it is a basic part of JVM. Plant is used by the CosNaming name servers, but the JVM also includes an LDAP factory. We will see later, different application servers provide their own initial context factory.

This class together with the name server URL and port number of the detailed information used to generate the name space to interact with the InitialContext class. However, if no provider URL, it will connect to localhost port 900 (or your other context factory default port). To connect to a remote server, you need to have a value attribute java.naming.provider.url.

The new programmers find it hard to understand all of these reasons are: no matter your application server to run anything locally, this stuff usually docile work. This is due to environmental care of everything, when you ask a InitialContext, the environment will give you that you want. But when your customer is transferred to a different computer, to rely on himself. You need to know which JAR file copy, and what settings do. I know that some people make their clients work correctly, the application server all the JAR files are copied to the second computer!

By default, InitialContext factory is defined in jndi.properties, the factory class with the default server URL and port number defaults. This file is in the class path (which generally means in the local directory) or in your class path in any JAR. The application server may be different in different JAR files available to their default values, WebSphere Application Server to store a default in namingclient.jar copy. To specify your own default values, only need to edit the class path in the first copy. This is a way to configure the properties, the absence of the command line or code-driven set, then the client will use jndi.properties values. However, although this may be suitable for simple settings, but if you deal with multiple servers and name space, you may want a customer to configure a client.

These properties are how to use the name of the space we have to use different values for? As mentioned earlier, there are two forms of JNDI name space: CosNaming and LDAP. Each of which is associated with the transmission: are IIOP and LDAP. LDAP name space to use a LDAP transfer (you will use a like ldap: / / myldapnameserver this URL to connect to it), but using a IIOP CosNaming transfer (you will use a like iiop: / / mycosnamingserver this URL to connect to it) . CosNaming default port number is 900, and the default LDAP port number is 389. However, any given namespace server implementations use the default values may be different.

Command line configuration properties

Let us look at how to use command-line configuration properties. If you want to practice it at home, into the JDK installation bin directory. In this folder, you can find a program called tnameserv.exe (for Windows) or just tnameserv (for UNIX-based systems). Through the implementation of this program will start on port 900 a sample CosNmaing name server.

Now just use one can view the CosNaming namespace utility to equip yourself. I use Eclipse as a development environment, I am in the following sections provide references to the JNDI browser plug-in link. In theory, you should be able to be a namespace browser to their computer's port 900 and see the name of a very boring, empty space (although some of the application server by default the content will be filled with a lot of different namespace). In order to enrich our name space, we will now write a simple program to put some content in it, as shown in Listing 2:

Listing 2. A simple cosNaming name of the spatial interaction

1 package example.publisher;

2

3 import javax.naming.InitialContext;

4

5 public class Publish (

6

7 public static void main (String [] args) (

8 / /

9 / / This example creates a subcontext in a namespace

10 / /

11 try (

12 InitialContext ic = new InitialContext ();

13 ic.createSubcontext (”Test”);

14) catch (Exception e) (

15 System.out.println (e);

16 e.printStackTrace ();

17

18)

19)

20)

21

This application will be assumed to have the correct documents needed for the initial up and down all the attributes are available. So now you can run it from the command line and to provide these properties at run time (which URL should be adjusted according to your environment):

1 java-Djava.naming.factory.initial = com.sun.jndi.cosnaming.CNCtxFactory

2-Djava.naming.provider.url = iiop: / / mymachine: 900

3 example.publisher.Publish

4

As usual, our customers will find an example and create a context namespace named Test in the sub-context. You can use the namespace browser to confirm that.

Now try running on a computer named server, using the same command line (of course, made adjustments to the URL again) in another computer running the application in Listing 2. It should be no problem running (you may need to modify this example to change the content of the limit, or even delete the sub-context, rather than create it, so in the second run when you can be sure that it has played a role in a).

In the application configuration properties

So, if you do not want to set these properties on the command line how to do? There is another way. In the program can explicitly declare these attributes. This means that you do not need java command to provide special options. To change the code in Listing 2 to explicitly set the required attributes, it looks the same as the code in Listing 3:

Listing 3. Simple cosNaming name of the spatial interaction, the code in the application set the property

1 package example.publisher;

2

3 import javax.naming.InitialContext;

4

5 public class Publish (

6

7 public static void main (String [] args) (

8 / /

9 / / This example creates a subcontext in a namespace

10 / /

11 try (

12 Properties prop = new Properties ();

13 prop.setProperty (”java.naming.factory.initial”,

14 “com.sun.jndi.cosnaming.CNCtxFactory”);

15 prop.setProperty (”java.naming.provider.url”,

16 “iiop: / / mymachine: 900″);

17 InitialContext ic = new InitialContext (prop);

18 ic.createSubcontext (”Test”);

19) catch (Exception e) (

20 System.out.println (e);

21 e.printStackTrace ();

22

23)

24)

25)

26

Now the program is no longer required a long command line configuration, but keep in mind in this way hard-coded applications written in these settings.

Find the path leading to bean

So far, we have seen a few can prove that we have to connect to a remote name space and complete examples of some tasks, although these tasks are very boring - create a child context. In practice, usually by the tool for you to create and publish all work, you really need to do is to find an object. In this section, we will get in CosNaming namespace HelloWorld bean published in the Home Interface. Then let's look at how the LDAP name space to find its Home Interface.

To illustrate, we assume that you have deployed the HelloWorld bean, its home interface to HelloWorldHome published in the example / HelloWorldHome.

In the previous section, we had a connection to the name server of hard work, now we need only check on the EJB components. This requires us to pass a string to the query method, it is said that from the InitialContext (your starting point in town) to want to go HomeInterface (house or shop) direction. It sounds simple - but here the specific context of your choice would impact the plant. Such as WebSphere Application Server brought the factory class does not always take you into the root namespace. So we need to check the string HomeInterface InitialContext will be based on your location into the town change. And, in the local server, the context factories may be placed with the remote server your different starting position.

For this reason, I recommend that you do not like the hard-coded list of three as used in the query string, but use the command line or property transfer documents. Especially for the architecture of a multi-step should be the case. For example, you may have a component called an EJB client, the bean may then need to call the server may be in different EJB components on a second! In this case, the property should be passed in each step. This experiment was repeated (trial-and-error) query provides a simple mechanism, and only a relatively small change can get the flexibility of the final application. So let's look at an example query application. In Listing 4, the property is set in the program, but it is also based on a command-line value. This command-line and in our previous example using a slightly different, as we see below.

Listing 4. Query interface to a home

1 package example.lookup;

2 import java.util.Properties;

3 import javax.naming.InitialContext;

4 import javax.rmi.PortableRemoteObject;

5

6 import example.HelloWorld;

7 import example.HelloWorldBean;

8 import example.HelloWorldHome;

9 import javax.naming.InitialContext;

10

11 public class Lookup (

12

13 public static void main (String [] args) (

14 / /

15 / / This example looks up the home interface of an EJB to a namespace

16 / /

17 try (

18 Properties prop = new Properties ();

19 prop.setProperty (”java.naming.factory.initial”, args [0]);

20 prop.setProperty (”java.naming.provider.url”, args [1]);

21 InitialContext ic = new InitialContext (prop);

22 Object or = ic.lookup (args [2]);

23 if (or! = Null) (

24 / / Narrow the return object to the Home class type

25 HelloWorldHome home =

26 (HelloWorldHome) PortableRemoteObject.narrow (or,

27 HelloWorldHome.class);

28 / / Create an EJB object instance using the home interface.

29 HelloWorld hw = home.create ();

30 / / Invoke the method

31 System.out.Println (hw.hello ());

32)

33) catch (Exception e) (

34 System.out.println (e);

35 e.printStackTrace ();

36

37)

38)

39)

40

This procedure is called with three arguments: the context to use the factory, provider URL and contains the name of the query string. We already know what the first two, then the third alternative?

If you are still using tnameserv as the name server, then you are likely to be directly posted to the bean / example / HelloWorldHome. In this case, as long as the / example / HelloWorldHome as the third parameter can be a successful query. However, if you use the name server has a more complex name space, then there may be used by a deployment tool to increase the additional layer. For example, WebSphere in default JavaBean deployed ejb /, but this is not the root namespace, and only when using WebSphere context factory, by passing the string / ejb / example / HelloWorldHome will make your space in the name of the in the correct location. If you use a different application server to provide the context factory (for example, a standard Java installed only on computers running the client when required to do so), this problem will worsen. However, the application server's name server queries the document should indicate the name of EJB components will be from the space where to begin. Look at the example document, then view the name of the browser space to determine clients InitialContext will put them somewhere. Namespace tend to cycle, so you can try to follow a branch to the infinite. This means that from the beginning of a home can be found in the context of the road.

In short, the following is the list of passing the appropriate parameters to the application 4 command line:

1 java Lookup com.sun.jndi.cosnaming.CNCtxFactory

2 iiop: / / mymachine: 900 example / HelloWorldHome

3

In CosNaming, the name of the space sub-context by the slash (/) character separation, which is the same as the standard URL. LDAP syntax is different, we will see below.

LDAP Introduction

Now let's add the LDAP. In terms of the content of this article, LDAP is another JNDI name space, but its structure of representation and CosNaming name spaces that are distinctly different. It also requires a different context factory - but this is not a problem, because we will always specify the correct command line in the plant (in our example, we will use the basic JVM is part of the plant, but remember that different applications server may have its own factory). And it needs a pointer to point to different name servers - and, fortunately, we are also specified in the command line it. Of course, that home interface, the location of the string is different, but you guess how? Yes, we specify it in the command line. You can use these command-line call to see the benefits: all have to do is change the call to the way our test procedures, in theory, we can reach any JDNI name server, or even a smooth transfer from the CosNaming LDAP without any code change . Yes, this is only a theory, of course, in any case, the key is to have the correct parameters.

Some name server will protect the part of the name space, which means that can only be released to allow the region. Suppose you have a running LDAP server, its details are as follows:

URL: ldap: / / mymachine: 1389

BaseDN: c = myldap

LDAP name space tree structure in general as follows:

1 ibm-wsnName = MyServer, ibm-wsnName = HelloWorldHome

2

However, when we pass this string to the program, we need to reverse it (do not ask me why). Therefore, we use the string looks like this:

1 ibm-wsnName = HelloWorldHome, ibm-wsnName = MyServer,

2

BaseDN said space in the name of the place you want to start. LDAP name for a given server can be a lot for this position, it depends on how it is constructed. In this example, we go directly to the root c = myldap. But if we want to jump to the name space of a tree, you can specify the ibm-wsnTree = myTree, c = myldap as BaseDN not jump to that point.

In this way, we passed to the program's command line arguments like this:

1 java Lookup com.sun.jndi.ldap.LdapCtxFactory ldap: / / mymachine: 1389 / c = myldap /

2 ibm-wsnName = HelloWorldHome, ibm-wsnName = MyServer

Here we specify an LDAP context factory, and then pass the name of LDAP server, and we want to start position. Then to the EJB component to query the path reversal. We can use this command line call in the CosNaming example using the same piece of code (Listing 4).

Of course, the code used in this article no reason not to constitute a helper class in a way - it with three arguments, and returns the Object or, the object is trying to do anything before the call ic.lookup (args [2]) O'clock returned. Then, when you need to conduct a query, just use this helper class, to pass it for the appropriate parameters at the current situation, you need to retrieve an object reference, and ready to narrow it to the actual class. (Note: I do not guarantee this kind of performance, but rather to provide this is the case the original code, I or IBM makes no guarantee this.) Of course, you can achieve a completely general-purpose reflective way, but it will make things much more complex, but also beyond the scope of this article.

In the end we have one last thing to consider. You can write a combination of 3 and 4 we list the technologies used in the client. It checks whether the command line is given a value; If so, it set these values, if not, it uses hard-coded values. Thus, in the process can have a meaningful default value, but if necessary, can use command-line options override them. Only minor changes to the code.

Security style = “COLOR: # 000000″ href = “http://safe.it168.com/” target = _blank> Security home

As a Review: Here is the EJB query multiple servers and multiple application case, to make any system run and should have or should have known the most important of four things:

At any given stage, the next stage of all stub and tie must be in the class path. Unless the environment to know what this class, otherwise you can not narrow an object to use it.

At each stage and the EJB JAR file related to the general, such as J2EE.jar.

The form of parameters passed to the context of plant type, name server names and JDNI query string.?????????????????br />
???????????????????????JDNI ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

?????????????????????????????????????????????????????????????????????????????????????????????????????????????????? EJB ??????????????? JNDI ?????????????????developerWorks ??? Brett McLaughlin ?????EJB ??????????????????????????????????????br />

????:

MKV to MOV

Report ASP And PHP

Taobao is free of charge commitment charges due to question

On The Centralized Accounting

HP's new CEO took office claiming to be UNWILLING to Hollywood star

Can You Do A Reverse Unlisted Phone Number Search

Only store is not enough

VOB to WMV

YouTube to FLV

Selected Fifth One, Peking University Guanghua New Year's Forum

Source Editors comments

World Rally 3 cheat

Mocha Further Prosecution Of The North Tower “Nine Questions” Cocoon

Who are you looking for a Salesman?

October 18, 2010

The first job interview

Filed under: Uncategorized

The first time that many people face life's inevitable job interview and was distraught.

If the time calm state of mind, pay attention to posture, well-dressed, the interview will come to the fore.

1, cutting desirable, and is simple to set, on the lower body than the two-piece dress with, or more to establish a sense of authority and professional sense, while women should dress mainly lower body, such as wearing long pants, soft material should be selected, cut appropriate suit pants.

Second, suits, suit color to neutral, avoiding exaggeration, dazzling color. Their own “color attribute” as a precondition (that is to wear the color for your skin tone), people see you, energetic, radiant.

Third, avoid sleeveless, backless, miniskirts and other sexy attire. Skirt length should cover at least two-thirds of the thigh.

Fourth, do not wear revealing toe sandals, Yichuan a prime pigment surface Cunbanbaoxie, naturally head high and newly found confidence.

5, the simple elegance of the accessories, do not wear too exaggerated form will bite mouth when the sound of the jewelry.

6, conservative and elegant makeup, do not makeup, cosmetics should not be not applied. Hair, nails, accessories and other details of the location, should be clean and comfortable, gives a good impression.

7, only with a handbag or briefcase, as far as possible the cosmetics, pens, small things piecemeal collection methodically good. Raised his hand and took it easy to give people the feeling messy impatient.

8, attention to detail, such as the shoe is clean and shiny it is between good taste and bad taste subtle differences.

9, a smile is the first step in self-confidence, but also help you eliminate stress. Can not be bitter with a face, can not give the best impression, to secure jobs.

Recommended links:

VOB to SWF

Fireworks MX 2-1 early experience

Trace And Ping Tools Directory

STORAGE Inventory And Barcoding

Listed Six Prominent Force In The Award-winning Character Aisino A6

DB2 pureXML a portfolio of dynamic programming: iBatis + BeanUtils + JiBX

“Aion” 1.2 There are a brush obs of the bug is still alive

Manufacturing integration trend MANUFACTURING and EMS has Approaching

Easy to Use Personal Finance

Sun Chairman: M & A purely rival rumors rumors

QUOT how to fix my slow pc quot repair it

AVI to IPod

Tang Jun: To learn to create OPPORTUNITIES

Red Alert: Watch your ADSL password cat

YouTube to WMV

Comments Terminal And Telnet Clients

Photoshop retouching images (e) remove color cast

October 11, 2010

Taboo boss (below)

Filed under: Uncategorized

Although the right to a great boss, nor Lvyi act, but must first figure out what they should do, what to do taboo

Create antagonism

Some channels boss, believes a strange theory of management. They think: opposition factions within the company there, is conducive to his own mediator, this way, the opposition parties will rely on him to win the dominant position within the company, so he came to control the situation more conducive.

“No faction within the party, strange,” he says, there factional differences within the company, this is also not surprising.

However, if the boss, “incited the masses to struggle,” artificially create the internal opposition, it is unworthy. Such action, although the help owners improve the individual's authority, but the cost is: a lot of company resources will be wasted on “friction” on, just not worth it.

Another reason for opposition of faction, is thought by some employers employment. The blind boss to learn Western business practices cloning, the introduction of other people's “two-party system, cabinet system” to encourage the various factions within the company in turn form a cabinet, turns up the stage.

As everyone knows, “??????????? and “new monarchs toward”, in order to ensure the “New Deal” running smoothly, it is bound to be placed his trusted loyalists.

This time, the boss will be in a dilemma, if withholds the right personnel and how to show support for the new leadership, how to show their “Do Not Suspect?” However, when decentralization continues, often between rival factions would lead to personnel strife, and made both incompatible and ultimately fight was a lose-lose, and made the company debilitating.

Since the creation of internal opposition so harmful, how can this be prevented?

High-pressure policy, is clearly not a wise move, the “precious” and is the root of the problem.

How “and”?

The best way is to train up a new third-party power (or even more power), so that these new forces to act as mediator to resolve disputes.

However, these are just ways to remedy the fault, if we really want to solve this problem, they must follow the following principles: the various factions within the company can restrict each other, but never against each other.

Persecuted hero

The biggest taboo in boss damage, than persecuted hero.

Some bosses have a habit of people whenever men grow to a certain degree of time, we must strive to take the crowd out others.

Some employers, employers are courteous when, and once heroic name on, they began “burning bridges.”

Why boss will “burning bridges”?

Reasons include the following: First, the main contributor to power high-shock and told the boss uneasy; second hero there own character weaknesses, so that the boss was intolerable; Third, some hero to be “packet out, day high and the emperor far away” so the boss was difficult to control.

Of course, there are more dark psychological boss. From the outset, they prepare secret: to a certain time, put the old people go to recruit a number of cheap new company, to save staff salary costs.

However, the persecuted hero of the consequences are serious.

First, the persecution of other cadres chilling meritorious will ask, have sought to protect themselves or even to prepare the brain drain;

Second, the persecution of heroic people would call a real deterrent, not coming to work; the villain is take the opportunity to stir up trouble and fish in troubled waters;

Third, the persecuted hero will increase the owner's suspicion, which is increasingly suspicious, and made the company feel insecure, and even deserted.

Therefore, the boss and hero, they should have the “broader picture” of psychology, we give way to each other step, road wider, we have the opportunity to develop.

Wronged good

The last taboo boss is a good man wronged.

As the saying goes: “a good man not good reporting.” Why? Because good people often match for bad guys.

Why good match for bad guys?

This is because the good people of the brains used in the “General child” on; bad brains used in the “whole person” on. Ability to locate different professionals, have applauded the people how to fight bad guys off?!

Good not good report, of course, there are leaders fault not tell right from wrong; the other side, many of the “good guys” in the “personnel” was too rigid, too “Jieruchou” too idealistic, often leading to their passive reason.

So, let the good rewarded. On the one hand, they must constantly modify on the “good guys, bad guys” standard, personal likes and dislikes do not start to really selecting empowerment. Meanwhile, the “good guys” must have “good” self-cultivation, not demanding perfection of others, to be tolerant, to understand patience, know how to retreat, the leadership and colleagues to win the trust and respect. (Liang Bingru)

Prevent internal opposition, using high-handed policy, is clearly not a wise move, the “precious” and is the root of the problem.

????:

THUNDER told Sohu, “Anti-Piracy Alliance,” the defendant is facing embarrassment

Chinese CN domain names dropped 110 000

First Financial Weekly: direct supply in The Shadow of Digital China

Helpdesk And Remote PC Guide

Shop Dictionaries Education

DAT To MPEG

CMM assessment in China Suggestions

Big Rabbit - Yuan Colombia

incredible way to watch movies using watch mp4

Struts Framework In The Session Object To Create And Control

“Unbeatable Team” Five Steps

Bitmap Image Synthesis Model And Channel Together

ASF to AVI

Catalogs Newsgroup Clients

Storage Search Or Lookup Tools

3G2 to AVI

In-depth programming: Control panel Know (Part One)

September 24, 2010

FLASH5 “flash”-type technology 18 (4)

Filed under: Uncategorized

4 Type: Long Time by six - shared component library (Library)

FLASH once to see a friend in the production of animation, because the source file to use another symbol FLASH, FLASH put the two source files are open, press the Ctr + L at the same time open their own component library (Library) window, and then the mouse in two a window, drag the symbol element before! In fact, this is not the right approach. As long as we open the menu File-Open as Library, you can easily use one of the symbols. Such a simple and practical problems, actually a lot of people do not know! Deeper, you can also choose File-Open as shared library command to direct calls to the Internet Fla file symbol library, and the Library of the elements in the client-side browsing only need to download once, all the items used in the Library Movie elements where the client will automatically call these elements do not need to download again, you can save users a lot of download time. This team is particularly useful when co-development. This is FLASH5 “shared element library” charm.

Recommended links:

FTP Site Preferences

MPEG To 3GPP

Facebook's growing pains

Novell And Red Hat Open Source Giants Collision

Recommend Install And Setup

Remodeling “value stream”

DivX To IPhone

System MAINTENANCE comments

Happy Dragon Boat Challenge embroidered non-mainstream “brown” to MOBILIZE

“Do not call me”

STUDENTS face cold winter Employment

Northern Rock's instant messaging

AVI to FLV

Png Files

Simple Trace And Ping Tools

Huawei said the employee to resign completely from the willingness to improve the competitiveness of

September 14, 2010

Initiate an instance of DB2 table space to explain

Filed under: Uncategorized

Table space is stored in the database and the database logic layer between the tables. Table space created in the database, table space created in the table.

Use the table space is a clear advantage to a reasonable distribution of the data stored in different disk or stored in different locations on the disk to help improve data access efficiency.

DB2 table space by way of management is divided into two types: system management space (System Management Space, SMS) and database management space (Database Management Space, DMS).

Divided by type: rules table space, a large object table space, system temporary table space, the user temporary table space.

Rules contained in user data table space table. The default user table space named USERSPACE1, the index is also stored in the rule table space, additional system catalog table is also on the rules table space. Default system catalog table space named SYSCATSPACE.

Temporary table space is divided into system temporary table space and user temporary table space.

System temporary table space used to store various data manipulation (sorting, re-table, create index, connection tables) in the internal temporary data required, although you can create any number of system temporary table space, but recommends that users only use most of the table used to create a page size, the default system temporary table space named TEMPSPACE1.

User temporary table space used to store the global temporary table shows (note the global temporary table has been stored in the application temporary data). User temporary table space is not created by default when the database was created.

SMS is the operating system for each container file space in a directory; DMS each container is a fixed, pre-allocated file, or a physical device.

SMS management is relatively simple, automated management by the operating system, the size of space changes with the amount of data automatically adjusted.

DMS is managed by the database, the space created when the OK, space is not enough time to manually add or delete some data to free space.

In most cases, DMS performance better than SMS.

Using the command line to create a simple SMS table space syntax:

CREATE TABLESPACE; MANAGED BY SYSTEM USING ('';'')

Example One: In Windows, create a SMS table space:
CREATE TABLESPACE RESOURCE MANAGED BY SYSTEM USING (''d: acc_tbsp'','' e: acc_tbsp'','' f: acc_tbsp'')
Complete results of the D, E, F three disk name acc_tbsp create three folders, each folder has a name SQLTAG.NAM the following file.

Example Two: Remove case of an SMS table space is created:
DROP TABLESPACE RESOURCE
End run this command, the corresponding table space will be removed from the DB2 registry, but the three folders on the disk still needs to manually remove.

Using the command line to create DMS table space, a simple syntax:
CREATE TABLESPACE; MANAGED BY DATABASE USING (FILE'';'' or CREATE TABLESPACE; MANAGED BY DATABASE USING (DEVICE'';''

Example Three: In Windows, to create a DMS table space, using their two 5,000-page file container:
CREATE TABLESPACE RESOURCE MANAGED BY DATABASE USING (FILE''d: db2dataacc_tbsp''5000, FILE''e: db2dataacc_tbsp''5000)
Operation results are as follows: in D, E db2data disk folder The following creates a file named acc_tbsp, large and small, to 20000K (default page size is 4K).

Example Four: In the case of three to create the table space to add a container:
ALTER TABLESPACE RESOURCE ADD (FILE''f: db2dataacc_tbsp''5000)
Results of the operation in the RESOURCE table space consists of three containers (files): d: db2dataacc_tbsp, e: db2dataacc_tbsp, f: db2dataacc_tbsp.

Example Five: The RESIZE clause to change the case of three to create the table space container size:
ALTER TABLESPACE RESOURCE RESIZE (file''d: db2dataacc_tbsp''8000, file''e: db2dataacc_tbsp''8000, file f: db2dataacc_tbsp''8000) for each container (file) size into 8000. The bigger the capacity of the container will not be wrong, but if the container has been filled with data, then reduce the capacity of the container will cause an error.

Cases 6: The case of 3 EXTEND clause to change the table space to create the size of the container:
ALTER TABLESPACE RESOURCE EXTEND (file''d: db2dataacc_tbsp''1000, file''e: db2dataacc_tbsp''1000, file''f: db2dataacc_tbsp''1000)
Operating results of the order based on the original capacity, each container to increase 1000.

Cases 7: Delete the case of three created in DMS table space:
DROP TABLESPACE RESOURCE
The result of running in the DB2 registry to remove the RESOURCE table space, while the disk to the corresponding folders and files are automatically deleted together.

Eight cases: in UNIX to create a DMS table space, use of each of the three logical volumes 10000:
CREATE TABLESPACE RESOURCE MANAGED BY DATABASE USING (DEVICE''/ dev/rdblv6''10000, DEVICE''/ dev/rdblv7''10000, DEVICE''/ dev/rdblv8''10000)

The above mentioned statement UNIX device must already exist, and the instance owner and SYSADM group must be able to write them.
Comparison of SMS and DMS
Characteristics of SMS DMS
Table space can be dynamically increased the number of containers you N Y be able to index data stored in the table in different table spaces you N Y be able to store large object data to a different table space table, you N Y table can be distributed to multiple storage a table space, you N Y only need to allocate space when you Y N table space can be placed on different disks you Y N created, you can change the block size N N

Cases 9: Creating a system temporary table space:
CREATE SYSTEM TEMPORARY TABLESPACE tmp_tbsp MANAGED BY SYSTEM USING ('d: tmp_tbsp', 'e: tmp_tbsp')
System temporary table can only be stored in the system temporary table space, so the database must always have at least one system temporary table space.

Case of 10: create a user temporary table space:
CREATE USER TEMPORARY TABLESPACE usr_tbsp MANAGED BY DATABASE USING (FILE 'd: db2datauser_tbsp' 5000, FILE 'e: db2datauser_tbsp' 5000)
User temporary table space to store the description of the temporary table (DECLARE GLOBAL TEMPORARY TABLE statement using the definition)

Case of 11: Using RENAME statement to rename table space:
RENAME TABLESPACE RESOURCE TO RES1
With the statement to rename table space, will automatically change all references to the table space, catalog records, so no need to care about the table space in the individual objects.

Case of 12: In the RESOURCE table space to create a table named T1:
CREATE TABLE T1 (ABC INT) IN RESOURCE

Recommended links:

Matroska Format

Mov To Mpeg Converter

3gp To Avi Converter

.mov converter

August 3, 2010

Common operation of FreeBSD 5.2

Filed under: Uncategorized

1. Chinese locale
FreeBSD 5.2 currently supported by the Simplified Chinese locale has the following:
zh_CN.GB18030
zh_CN.GBK
zh_CN.EUC
zh_CN.eucCN
As zh_CN.EUC is not a formal Chinese locale, FreeBSD 5.2 Release of XFree86 removed the support of zh_CN.EUC only support zh_CN.eucCN, for zh_CN.GBK and zh_CN.GB18030 in most Chinese ports that have not yet appropriate support. Is still zh_CN.eucCN (using GB2312 encoding) locale is most formal, but also the most mature.
The Chinese locale set methods (bash, can be used chsh to change, fcitx input method):

Code:

# File / etc / profile
export LANG = “zh_CN.eucCN”
export LC_CTYPE = “zh_CN.eucCN”
export XMODIFIERS =''@ im = fcitx''

Zh_CN.eucCN by the zh_CN.EUC to trigger the ports of some new problems. If fcitx to start, but the control panel can not display Chinese characters. The solution is to open / usr / ports / chinese / fcitx / Makefile, change all the strings zh_CN.EUC zh_CN.eucCN can.

Of course, you can still set zh_CN.EUC, but you need to ln a zh_CN.EUC the locale:

Code:
cd / usr / share / locale & & ln-s zh_CN.eucCN zh_CN.EUC

2.X under the best terminal gnome-terminal
If you use bash, and like the Linux prompt is displayed, you can / etc / profile add the following:
Code:
if [”$ BASH”]; then
PS1 =''u @ h: w $''
else
if [”` id-u `”-eq 0]; then
PS1 =''#''
else
PS1 =''$''
fi
fi

If your gnome-terminal does not make any settings, / etc / profile will not play any role. Can be set as follows:
Code:
Start gnome2 (startx / usr/X11R6/bin/gnome-session) and start the gnome-terminal, open the menu and click on: Edit -> current profile (U )…, open the “Title and Command” option card, select the “run shell command” can be after the close.

3.mozilla other browser plug-ins (Flash, acrobat):
First, install linuxpluginwrapper the port:

Code:
cd / usr / ports / www / linuxpluginwrapper & & make all install clean

And then in / etc under the accession libmap.conf which reads as follows:
Code:
# / Etc / libmap.conf for FreeBSD 5.x
# $ Id: libmap.conf-FreeBSD5.x, v 1.1 2003/11/09 07:39:33 nork Exp $

# Flash6 with Opera is not avilable.

# Flash6 with Konqueror (temporary setting)
[/ Opt / mozilla / plugins / libflashplayer.so]
libpthread.so.0 liblthread.so.3
libdl.so.2 pluginwrapper/flash6.so
libz.so.1 libz.so.2
libstdc + +-libc6.2-2.so.3 liblstdc + +. so.4
libm.so.6 libm.so.2
libc.so.6 pluginwrapper/flash6.so

# Flash6 with Mozilla / Firebird / Galeon / Epiphany
[/ Usr/local/lib/linux-flashplugin6/libflashplayer.so]
libpthread.so.0 liblthread.so.3
libdl.so.2 pluginwrapper/flash6.so
libz.so.1 libz.so.2
libstdc + +-libc6.2-2.so.3 liblstdc + +. so.4
libm.so.6 libm.so.2
libc.so.6 pluginwrapper/flash6.so

# Acrobat with Opera
# [/ Usr/X11R6/lib/browser_plugins/nppdf.so]
# Libc.so.6 pluginwrapper / acrobat.so

# Acrobat with Konqueror (temporary setting)
# [/ Opt / mozilla / plugins / nppdf.so]
# Libc.so.6 pluginwrapper / acrobat.so

# Acrobat with Mozilla / Firebird / Galeon / Epiphany
# [/ Usr/local/Acrobat5/Browsers/intellinux/nppdf.so]
# Libc.so.6 pluginwrapper / acrobat.so

4.fat32, ntfs, cd9660 partition the problem of Chinese file name.
Chinese before the directory has gbfs port support, now can be realized without installing gbfs fat32 partition display Chinese file name. Is in the implementation of load-L zh_CN.eucCN mount_msDosfs parameters, such as:

Code:
mount_msdosfs-L zh_CN.eucCN / dev/ad0s1 / mnt / disk

Cd9660 for ntfs and format, then use the other parameters-C gbk, such as:
Code:
mount_cd9660-C gbk / dev/acd0 / cdrom

Code:
mount_ntfs-C gbk / dev/ad0s1 / mnt / win

5.gnome2 Chinese garbled in xmms and gimp problem.
Both procedures are based on older gtk +1.2, the problem can be garbled in the user directory set up. Gtkrc.mine file:
Code:
cat / usr/X11R6/share/themes/Default/gtk/gtkrc.zh_CN> $ HOME / .gtkrc.mine

Of course, you need according to your practical situation. Gtkrc.mine content, specific ways to refer to a number of posts in this forum.

6.nvidia official driver problems.
Driver Download: http://image.21tx.com/files/20050416/12254.gz
I configured the XFree86 nv driver that comes with (preferably xf86cfg). But after installed the nvidia driver can not start X, by constantly trying to only remove / etc/X11/XF86Config in
ChipSet
This line to start.

Recommended links:

Depth: “Anti” monopoly prove safety

Intellectual property rights is not instead of themselves

Haier to Beijing and then become suddenly troubled PC Business

Discuz! 7.0 mature and stable inheritance is more Effective and user-friendly re-

Giant Imperial Shi Yuzhu set foot on “the journey”

New Seasonal - Screen Savers

converting .mov to .wmv

RISK leaving the confused

Photoshop pumping effect of the new line of thinking

3gp to mp4 converter

Ipod touch video format

Blue Wave eras invited to attend the China Shipbuilding Heavy Industry “transfer mode” Expert Group

Backup And Restore Expert

Video Converter Mp4 To Mpeg

July 27, 2010

Jinshan listing delayed two days by the profitability of the Hong Kong question diverted

Filed under: Uncategorized

5, Jinshan companies listed in Hong Kong Lehman made it clear that the sponsor company Kingsoft time officially listed as Oct. 9, more than two days before the news about the delay. What is the rumor is wrong, or is there a hidden reason does not seem important now, after all, prepared in 1998 listed from Jinshan has to wait the two days do not care.

??????????????????????????????15.6???????????????????????????????????????????????????????????This is undoubtedly in the market prior to pouring a bucket of cold water to the Peak.

But the view from the current situation of relative profitability of Jinshan is considerable. Lehman said in the report, Jinshan current main business of online games for 68% of its total income, the monthly value of 16.21 yuan per capita consumption of the player. Lehman is expected, as new product launches online game players per month per capita consumption values is expected to rise to 23.19 yuan. Both Lehman and even forecast key Kingsoft online games will reach 187 million profit.

Internet analyst Qin Chuan told reporters: “Hong Kong stocks listed companies require new 3-year total net profit to more than 50 million Hong Kong dollars, while the Nasdaq asked the two years prior to fiscal year net income of 3 400 thousand U.S. dollars. It would appear profitable for Hong Kong main board requirements actually higher than the Nasdaq. Jinshan listed in Hong Kong so for more protection for investors. “Qinchuan guess the main board of Hong Kong Peak switch current Hong Kong stocks is not value any one online game stocks. “This financing is the largest in Hong Kong Jinshan good news.”

Jinshan into the market since before the quiet period, has been unable to clarify or explain any matter outside. Therefore, a high-profile Jinshan announced an alliance yesterday TOM Online, Thunder, odd tiger, four types of multi-play network portal, before pushing the final of a network game market, “Spring and Autumn Q Biography” of the move becomes meaningful. “Gold Peak may be expected to take action

????:

No drag and drop the title of the window

mp4 to 3gp CONVERTER

DEVELOPMENT Shop

China will in the end of this year OR early next year 3G license issuance

Deep antivirus Guide (3)

m2ts to VOB

free download Converter mp4 to 3gp

Chinese input method commonly used fast switching

how To convert mp3 to aac

Pocket Baidu claims 10 million downloads have been pushed Android version has expired

New Cataloging

Jie Mi Foxconn Employees Jumped The Truth

CSS Color And Background Properties

July 18, 2010

Must have the heart by the five interview

Filed under: Uncategorized

Generally the job interview, as if Chouxi Fu Kun will face the same future in-laws have a kind of unsettling psychological, fledgling, so those who just entered the community, even those pretentious, were also contaminated in the workplace, no exceptions. The reason is simply caused by the uneven footing. One condescending, 1000 pick and chose; side gingerly, lest errors can not end hand jobs, job seekers have not actually fight the first bend in people, confidence, or responsive only those who can poise.

First, the interview is a continuation of your resume information

Wang is a fresh graduate, majoring in mechanical design, talents exchange meeting in the crowded Chuyishenhan later, he was also voted not remember what the company several resumes, so when the A phone call company after his interview, whether is the impression of the company or the company a position in his mind no idea. Adaptable to the mentality of helplessness holding interviews.

A company vice president to face, sales director of “What do you understand the concept sale?” And “If you as an Area Manager, should be how to plan your work” and so on, as the hearts of unprepared, had the unpleasant task of talking, some, from A Company expression on the interviewer know that Wang has been obvious this interview was smashed.

Back to the shelter, Wang reflect on their own for the interview process, find all errors is something that elaborate resume, because now many universities have learned, students are also enrolled in a targeted manner into the workplace of some future Some essential knowledge, such as computer knowledge, marketing, logistics, business management, etc., so most of the resume to demonstrate mastery of knowledge and application levels, including appropriate social practice. The employers also believe that students master a wide range of knowledge, plasticity, so after the receipt of your resume vacancies according to their company needs to arrange an interview. In fact Wang candidates preferred position is the company's mechanics, followed by program administrators, but that is because the resume exhaustive, there are no outstanding their career choice that led to the company, and Wang A mutual embarrassment in the interview process.

Understand the problem, the Wang and down in his resume full work, and each of their chosen career to be made a highlight in the resume, although a resume from a fixed into two, but the success rate significantly up, soon found his work satisfactory.

Second, a strong self-confidence is necessary to guarantee the success of the interview

Generally receive interview notification who is employing the company have been through the initial screening results, were generally selected for a 10. Therefore, the candidates themselves have access to post strong self-confidence, to interview officers left a good impression is essential.

I have three to choose a candidate among college students engaged in the work of accountants, three college students rather academic, professional same. First two interviews, job seekers gingerly, because psychological stress, the answer to my question only a few words and the words do not convey, though I also understand that they are caused by tension because the mentality, but the verbal expression of the block shows they are also the interview or at least on this post lacks self-confidence.

I finally chose the last expression of decency, courage to look me in my eyes talking about the job seekers look.

Graduates under the same conditions, with no work experience as a reference under the premise of your self-confidence and a strong desire to have this position is perhaps one of you out trump competitors.

Third, how to answer interview questions

Unless it is one to one interview, the interviewer questions to be completed by a good problem, relaxation of mind and out of each other does not matter, then ask away, the majority of interview questions with profound meaning (in particular, interviewing more than one person), so Job seekers should be in the spirit of the interview concentrated on all the issues raised should think twice before they answer.

In addition to professional interview subject, the general will be asked questions are the following:

One: Please resume your work Readme

This is the interviewer your resume with suspicion, or that have exaggerated your resume is suspected at this time if you skillfully major part of his resume oral again, and will be known in describing his own job candidates linked to the situation in their own right to play one or two, can receive good results.

One had a similar job on the interview questions were answered: “I have a resume, ah, has written a very learned.” One can imagine the results of her interview will be.

Two: What are your hobbies?

This is about character and attitude of the subject job seekers, in general, for the type of jobs in sales personnel required to perform a positive attitude, cheerful, sociable, and Wen Zhilei jobs requires steady and extensive knowledge, and so on.

We can not say he did not hobby, of course, can not say that some obvious vulgar, people feel bad hobby. In contrast, his hobby is much more can be said, there are three, four or more, such as reading, Internet, sports, tourism, etc., to show their healthy state of mind.

Three: What do you think your weaknesses

This problem seems not easily answered, in fact, it is the best answer.

Many job seekers in the face of this issue is always Qiqiaiyi, fearing ill answer affected their image in the minds of the interviewer, do not you know you are more secretive, more likely to give a bad impression. Just to your weaknesses and your distinguished position you are applying, and where possible work-related blurted out some shortcomings, some of them even work in a small area, such as personality defects can also be acknowledged, and to express its sincere and must be it shows that he recognizes the existence and shortcomings will be corrected.

Can not say that he did not avoid the shortcomings of people eat grain notes, practice makes no too? Of course, can not zoom in or out of work applicants seriously affected by the shortcomings of the interview unless you will be treated as a joke.

Four: Why did you leave the old company?

It is almost a very privacy issues, but job seekers have had to answer. Because the original group away from a re looking for a new owner, said that each applicant has not carried the blood and tears, at least Heart With Million Knots. The interviewer raised the issue mentality simply as follows: First, to see whether job seekers quit for personal interests, fearing job seekers to the company the same. Second is to investigate the situation of the applicant's professional ethics, the most important is to know whether you are the original company, dismissal (of course due to personal error).

Answering this question, the need to optimize the search for some objective reasons, such as corporate relocation, Zi Ji Xu had the Gong Zuohen competent for further development and the like, for ??? frank in interviews, or even to tell is to obtain higher salaries and so on. Affecting the individual or company's image and personality factors of the original negative topic is not an ulterior motive.

For some interviewers in-depth probing of the original aspects of the company's trade secrets should be politely change the subject to his professional ethics side fully rendered.

Five: you are what your salary requirements?

This is probably the most difficult question to answer every one job, usually job-seekers for the new company structure of salaries and wages do not quite understand. I am afraid to mention the high intimidated by the interviewer, is to live up to its own low value. The idea is to answer this question: 1, subject to the new company the appropriate salary requirements; 2, according to the industry's average wage levels in the area, combine their own original of the salary situation, propose a lower limit, ie XXX yuan and stressed believe that the new company to be paid according to their ability to pay accordingly.

The interviewer repeatedly referred to the general topic of salary, interview success rate is almost certain. At this point raised by the other party can not rigidly adhere to the wage standards, unless there is a better chance waiting for you, or difference in expectations with their first premise is not promised.

A real example: certain candidates to the post of director of a company interview, the company out of the job of salary is less than one half of the original proceeds, but he learned from all channels, company size and efficiency are very satisfactory results for posts less than two months after his treatment enjoyed by far exceeded his original expectations.

Six, if you are hired, how will you work?

If the applicant for the position you lack sufficient understanding, best not to directly tell their own specific methods of work, even with the same original work, must first understand the answer, such as first-hand information, to listen to the views of colleagues and in accordance with the arrangements for corporate leaders, to find out where the problem is and come up with possible solutions and so on. … …

Some interviewers interview questions it impossible to defend, strange. It is not possible prepared in advance of a foolproof excuse to deal with, thanks to the applicant's spot to play and the accumulation of experience in all aspects of normal.

While we emphasize job-seekers in the answer the needs of bright ground hide one's inadequacy by keeping quiet, but not completely trick to encourage job seekers to answer all interview questions still to be built on the basis of good faith, even a little rounded, so as not to affect the future of the company work and development as the prerequisite.

Fourth, how to guess the mentality of the interviewee?

Although the mentality of those who speculate on the interview and the interview could not decide success or failure, but its role should not be ignored.

Generally higher than standard in order to save the company time to the composition of the various departments to co-workers face job interviews, but also recruitment of key positions in individual companies through layers of the interview, the final stage of the company's decision-makers often. But no matter what form the interview, there is a major part of officers to decide the fate of this job. The layers of the interview, each interviewer, job seekers need to seriously.

Interviewer attitude can be grasped from the following aspects:

The first question by the interviewer to want to learn to master all aspects of its. Apply as a company manager Luomou post in the interview, the general manager of straightforward management of the department listed some of the existing problems, then ask Luomou how these issues should be handled and resolved. At this point Luomou to understand the general manager of the concern is Luomou management capacity rather than specific transactions. The Luomou own experience briefly talked about his management to address the problem exactly in line with the thinking on the idea of general manager.

Second, according to the interviewer's demeanor to determine the tone. When interviewers ask or answer questions, interviewers should be timely to address. Usually interviewers want to understand the problems of the anxious, conversation tone and demeanor than a topic of concern for the less important. If the person listening to your gaze, you need to answer for a more detailed description; as the other eyes there is only echoing or free, should immediately end this topic briefly, job seekers should not consider themselves more aware of the rhetoric in this regard.

Third, for different interviewers different expression. As a department manager for the interview, he may be more of this is to your specific capabilities, such as the handling of the details at this time need more examples to reflect the description of their ability to work in order to avoid its leave nothing but talk and hands-on impression of poor; while for high-level interviews, in addition to practical work, he may be more concerned about your overall grasp of business and management experience. At this point you need ideas and frameworks from the management put forward their own ideas, and through one or two examples to prove.

Fourth, use of echo-type talk as much as possible to let the interviewer talk too much and only do their own concise answer. Only the other party to say he wants to feel from one of the content presentation and more information to adjust their thinking to match the interviewer.

5, must be psychologically prepared from scratch.

Interview most need to adjust their mentality. Whether you are in the original performance of the company how brilliant, how the job is high. To a new company to participate in an interview that the company should be in the original mode of thinking being left behind. Because even if your resume reflects that you have the advantage, for the interviewer, you are a rookie, made before the results you have only a reference but has not been verified. In addition to job experience over time their performance with appropriate, any blindly exaggerated and taken the trouble of listing all your achievements will only lead to counterproductive results.

Moreover, even if the interviewer may be common human resources staff and your candidate is the post of vice president, and conversation rooms also remember not showing any of dishonor, and her job stream ditch turn the ship list goes on. It causes some interviewers mishandled his mind, forget the moment his is a relatively new challenge and moved into the next round.

????:

“Heroes of the resistance front” Medal and process Raiders

Strategy And War Games Directory

OJOsoft MP4 Converter

ADVERTISING is losing confidence!

mts FORMAT

Professional CDA MP3 ID3 Tag to MP2 Copy

Infomation Timers And Time SYNCH

Operators burn punched 11 million users four drama success

Convert mkv to avi free

Youtube to VHS Products

Convert flv to 3gp

How to convert flv to 3gp

Apex Apple TV Video Converter

July 9, 2010

Youtube FLV to iphone Now

Filed under: Uncategorized

Hot popluar youtube video Converter + download + player tool. With YouTube tool you can also convert downloaded YouTube videos to a format compatible with your favorite portable device; including - iPod Video, iPod Touch, iPod Nano, iPhone, Zune, PSP, as well as video capable MP3 players, video capable mobile phones, and Pocket PC, And finally… YouTube tool’s embedded player will allow you to watch all your favorite YouTube videos off-line. So now you can enjoy any .flv and .swf videos anytime!
Supports customize or create user’s own profile for any new (portable) device. The video conversion supports preview. About Playing Features. Embedded YouTube Video (Offline) Player is available, it supports offline play YouTube video, .flv video and .swf video. Supports "Drag and Drop" video files direct to the main window. Easy to select the source files. Cool UI skin available. - is the most powerful YouTube assistant on the planet.






















Get free blog up and running in minutes with Blogsome
Theme designed by Hadley Wickham