Friday, October 22, 2010

92W? "AION" the chief captain prices hit record highs



92W? "AION" the chief captain prices hit record highs

Real-life value and price of goods is often a considerable gap exists, "not the best, but for the most expensive" is absolutely Shamao act! Very lucky, we "Aion" in all things have to buy equipment The value of things. Of course, if you are often deceptive and sinister business players, then it is another matter! Encountered stall players play less of a tragedy, "0" of the situation is not included, because this is an excellent value for money!

If you ask players, in "Aion," the equipment in the most difficult to "engage"? Achievements equipment? No! Only need to do mission success can be equipped with one day "abuse of street"! Town and falling equipment? not! Town experienced team in the face of any difficulty. Is undoubtedly the most difficult to get equipment into the abyss of Ou Bisi arms and packaged.

Ou Bisi is "Aion" in game currency outside another form of currency. Game players with large coin, often able to rely on a number of monopolistic behavior to increase their wealth, while Ou Bisi And it is not like a snowball as the snowballing, but the more difficult it is to have growing up! Even accidental death , the assassination of enemies will make you lose a lot of Ou Bisi, so it is more precious Ou Bisi!

Since it is a currency, it was consumer! In Oubi Si consumption in this regard, the principle that all players are surprisingly consistent - to only buy the best (most expensive of course)!

Ou Bisi equipment in the most expensive weapons, the "Tower of the eternal people" know. Captains over thousands of weapons the price range up to more than 610,000, the additional need of 62 gold medals. This astronomical figure, give viewers a headache. Headache headache go, however, there are still a small number of players broke through the numerous difficulties and dangers, through various tests, each fighting to server maintenance, experienced a 99 81 is difficult, ultimately God has touched ordinary people visible weapons grade !

As the chief captain series weapons more "universal" and some "God" class players have not had the kind of superiority complex and feel a sense of achievement! Yes, we need to pursue higher!

Now, new pursuit is coming, "Aion," the new version, Jing Xian Ou Bisi worth up to 920,000 elite commanders of thousands of weapons to a grand debut of the series soon!

Let us first take a look through the pictures, "it" in the style it!































From the modeling, the elite series is great, it is only a beautiful appearance created 920,000 Oubi Si's high price? Of course not, the player will not accept higher prices, "an embroidered pillow," the!

See comparison pictures






1. Name of the more elite the word. (Of course, this is not the point!)

2. No change in fundamental attributes. (This also is not the point!)

3. Additional attributes to add a. (Focus)

Judging from the data, crack chief captain series appear to have little improvement, only a simple increase of an additional property. But it is absolutely worthy of an attribute the increase in 300 000 Oubi Si! Approximately 20% attack speed (legal systems of arms for the casting speed) is equivalent to 20% improved power attack. But the price increased by 50%, is also a great regret, but the good things of value can not be simple calculation to calculation.

920 000 Ou Bisi astronomical weapons, I would like to know who is the dress, the first owner!







Recommended links:



How to resolve black screen at startup in emac



Acer suggest possible purchase Packard Bell is actively brewing



Dressing appropriately, moderate conversation interview etiquette all captures



MP4 to WMP



FLV To iPhone



Photoshop Make A Pretty Live With Goldfish



Directory Components And LIBRARIES



Input text input is also on the all-powerful plug



Transport Stream Converter



News About Converters And Optimizers



Like Facebook Wants To Rule The World?



Record 2 room to visit a new generation of IDC



Fireworks 4.0 Zhezhao Daquan



Good Ad Blockers



LINQ subquery And delay the implementation of programming examples



Japanese Rebirth



Wednesday, October 13, 2010

In-depth understanding of abstract class and interface



顥?顥?abstract class and interface is an abstract class for the Java language to support definition of the two mechanisms, precisely because of the existence of two mechanisms, it gives a powerful object-oriented Java ability. between abstract class and interface support for the abstract class definition has a very similar, even interchangeable, so many developers making the definition of an abstract class abstract class and interface for the choice was relatively arbitrary. In fact, between the two still have great differences, even for their choice reflects the understanding of the nature of the problem areas, for the understanding of design intent is correct and reasonable. This paper will be some differences between them analyzed, trying to provide developers with a basis to choose between the two.

顥?顥?understand the abstract class

顥?顥?abstract class and interface in the Java language are used for abstract class (abstract class in this article is not translated from the abstract class from which that is an abstract body, while abstract class for the Java language used to define the abstract class method, the reader is a distinction) is defined, then what is an abstract class, use the abstract class can bring us any good?

顥?顥?In object-oriented concept, we know that all of the objects are described by class, but in turn, is not the case. Not all classes are used to describe the object, if a class does not contain sufficient information to describe a specific object, so the class is an abstract class. Abstract class is often used to characterize the problem areas of our analysis, design, abstract concept derived, is a series of look different, but essentially the same concept of the abstract concrete. For example: If we carry out a graphic editing software, you will find there are problem areas round, triangle such specific concepts, they are different, but they are both belong to the shape of such a concept, the concept of the shape of the field in question is not exist, it is an abstract concept. Because the field of the abstract concept does not correspond to specific concepts, so are used to describe abstract concepts of the abstract class can not be instantiated.

顥?顥?object-oriented field, the abstract class type is mainly used to hide. We can construct a fixed set of abstract description of behavior, but behavior of this group but can have any number of possible concrete implementation. This abstract description is an abstract class, and this group of any number of possible concrete realization of the performance of all possible derived classes. Modules can operate as an abstract body. As the module relies on a fixed abstraction, so it can not allow changes; the same time, derive from this abstraction, but also extend the behavior of functions in this module. Readers familiar with the OCP must know that in order to achieve one of the most object-oriented design core principles OCP (Open-Closed Principle), an abstract class is one of the key.

顥?顥?see from the syntax level, abstract class and interface

顥?顥?In the syntax level, Java language for the abstract class and interface definitions are given different ways to define the following abstract class called Demo example to illustrate this difference.
顥?顥?way of using abstract class abstract class Demo defined as follows:

顥?顥?abstract class Demo (
顥?顥?顥?abstract void method1 ();
顥?顥?顥?abstract void method2 ();
顥?顥?顥?...
顥?顥?

顥?顥?way of using the interface defined Demo abstract class as follows:

顥?顥?interface Demo (
顥?顥?顥?void method1 ();
顥?顥?顥?void method2 ();
顥?顥?顥?...
顥?顥?

顥?顥?In the abstract class in the way, Demo can have their own data members, can also be a member of a non-abstarct method, and in the interface mode of implementation, Demo can only have static data member can not be modified (that is to be static final, but generally not defined in the interface data members), all members of the methods are abstract in. In a sense, interface is a special form of abstract class.

顥?顥?From the programming point of view, abstract class and interface can be used to implement "design by contract" idea. However, the specific use of the above there are some differences.

顥?顥?first, abstract class in the Java language that is a kind of inheritance, a class can only use an inheritance. However, a class but can implement multiple interface. Perhaps this is the Java language, Java designers to consider support for multiple inheritance of a compromise to consider it.

顥?顥?Secondly, in the abstract class definition, we can give the default behavior of methods. But in the interface definition, the method can not have the default behavior, in order to circumvent this restriction, you must use the proxy, but this will add some complexity, sometimes causing serious trouble.

顥?顥?In the abstract class can not define the default behavior There is another more serious problem that may cause maintenance problems. If you later want to change classes because of the interface (usually through the abstract class or interface to that) to adapt to new circumstances (for example, add a new method or methods used to have to add new parameters), they will very much trouble may take a lot of time (for the derived class a lot of cases, particularly). However, if the interface is achieved through the abstract class, so may only need to modify the definition of the abstract class in the default behavior on it.

顥?顥?equally, if not in the abstract class defined in the default behavior, it will lead to the same method to achieve the abstract class in a derived class for each violation of the "one rule, one place" principle, resulting in code duplication, the same not conducive to future maintenance. Therefore, in the abstract class and interface to choose between to be very cautious.

顥?顥?see from the design level, abstract class and interface

顥?顥?above the main syntax and programming from the perspective discusses the difference between abstract class and interface, the difference between these levels is relatively low-level, nonessential. The section from another level: abstract class and interface design reflected, to analyze the difference between the two. The author believes that this level of analysis to understand the essence of both concepts.

顥?顥?As already mentioned, abstarct class in the Java language embodies a succession of relationships, in order to make a reasonable inheritance, the parent class and derived class must exist between the "is a" relationship, that is the parent class and derived class In essence, the concept should be the same (Ref. 銆?銆?in on "is a" relationship of the large size of in-depth discussion, interested readers can refer to). For the interface it is not, does not require interface implementation and interface definition of the concept is essentially the same, only the interface definition of the contract to achieve it. To make discussion easy to understand, following a simple example will be explained.

顥?顥?consider an example, assume that the problems in our area, there is a abstraction on the Door, the Door is open and the implementation of two moves close, then we can define abstract class or interface that the abstract concept of a type of approach were defined as follows:

顥?顥?way to use the definition of abstract class Door:

顥?顥?abstract class Door (
顥?顥?顥?abstract void open ();
顥?顥?顥?abstract void close ();
顥?顥?

顥?顥?use interface as defined Door:

顥?顥?interface Door (
顥?顥?顥?void open ();
顥?顥?顥?void close ();
顥?顥?

顥?顥?Door other specific types can use the abstract class approach extends the definition of the Door, or implements methods to use interface defined Door. Appear to use the abstract class and interface is not a big difference.

顥?顥?If you are asking the Door also has alarm function. How do we design a class structure for the example of it (in this case, primarily to display abstract class and interface design concept is reflected in the difference, other issues have done nothing to simplify or ignore)? The following will set out the possible solutions, and from the design level of these different options for analysis.

顥?顥?Solution 1:

顥?顥?simple increase of the Door in the definition of an alarm method, as follows:

顥?顥?abstract class Door (
顥?顥?顥?abstract void open ();
顥?顥?顥?abstract void close ();
顥?顥?顥?abstract void alarm ();
顥?顥?

顥?顥?or

顥?顥?interface Door (
顥?顥?顥?void open ();
顥?顥?顥?void close ();
顥?顥?顥?void alarm ();
顥?顥?

顥?顥?The AlarmDoor then an alarm definition as follows:

顥?顥?class AlarmDoor extends Door (
顥?顥?顥?void open () (...)
顥?顥?顥?void close () (...)
顥?顥?顥?void alarm () (...)
顥?顥?

顥?顥?or

顥?顥?class AlarmDoor implements Door (
顥?顥?顥?void open () (...)
顥?顥?顥?void close () (...)
顥?顥?顥?void alarm () (...)
顥?顥?

顥?顥?This method violates the object-oriented design of a core principle of ISP (Interface Segregation Priciple), the definition in Door to Door concept inherent in the concept of behavioral approach and the other "alarm" of the mixed method together. So caused a problem that only depends on the Door module concept because of "warning devices" is the concept of change (姣斿: Modify alarm Fangfa of parameters) changed, otherwise still.

顥?顥?Solution 2:

顥?顥?Since the open, close and the alarm are two different concepts, they should be according to the principle of ISP were representatives of the two concepts defined in the abstract class. Defined methods are: the two concepts are defined using the abstract class methods; the two concepts are defined using the interface means; a concept means using the abstract class definition, another definition of the concept of using the interface mode.

顥?顥?Clearly, Java language does not support multiple inheritance, so the two concepts are defined using the abstract class approach is not feasible. Behind the two methods are feasible, but for their choice is reflected in the concept of problem areas for the understanding of the nature, reflect the design intent is correct and reasonable. We are 11 to analyze, explain.

顥?顥?If the two concepts are defined using the interface method, then reflects two problems: 1, we may not have a clear understanding of problem areas, AlarmDoor the concept of nature in the end is the Door or alarm? 2, if we do not understand the problem domain issues, such as: Through the analysis of the problem areas found AlarmDoor conceptual in nature and Door is the same, then we realized when we failed to reveal the correct design intent, because In the definition of these two concepts (both ways using the interface definition) and do not reflect the meaning.

顥?顥?problem areas if we are to understand that: AlarmDoor concept of essence in the Door, while it has an alarm function. How are we to design, implementation to reflect specific we mean? As already mentioned, abstract class in the Java language that a kind of inheritance, and inheritance in nature "is a" relationship. Therefore, the concept for the Door, we should use abstarct class way to define. In addition, AlarmDoor has an alarm, indicating it can complete the definition of the concept of the behavior of police, so police can interface define the concept. As follows:

顥?顥?abstract class Door (
顥?顥?顥?abstract void open ();
顥?顥?顥?abstract void close ();
顥?顥?
顥?顥?interface Alarm (
顥?顥?顥?void alarm ();
顥?顥?
顥?顥?class AlarmDoor extends Door implements Alarm (
顥?顥?顥?void open () (...)
顥?顥?顥?void close () (...)
顥?顥?顥?void alarm () (...)
顥?顥?

顥?顥?This approach can basically be able to clearly reflects our understanding of the problem areas, the right reveals our design intent. In fact, that is the abstract class "is a" relationship, interface that is "like a" relationship, we can, as in the choice of a basis, of course, is based on the understanding of problem areas, such as: If we that the concept is essentially AlarmDoor alarm function also has the Door, then the way would turn the definition.

顥?顥?Conclusion

顥?顥?abstract class and interface is the Java language in the definition of abstract class of two ways, among them a great similarity. However, the choice for them but often reflect problems in the field of concept for the understanding of the nature, reflect the design intent is correct, reasonable, because they showed the different relationships between concepts (although both can achieve demand function). Actually, this is a language of idioms, I hope readers will feel for a friend.







相关链接:



Infomation Clocks And Alarms



XviD to MP4



Renjiao She Coke Man: step by step



Moving to the countryside to the computer through three banks



changing ACTIVE partition may damage ntldr file in



Hot Shell Tools



I pirated your personal fight Daolian Thunder Sohu



Evaluate Games Simulation



Private hospital, why are white Fujian Youyizuozhuang 80 per?



Some tips on data collection



Infomation Gallery And CATALOGING Tools



Harbin Engineering University, the world's five major Classification societies in hand



The BASICS of intrusion detection rules



After the way you do business you're considering?



M2TS to MKV



MKV to Zune



Friday, October 8, 2010

Struts framework in the Session object to create and control



Let me first explain to the session object created in the web development and sessionId generation and returned to the client operating system.

session object when the client first visit, create a new session object. and also generate a sessionId, sessionId in the response will form in response packet back to client browser more memory or a way to rewrite the url returned to the client, to keep the entire conversation, as long as the sever side of the session object is not destroyed, later calling request.getSession () when directly under the client's sessionId to retrieve the generated server-side session object and returns, not again go to New , except in accordance with the sessionId not retrieve session object.

The following is tested in IE, because of a BUG is IE6.0 privacy settings even if IE is to prevent all cookie, they still will be a session cookie to save sessionId. So here are based on the session cookie to discuss

(1) in the server does not shut down, and destroy the object in the session time, when the client again to request the servlet or jsp server side, it will be the first request generated sessionId, and with the information in the request header to the server end send, server-side after receiving sessionId sessionId will go under the search (this process is transparent) server session corresponding to the object and directly back to the session object, this time not to re-establish a new session object.

(2) When the server shut down (prior to the session object generated also disappeared), or the session object after the destruction of time, none of the browser window, and again in the browser window to request the servlet and jsp sever-side when At this point the same will sessionId (server down or destroyed when the session generated sessionId) sent to the server side, server based sessionId find the corresponding session object, but the session object does not exist at this time, at this time will re-generate a new session object, and generate new sessionId and the same will be the new generation of sessionId in response to messages sent to the browser in the form of memory.

(3) When the server does not shut down, and session object in the destruction of time, when the request for a jsp page back to the client, close the browser window, this time his memory sessionId along with it the destruction, to request the re- sever-side of the servlet or jsp, it will re-generate a sessionId to the client browser, and there browse memory.

The above theory is set up to test the servlet, the following talk about the struts framework of the above tests of different places.

Under the first test procedure summary that process:

Client requests index.do--> enter the server side IndexAction ---> Turn login.jsp page -----> request login.do-----> into server-side LoginAction.

First note: IndexAction session object is not to produce, login.jsp set.

(1) Environmental servlet + jsp:

In sevlet + jsp test track, the shift in index.do login.jsp, after entering IndexAction when the browser at this time in memory there is no session cookie, then enter the login.jsp on request login.do LoginAction, the use of request. getCookies () test, its value is null it! result is stable together, because from the beginning had set the final session did not produce it!

(2) Environmental struts + jsp:

In struts + jsp test track, the same as with the above process, began to think the result should be the same, but after debugging and found the result is not thought so. Later in the login.do into LoginActoin with request.getCookies ( ) tests, we found that its value is not null, that he has a name and value, began to not understand, because there is no create-off session object, it would be no session cookie value. But the result, so think of this time here memory devices also should have a session cookie, the problem is here! come from?

Later, after careful consideration, the thought of struts in the characteristics of writing our own struts Action class is the successor of Action, and is the result before the struts ActionServlet the central controller to control the steering, so I think certainly in the process into my own IndexAction written before, struts framework of the code certainly has created a session object and has generated sessionId. So to find relevant books on the workflow and see the ActionServlet calls which class, which really looked after seeing HttpSession session = request. getSession (); this sentence! then answer it is clear which.

We all know that struts the ActionServlet class, receiving our client's request (*. do) after (before a series of initialization will do the work), not directly to deal with our request and calls the corresponding Action (if we write IndexAction), but the processing to the RequestProcessor class, the process method will call the appropriate number of methods to accomplish the request handling and steering operation. a way which attracted my attention, is processLocale () method.

Struts Framework: RequestProcess class processLocale () method of prototype as follows:

Code:

protected void processLocale (HttpServletRequest request,

HttpServletResponse response) (

/ / Are we configured to select the Locale automatically?

if (! moduleConfig.getControllerConfig (). getLocale ()) (

return;

)

/ / Has a Locale already been selected?

HttpSession session = request.getSession ();

if (session.getAttribute (Globals.LOCALE_KEY)! = null) (

return;

)

/ / Use the Locale returned by the servlet container (if any)

Locale locale = request.getLocale ();

if (locale! = null) (

if (log.isDebugEnabled ()) (

log.debug ("Setting user locale '" + locale + "'");

)

session.setAttribute (Globals.LOCALE_KEY, locale);

)

)

Such in the struts-config.xml configuration file in the corresponding configuration items: its default state locale property is true, also would call processLocale method and the first request to create session objects and generate sessionId. but to false after the first request would not reach the ActionServlet calls processLocale method, there could not generate a session object.

The results also come out in the struts application, *. do arrive after the server-side through the ActionServlet, turn to our own IndexAction written before, (the default state ), they have produced a session object and sessionId, which is generated struts framework of the class, even if we write in IndexAction in HttpSession session = request.getSession (); it is RequestProcess class processLocale () method generated At this point the session of the isNew also still true, because it has not returned to the client, which is newly created, then in accordance with the above process, when adopted in the login.jsp login.do into LoginAction, its request.getCookies () of course also has a value! and its value is RequestProcess class processLocale () method produces the generated session object.

If we add in the struts-config.xml when, at this time if another process to track according to the above procedure, and LoginAction with request.getCookies () test, its value is null, of course, write in IndexAction HttpSession session = request.getSession (); when it is time to enter IndexAction newly created, isNew is true. (







Recommended links:



VOB To Zune



Sun rushes to the fore: All FREE



VOB To MPG



Specialist Audio And Multimedia



Thunder mode go from here



ACDSee make the World Cup with a SLIDE



Shop Seasonal - Screen Savers



Why Do We Need SAS?



Identify the black and white ash field, rapid correction of color cast Photos



ASF Converter



how to Remove drm from protected movies and burn



CMMB TD and who needs who more?



How to SHORT-TERM consultants into your team



Tuesday, October 5, 2010

The world through direct sales agents for the controlled



Hainan Business Bureau on July 21 涓婂崍 accepted an interview with China Youth Daily said, "World Link" company was involved in illegal pyramid scheme (newspaper on July 18 has been the subject report) by the Ministry of Public Security and SAIC recognized, Hainan Provincial Industry and Commerce of this alleged illegal conduct to crack down on pyramid schemes.

Trade and Industry Bureau of Hainan Province, according to Fair Trade and Consumer Protection Commissioner Yang Guang introduced investigate the "World Pass" by SAIC, the Ministry unified plan, provincial Public Security Bureau, unified action.

Hainan Provincial Public Security official told reporters that the relevant, current, security system, investigated the "World Pass" unified plan by the Ministry of Public Security, the police investigated mainly in Jiangsu Province.

Yang Guang said, "World Link" companies of national laws against pyramid schemes very thorough study, it registered a branch in some places, but these branches do not develop off the assembly line, just make investment and advertising policy to allow the matter and use it as cover, while the development of offline entirely registered in Hong Kong "world links" between companies and individuals to complete. Therefore, the local business sector is difficult to grasp the evidence that they suspected pyramid selling, only to remind people invest prudently to avoid being taken.

Yang Guang said that once the complaints received and the distributor, the availability of evidence, the business sector, the public security departments will jointly crack down, before the business sector in Hainan Province on the "World Pass" suspected pyramid selling cases were investigated. This year in March, the Bureau of Hainan Province Command Lingao County Public Security Bureau of Industry and Commerce Bureau and take away the "World Pass" dens in Lingao County. The dens located in a temporary village in Kaohsiung County, the investigation process, there are indications that there are only dozens of the village participated in the "World Pass" suspected pyramid schemes.

Yang Guang said the State Administration for Industry and the Ministry of Public Security has identified a "World Pass" and related business activities, contains two elements, first, illegal pyramid schemes, and secondly, it is illegal fund raising. It does have only identified the nature of pyramid schemes, illegal pyramid schemes we say it, the ultimate authority of the department will be qualitative if it is MLM.

According to the relevant departments in Hainan provides a material, government departments have already mastered the "World Pass" in the list of agents across the country, the agents involved in Hainan, Guangxi, Henan, Beijing, Shanghai and other 10 provinces.

The material forming the end of 2008 that: "Shiyong Bing Tong Hong Kong International Technology Co., Ltd. on behalf of the world, all over the country to sell mobile phone software products 'World Pass' in the name of the development of the so-called agents, the development of large numbers of people, has been involved in recent hundreds of thousands, a huge amount of money involved, participants, including urban residents, enterprises and institutions as public servants. a lot of people dream of holding wealth, can not be controlled, unable to extricate themselves, one after another holding 'gamble' mentality, by a loan shark , real estate mortgage financing occupation, etc., to register the identity of companies or individuals contract with the company, many people in or from relatives and friends to pull strings introduced by identifying agents, the development of offline.

Currently, the company filled a rolling cycle of funding gaps, until the new members of Gouka shall not be offset by the return of old members click on the ads section, the vast marketing network will face the danger of collapse, so Gouka who lose everything, is prone to lead criminal cases and group events, to community unrest. "

According to the relevant departments in Hainan Province said, "World Pass" in Hainan, several major agents, have been controlled.







相关链接:



Carried out in the end to P2P: the story about the Jxta (2)



FLV to IPHONE



New Search Or Lookup TOOLS



Gartner: Q4 PC shipments in Asia-Pacific region surged 32.6 percent year on year



All ROADS lead to full high-definition video equipment HD Thunder



E-MAIL to Gmail with Firefox to create the FTP



Art - Screen Savers Report



Win 7 random and changed anti-piracy measures become soft black



QT to WMV



TURN ts into iaudio q5w



Audio Recorders For You



Office Suites And Tools CATALOGS



Chinese Microsoft Access Help BUG



JSP Servlet automatically jump to the wrong instance of the PAGE



SWF To MOV



New changes in PMP Certification exam



Thursday, September 23, 2010

Kaspersky: vigilance good at disguising the "beauty" release device Trojan



Kaspersky Lab has recently intercepted a kind of disguised self-image will be "Beauty" release device Trojan (Trojan-Dropper.Win32.Microjoin.ap). While the Trojan is relatively simple function, but because of its deceptive strength, so we have to remind the user attention. This Trojan will be disguised as a picture file, to induce users to click to run it.

Once the user runs it out of curiosity, will immediately show a beautiful picture. But this is only superficial, the Trojan hidden in the background release weijie.exe file to the system temporary directory and run. Then weijie.exe file will automatically download http://xxxx1.e-168.cn/oyxx123/weijie/1.exe and other malicious code network to a user's computer and run. These malicious program hidden in the user's computer to monitor the user's operation on the time and data, waiting for an opportunity to steal the user's important information, such as online game accounts, passwords and other confidential information to the user or data caused huge economic losses.

Currently, Kaspersky has been able to successfully killing the virus, we recommend that you update the virus database for killing as quickly as possible to avoid unnecessary losses.







Recommended links:



Two Errors in the exchange of links



"Warriors Serpent Z" Property And Injury Xiangjie



Watch cool mechanical picture production process



VOB to WMV



World Rally 3 cheat



Charles Zhang said Sohu Sogou do not intend to use the input method earnings



Shop Investment Tools



Tianjin Ninghe Hotel Selection Maxima



business school new territory Market education



MKV to MOV



YouTube to FLV



Thunder Has More Than 100 Million Users Targeting NASDAQ



Recommend Browsers



Thursday, September 16, 2010

Input why the war continued?



Sogou input method input method in the war, after Google, has another input method with Tencent strength than on the alleged "Search Dog" are sued, "Tencent" unfair competition, the user QQ Pinyin input method to prevent the use of destructive techniques network users to use the "Sogou Pinyin input method" software, while Internet users to input the order of human intervention, so that "Sogou Pinyin input method" sort position is always "QQ Pinyin input method" after ... ...

One who is wrong, best left to the courts to sentence, but the war continued input why do?

The original input for the computer to adapt to the times the product of non-alphabetic writing has always been the people as a non-inflow is a small tool for software, for the Chinese input method is concerned, although the Chinese invented in the input side out hundreds of thousands of species of the type all sorts of input, but also several common types of input method, but can also input method called mainstream ten species, and so far no company that can make the most money by input method.

As people understand the concept of deepening of the network, input method platform features increasingly obvious, application of radiation through the platform, making the status of input from a small tool to be used with the strategic value of a network platform. Through the input of the platform can interact with other applications, reports that: Sohu Sogou input method by successfully making Sohu search market share increased by 1 to 2 percentage points. This shows the role of input, not just enter the text that simple.

Therefore, it is seen that, Tencent said in the input can be the next big original capital to 10 million more than the cost of acquisition of an input group, and on the input high hopes, to build it into inter QQ outside the second network platform, and cross into the horns of the QQ potential, to achieve this strategic objective, taken all the way to quick success Sogou input method launch a fierce attack.

For Sohu it, because they have occupied the position of input boss, of course, always alert to prevent them from catching up may be, for Sohu, in addition to input method other than Google, can bring its impact, it was only Tencent input method, and other potential input method better, also owned by the mob, but was not Sogou input method with the challenges of financial strength, while Sogou Sohu, as the only successful network platform, of course not be lost.

With the people knowledge about the status of input methods, with the large companies involved in input method, I believe the future war in the input field will rises higher, input method will strike it exciting World War II, let us wait and see.







Recommended links:



Compilation of various source - DEV



Hiddink Looking Like The Kind Of CEO



IS Audit and Supervision comparison



Gtalk And Skype Will Interact



Heating B2B: "BROKERS" Biographies



RFID Into The Competition For The Critical Period



PIMS And Calendars reviews



China Unicom next month to adjust the proportion of SP into



Best Animation Tools



swf format



Comment Shell Tools



flash To mpg



Xvid ps3



Convert M4v To Mpg



Wednesday, August 4, 2010

Whether img alt image tags to give property



Are you a img alt image tags to give property

It is easy to overlook the image img tag's alt attribute. However, its importance can not be reflected, it is beneficial to web accessibility and validation reasons. We did not attach importance to, now make up the alt attribute of the.

1, to obtain or set the image is not available or currently being downloaded and the case has not yet completed the replacement of the browser shows the title

2, to help visually impaired users and screen reader users to use the normal website.

When we encounter the problem of encoding, we can:

First, we need to burn the midnight oil

We encountered a problem, not terrible, the most important is the determination to solve the problem. This will be impressed. Master is such mixing on the.

Second, view the source code

What better way to approach you to learn HTML, not the copy of a hero? At first, we are copying and imitating others nice site! Then slowly, you begin to develop their own style / approach.







Recommended links:



Thunder's Humor: The Content Of Our Nearly 100% Genuine



Mov To Avi



Recommend Registry Tools



how To convert .mp4 to .avi



Unicom Announced 3G Policy Of Nine Formal Commercial Debut Basic Package File



Trace And Ping Tools comments



CONSUMER NAS Me and you?



Matroska video



Foxconn jumped reproduction of a female employee jumped 7th Floor



IDS Weaknesses And Limitations (2)



FTP Site Preferences



Picked Recreation



Convert flv to wmv



How to OBTAIN the state of flip



Tuesday, July 27, 2010

Tax Link




Long-range tax: use of "tax through" declaration data directly through the phone line, do not need a computer, the full realization of the remote e-tax, easy tax to facilitate the enterprise to facilitate the individual.

* Tax e-report: use of "tax links", the full realization of statements electronically, you can "tax links" directly edit the required financial statements and other information the tax authorities, then the incoming data to the tax department's computer system, the full realization of remote electronic statements. Simple and convenient.

* Tax tax calculations: use "tax links" can be very convenient to calculate corporate, personal tax liability. Because the "tax links" in the store all the taxes the tax calculation method, you do not know the formula, we can quickly calculate the tax payable, so that taxpayers know what's what.

* Tax laws and regulations: use of "tax links", you can check the latest tax laws and regulations issued by the State.

* Tax Guide: Using the "tax links", can learn the basics of the latest tax and business tax returns of the general procedures. A phone, tax all pass.

Real-time updates: The West Financial Tech website to download the latest applications and the latest tax laws and regulations, ensure timely updates.

* General features: card management, handwriting input, email, infrared communication, English dictionary, luminous lighting, computers online, send a fax, shorthand, games, dozens of functions.

Safety: "tax links" with hardware encryption and password control technology and high security.











Recommended links:



Evaluate Games Simulation



Comments File And Disk Management



Wang Zhuo: LANDesk Chinese "master" (1)



Let Your XP Into A Mac OS X



Huawei Harbour End Of The "son" Are Killing A Man And Shake Hands With Li Ren Zhengfei



.ape FILES



Avi to iphone



avi to Mp4



Easy to change Driving



UTUBE



Easy Outline Introduction to XSLT



China's auto parts face "External AND internal" situation



He Jie Won The Xuhui District, President Of Ice, "KPS Cup Top Ten Youth"



Thursday, July 22, 2010

Asia-Pacific Broadcasting Union General Assembly: the young man is the main consumer groups IPTV


Xinhua Beijing on Nov. 8 (Xinhua Zhouting Yu, Cui fresh) "Young people will be the main users of IPTV." Here at the 43rd Asia-Pacific Broadcasting Union General Assembly, on behalf of South Korea's MBC television station, this point of view as Chinese and foreign participants radio and television sector consensus.

SMG Shanghai Media Group president Li Ruigang 8, said: "China to the audience, interactive, personalized consumer demand year by year, according to data provided by McKinsey and young people in the interactive media consumption time is 5 adults fold. "

IPTV's interactive features that just fit the individual needs of young viewers. Features can provide times IPTV, video on demand, interactive services such as information visit the inquiry, so that viewers watch their favorite content at any time, so that the public TV as "My TV." "Now many people IPTV as TV2.0, it represents the development direction of the next generation of television." Li Ruigang said.

South Korea's MBC television network representative Anze ho said: "In the future competition in the television industry, who can win the audience, who will win the market. Now it seems, IPTV consumer market, mainly through attracting young people to develop."

New European Broadcasting Union Technical Department Director Davidwood Countries in the world of the young workers are dynamic, after personality, and satisfy the demands of the individual needs of the audience the advantages of IPTV is, therefore, IPTV Shoudao young man's favor Yeshi makes sense.

IPTV is an interactive network TV, is based on the broadband channel for the transmission to TV sets, computer terminals, set the Internet, multimedia, communications and other technology, and through the Internet Protocol (IP protocol) to transmit television signals, to home users, including television content, including a variety of interactive digital media services.

So far, China has Shanghai Media Group, China Central Television, the South won three of IPTV Media Group operating license. Shanghai Media Group, which since March 2005 will receive their first license to operate IPTV in Harbin and Shanghai since the development of 10 million users.






Recommended links:



HONGTUSANBAO devaluation PC MALL mode



Easy to master with your line Of sub-chain migration concepts and action



Was brilliant: Ten-man weapon crack revealed inside story of classical



If tomorrow is the last night of IPv4



YOUTUBE Movie to PPC Today



Multimedia Creation TOOLS Shop



Wizard Audio Speech



MSA 1500 How to link up with the EVA 4000?



Convert Avi To Mpeg4



Mp3 To M4a



Top Personal Finance



Soft-Bo at the three prediction



Video converter mp4 to mpeg



MM produced a cartoon picture will blink



VIDEO format for blackberry



Easy Astrology Or Biorhythms Or Mystic



Friday, July 2, 2010

Youtube Movie to DAT Home

It's most popular and very easy to use YouTube tools. helps you Fast download, convert, play, manage your favorite YouTube videos. If you're a YouTube fan, you'll love YouTube tool! is the most powerful YouTube assistant on the planet. YouTube tool easily: 1. Fast downloads YouTube videos, 2. Supports unlimited simultaneous downloads (a real time saver!), 3. Automatically names the downloaded video the same as the YouTube title, 4. Converts YouTube videos to various video formats, including Video, DVD, VCD, AVI, MPG, MPEG, Divx, Xvid, WMV, RM, RMVB, MOV, MP4, 3GP, SWF, DAT, H264, VOB, Flash, PDA, M4V, 3G2, AMV, CDA, DV,QuickTime, ASX, TV, VHS, FLV, H264, BDMV, MAC, Apple TV, Zune, iPod, PDA, PSP, PS2, PS3, Xbox, Xbox 360, Mobile Phone, Cell Phone, Blackberry, Wii, Laptops, Printers, Palm OS, Pocket PC, PPC, Treo, Psion, EPOC, iphone.
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.



Recommand Link:



brief Pager Tools



IS0FTER DVD Ripper Platinum



Comment Converters And Optimizers



Explosion DVD Ripper PLATINUM



Hope Wii Cell Phone Deconde



Youtube to PSP Tools



AlltoDVD DVD To M4V



PDA DVD-Audio Converter



Daniusoft DVD To IPod Converter



Easy Search Or Lookup Tools



Accord CD Ripper Professional



MIDI Converter Studio



Matroska video



E.M. Free DVD Copy



Youtube FLV to PS3 Today



Wednesday, June 16, 2010

Swift VOB Editing

Swift VOB Editing is a powerful and easy-to-use DVD tool, which provides advanced storyboard and timeline editing. Hundreds of effects, including video and text overlay, and chromakey effect, lots of filters and transitions will allow you to create impressive videos, slide-shows and more. Make your home video and save it in format that you need. For your additional convenience we redesigned burning manager in the following way: now DVD, VCD/SVCD and MPEG4 formats are separated from each other to avoid confusion when selecting an appropriate format. Now you can select, adjust or just learn the aspect ratio of your video. The new version provides you with more flexibilty in controlling your video processing. Choose 16:9 (widescreen format) or 4:3 (fullscreen format) aspect ratio according to your liking.An included full-featured Audio Editor, will let you to alter, trim and mix audio tracks for your video project. Moreover you can select and edit necessary audio tracks in AVI and DVD files. Friendly and understandable interface allows you to perform all the operations quick and easily. AVS Video Editor presents a perfect combination of attractive price and high-quality performance.



Recommand Link:



Alive Video Joiner



it posts



Specialist Source Editors



!1 Power ID3 Editor



Happiness RM to DVD QuickTime



AC3 Music To MPC



Professional RM Convert



Lists BENCHMARKING



Youtube to RMVB Top Rated



Guide HOBBY



Acala DVD PSP Ripper



3gpp Converter



Youtube Save + Converter Live



Youtube FLV to VOB Freeware



SuperBurner DVD to Pocket PC



Friday, May 28, 2010

Youtube Movie to Blackberry Suite

It's most popular and very easy to use YouTube tools. helps you Fast download, convert, play, manage your favorite YouTube videos. If you're a YouTube fan, you'll love YouTube tool! is the most powerful YouTube assistant on the planet. YouTube tool easily: 1. Fast downloads YouTube videos, 2. Supports unlimited simultaneous downloads (a real time saver!), 3. Automatically names the downloaded video the same as the YouTube title, 4. Converts YouTube videos to various video formats, including Video, DVD, VCD, AVI, MPG, MPEG, Divx, Xvid, WMV, RM, RMVB, MOV, MP4, 3GP, SWF, DAT, H264, VOB, Flash, PDA, M4V, 3G2, AMV, CDA, DV,QuickTime, ASX, TV, VHS, FLV, H264, BDMV, MAC, Apple TV, Zune, iPod, PDA, PSP, PS2, PS3, Xbox, Xbox 360, Mobile Phone, Cell Phone, Blackberry, Wii, Laptops, Printers, Palm OS, Pocket PC, PPC, Treo, Psion, EPOC, iphone.
Supports YouTube video or any .flv and .swf file as input file. Supports not only YouTube video, but also various video formats as input file, including avi, DivX, XviD, rm, rmvb, MOV, MPEG, WMV. Supports a wide variety of output file format., including avi, DivX, XviD, rm, rmvb, MOV, MPEG, WMV. Provides various profiles, these profiles can meet the needs of most people. - is the most powerful YouTube assistant on the planet.



Recommand Link:



Graphic Editors Introduction



APPLICATION software review



Christmasgift Flash to iPhone



Youtube Video to Zune Now



Aoork DVD2Audio Home



MP3 Splitter JOINER Pro



Youtube to VOB Utility



Apex MPEG Video Converter Home Edition



Youtube FLV to VOB Live



Expert E-Commerce



Happiness SVCD VOB DAT To XviD



Shop Hobby



Digital WMA ID3 to MPC Cloner



Youtube Movie to Treo Home



Virtins Sound Card Oscilloscope



Wednesday, May 26, 2010

Swift VOB to Divx

Swift VOB to Divx is easy and fast DVD VOB to Avi software with powerful and integrative functions. Easy convert VOB files to all popular video and audio formats with easy. It includes features of both VOB Ripper and VOB to Audio Ripper. With it, you can easily rip your VOB Files to all popular video formats such as AVI, MPEG, WMV, DivX, RM, MOV, MP4, 3GP, 3G2, Xvid, ASF, etc., and convert VOB to audio formats including MP3, WAV, WMA, AAC, AC3, M4A, MP2, OGG, etc. It can support many personal multimedia devices such as PSP, iPod, Zune, iPhone, PDA and MP4 player, with the fastest speed.



Recommand Link:



Articles about Automation Tools



YOUTUBE FLV to H264 Pack



AlltoDVD DVD to PS3



Youtube FLV to DVD Gold



SuperBurner MPEG Converter



Nidesoft Zune Video Converter



Ever CDA Sound WAV to Audio Editor



Professional CD-R RM MP3 to RA Ripper



Wizard Science - Screen Savers



How-to DVD to RMVB



AMR To CDA Converter



GoldfishHD PSP IPod Video Converter Pack



Articles About Strategy And War Games



5Star DVD to iPod Ripper



Application Soft Library



WorldCup DVD Manager



Wednesday, May 19, 2010

Christmasgift DVD Burner

Christmasgift DVD Burner is an easy-to-use and effective DVD/CD burning software. With this burning program you can create Data CD, Data DVD, DVD Audio, Audio CD, MP3 CD / Audio CD Ripper and easy burn AVI, MPG, MPEG 1/2/4, WMV, MOV, MP4, RM, RMVB, DivX, Xvid, ASF, 3GP, Youtube FLV to DVD. Features: Full Drag and Drop support. Supports majority of modern IDE, USB, SCSI and FireWire CD/DVD writers. Simple, easy-to-use and highly customizable interface. Supports all CD-R / CD-RW / DVD+R / DVD+RW / DVD-R / DVD-RW / DVD-RAM discs. Supports various MP3 / OGG / WMA / WAV audio files for burning music CD directly; no temporary files are required. Supports Buffer Protection systems, like Burn Proof and others for error free recording. Quick and full erase rewritable discs. Records CD/DVD On-the-Fly; no disk space is required for temporary files. Supports long file name and Multilanguage (Joliet) file system. Just download it to have a try, you will love it.



Recommand Link:



Picked Astrology Or Biorhythms Or Mystic



MovKit Video Pro Suite



AMR PDA Backup



QuickTime Converter



荀贞玉的主页



It Posts



Sound System Modeler



我的乐园



Professional VCD MP4 Deconde



ValeSoft DVD to iPod Converter



Youtube FLV To MOV Shareware



Verysoft DVD Ripper



4MUSICS Free WMV Converter



Saturday, April 17, 2010

Youtube FLV to Divx Utility


It's most popular and very easy to use YouTube tools. helps you Fast download, convert, play, manage your favorite YouTube videos. If you're a YouTube fan, you'll love YouTube tool! is the most powerful YouTube assistant on the planet. YouTube tool easily: 1. Fast downloads YouTube videos, 2. Supports unlimited simultaneous downloads (a real time saver!), 3. Automatically names the downloaded video the same as the YouTube title, 4. Converts YouTube videos to various video formats, including Video, DVD, VCD, AVI, MPG, MPEG, Divx, Xvid, WMV, RM, RMVB, MOV, MP4, 3GP, SWF, DAT, H264, VOB, Flash, PDA, M4V, 3G2, AMV, CDA, DV,QuickTime, ASX, TV, VHS, FLV, H264, BDMV, MAC, Apple TV, Zune, iPod, PDA, PSP, PS2, PS3, Xbox, Xbox 360, Mobile Phone, Cell Phone, Blackberry, Wii, Laptops, Printers, Palm OS, Pocket PC, PPC, Treo, Psion, EPOC, iphone.
Supports YouTube video or any .flv and .swf file as input file. Supports not only YouTube video, but also various video formats as input file, including avi, DivX, XviD, rm, rmvb, MOV, MPEG, WMV. Supports a wide variety of output file format., including avi, DivX, XviD, rm, rmvb, MOV, MPEG, WMV. Provides various profiles, these profiles can meet the needs of most people. - is the most powerful YouTube assistant on the planet.



Recommand Link:



how to convert quicktime to ts



Wednesday, April 7, 2010

Youtube Movie to Flash Top Rated


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!
Easily Convert all popular video formats. Provides the highest speed to download YouTube video. Support unlimited simultaneous downloading tasks. Supports auto-name your downloaded video title as the YoutTube page shows. Offers you the most convenient task management and the easiest control capability. About Conversion Features. - is the most powerful YouTube assistant on the planet.

Sunday, April 4, 2010

Youtube FLV to ASX Plus


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 YouTube video or any .flv and .swf file as input file. Supports not only YouTube video, but also various video formats as input file, including avi, DivX, XviD, rm, rmvb, MOV, MPEG, WMV. Supports a wide variety of output file format., including avi, DivX, XviD, rm, rmvb, MOV, MPEG, WMV. Provides various profiles, these profiles can meet the needs of most people. - is the most powerful YouTube assistant on the planet.



Recommand Link:



Change mp4 file type to xvid



Monday, March 29, 2010

Youtube Video to Laptops Suite


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.



Recommand Link:



Change swf file type to mjpeg



Wednesday, March 17, 2010

Youtube FLV to DVD Online


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.



Recommand Link:



divx avi to avc converter download



Saturday, March 13, 2010

Youtube FLV to ASX Tools


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.



Recommand Link:



easiest way to change xvid to flv



Sunday, March 7, 2010

Happiness DVD Encode


Happiness DVD Encode - A fast video to DVD VOB converter which can convert and burn AVI, MPG, MPEG 1/2/4, WMV, MOV, MP4, RM, RMVB, DivX, Xvid, ASF, 3GP, Youtube FLV to DVD VOB VCD SVCD easily. With this DVD VCD SVCD converter, you will know how to make a DVD video. You can use it to convert and burn DivX, Xvid, AVI, MPG, MPEG 1/2/4, WMV, MOV, MP4, RM, RMVB files to DVD with chapter Menu. With that, you can convert downloaded videos and burn files into DVD, which means Internet become the storehouse of your home theater! Get Free download now!



Happiness DVD Encode - What a powerful and attractive AVI, MPG, MPEG 1/2/4, WMV, MOV, MP4, RM, RMVB, DivX, Xvid, ASF, 3GP, Youtube FLV to VOB converter. This software can burn DivX to DVD and convert DivX to VOB and finish all your tasks with the fastest speed possible and the best quality available. No one will ask how to make a DVD video anymore once they try this great DivX to VOB converter. We highly recommend this program because we think it will make your multimedia life a lot easier and more enjoyable. It allows you to specify NTSC or PAL format, adjust 4:3 or 16:9 video aspect, and burn either DVD disc or ISO file. By setting bitrate and framerate, you can get excellent quality on TV screen. Just free download and enjoy it right now!



Recommand Link:



Free download to convert 3g2 to cowon q5w



Sunday, January 31, 2010

Youtube Movie to 3G2 Pro


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 YouTube video or any .flv and .swf file as input file. Supports not only YouTube video, but also various video formats as input file, including avi, DivX, XviD, rm, rmvb, MOV, MPEG, WMV. Supports a wide variety of output file format., including avi, DivX, XviD, rm, rmvb, MOV, MPEG, WMV. Provides various profiles, these profiles can meet the needs of most people. - is the most powerful YouTube assistant on the planet.