Tuesday, September 28, 2010

Tencent intensified defendant who copied the crime portal



Portal plagiarism, in the summer heat under the Sogou sued qq, more and more serious complaint of a paper that broke the qq can only all the fat penguin cheating. Sogou Pinyin input method to unfair competition Tencent sued to require compensation and an apology over claims the amount of up to 20 million yuan. Reports, Sogou relevant responsible person said, "Sogou input method Tencent creative and intellectual property rights are serious plagiarism, Sogou indignation. And now the judiciary has been placed on file on the matter, that dog has mastered the part of the search of evidence, and determined to take from the legal weapons, Tencent acts of unfair competition fight back.

The face of cheating penguins, as the Internet, a pawn, not surprising. Tencent's fortune, the beginning is nothing but imitate the launch of ICQ OICQ, relying on China's huge user base for Internet users provide an excellent operator of the IM tool. Get down to business with a large user support, propped up Tencent's a blue sky. However, the original copy mode to become a lifetime Tencent mode of operation, along with a pat in, TenPay, qq Church, qq cyclone, etc., Tencent's products, we can find the original owners of the figure, surface on such a business model, as the door, I question Tencent, corporate image is where?

Corporate image is important, however, this highly competitive in the Internet virtual world, the brutal competition in all industries prompted exert their magic and innovation to this new industry is important. Recalling the development of the Internet, not difficult to find new elements in the poor, plagiarism has become the mainstream of the industry, this negative trend will inevitably affect the survival of the enterprise, but also relations between the healthy development of the network.

Perhaps before Tencent usual "used" the spirit of the current also can be base, but the long run, is unlikely to survive, let alone, the problem is that the status on the Internet with Tencent some up and down, and the strength of Sohu, 2000 million in making Tencent accept the lessons? the panacea hoped Tencent strategy in its proper role to play, so the Internet is more clear sky.







Recommended links:



QuickTime to MPG



Jobs: find a good quality of the work of eight major



Wizard Games And Entertainment



Hide IP address DETECTION and Experience



3GPP to WMV



Toyota Authorized Dealer



Family can offer car parking BUS transfer brush 2 yuan per card



Shared Experience Of Domestic Boutique Foxmail 5.0 (multi-map)



The Production of a three-dimensional characters



Production activities yourself Menu bar



Picked Audio CD BURNERS



make money fast store 2



VC environment created in the SYMBIAN build EXE project questions



YouTube to WMV



New E-Commerce



Tuesday, September 14, 2010

C # in the delegate and event



Delegate and event. NetFramework application is very broad, however, a better understanding of the commission and a lot of contact with C # events on time is not long people is not easy. They are like a sill children, people over this threshold, that is really too easy, not the past, people and events every time to see the commission felt heart writings to be finished and cut uncomfortable. This article, I will describe two examples of what is the greatest depth and commissioned, why use the delegate, the event's origins,. Net in the delegate and event, delegate and event on the Observer design pattern of meaning, on their intermediate code are also discussed.

The method as a method parameter

Let us no matter how convoluted this title, and regardless of whether the commission is something, look at the following two simple methods, which is nothing but output a greeting on the screen the words:

The following is quoted fragment:

public void GreetPeople (string name) (

/ / Do some extra things, such as initialization of the class, here a little

EnglishGreeting (name);

)

public void EnglishGreeting (string name) (

Console.WriteLine ("Morning," + name);

)

Whether it's two methods have no practical significance. GreetPeople to say hello to someone, when we pass the name on behalf of a person's name parameters, such as "Jimmy", entered, in this method is called EnglishGreeting method, again passing name parameter, EnglishGreeting is used to screen output "Morning, Jimmy".

Now assume that the program needs to globalization, Oh, well, I'm Chinese, I do not understand the "Morning" What does it mean, how do? Well, we are introducing a Chinese version of the greetings method:

The following is quoted fragment:

public void ChineseGreeting (string name) (

Console.WriteLine ("Good morning," + name);

)

This time, GreetPeople also need to modify it to read, or else how to determine which version of Greeting in the end with regards to methods appropriate? Doing this, we'd better define an enumeration as the basis to judge:

The following is quoted fragment:

public enum Language (

English, Chinese

)

public void GreetPeople (string name, Language lang) (

/ / Do some extra things, such as initialization of the class, here a little

swith (lang) (

case Language.English:

EnglishGreeting (name);

break;

case Language.Chinese:

ChineseGreeting (name);

break;

)

)

OK, even though this solves the problem, but I do not say that you can easily think of, this solution scalable to very poor if in the future we need to add Korean and Japanese version, you have to repeatedly modify the enumeration and GreetPeople () method, to adapt to new demands.

In considering new solutions, we look GreetPeople method signature:

The following is quoted fragment:

public void GreetPeople (string name, Language lang)

We only look at string name, here, string is the parameter type, name is the parameter variable name when we assign the string "jimmy" when it representative of "jimmy" the value; when we assign it "on Ground", the It also stands for "on Ground," this value. Then we can approach the body of this name in other operations. Hey, this is nonsense Why, just learning program will know.

If you thought about it, if GreetPeople () method can accept a parameter variable, this variable may represent another way, when we give the variable assignment EnglishGreeting time, it represents EnglsihGreeting () this method; when we assign to it ChineseGreeting time, it represents ChineseGreeting () method. We named this parameter variable MakeGreeting, it can not be assigned as to the name as it was when the call GreetPeople () method when the parameters are assigned to this MakeGreeting on the value of Mody (ChineseGreeting or EnglsihGreeting, etc.)? Then, we in the method body , you can also use other parameters the same as used MakeGreeting. However, MakeGreeting represents a method, it is used and it should be assigned methods (such as ChineseGreeting) is the same, such as:

The following is quoted fragment:

MakeGreeting (name);

Well, have ideas, we now come to change to change GreetPeople () method, then it should look like the:

The following is quoted fragment:

public void GreetPeople (string name, 1 10 11 12 13 14 15 16 17 18 19 2 20 21 22 23 24 25 26 27 28 29 3 30 31 32 4 5 6 7 8 9 MakeGreeting) (

MakeGreeting (name);

)

Took note of 1 10 11 12 13 14 15 16 17 1,819,220,212,223,242,526 2,728,293,303,132,456,789, usually placed in this position should be the parameter type, but so far We just think there should be able to represent method parameters, according to this thinking to rewrite GreetPeople method, now there is a big problem: this represents the method MakeGreeting What should be the type argument?

NOTE: no longer need to enumerate here, since the time of assignment to MakeGreeting dynamically decide which method to use is ChineseGreeting or EnglishGreeting, two methods in this internal, has been the use of "morning" or "good morning" to the distinction.

You should have thought of the wise, and now is the time to entrust the appearance, but about the commission, we look at MakeGreeting parameters can represent ChineseGreeting () and EnglishGreeting () method signature:

The following is quoted fragment:

public void EnglishGreeting (string name)

public void ChineseGreeting (string name)

String name as acceptable types of "true" and "1", but can not accept the true and bool type 1 as type int. MakeGreeting parameter type definition should be able to determine the method MakeGreeting can represent the types further stresses that MakeGreeting can represent the method parameter types and return type.

Thus, commissioned there: it defines the parameters can represent methods MakeGreeting types, that is MakeGreeting parameter type.







Recommended links:



Real player format



Convert quicktime to windows media



avi to mpeg Converter free



Convert flac mp3



Friday, July 30, 2010

PMP Preparation Experience



See that many students made a post earlier about the experience of pass the exam, could not help but also wanted to talk about some of their own children their feelings and experiences, I hope this can help to being prepared or intended to join the PMP exam students.

Just started school when the pressure is great, because they did not work now involves a lot of project management work, in this regard is no experience can learn from, so it is worried about their own failed the test, so it may be because lesson planning to do lectures are particularly serious problem. Personal success through the first experience: attitudes to attention.

Formal class once before I turned the book to understand the general content of the book. Then began to give classes and lectures wife really important! In particular I do not project management experience in itself, PMBOK simply no words to explain do not know where to grasp. I am only missing two days because of travel class, even if it is also about a two-day course to help me fill Xu back. After every time after class before the next class I will review very seriously, including watching lectures, reading books, doing title (Lao Jin's book), I've made my request is before the next class in front of the real knowledge of spoken All master. Other class is over, full of knowledge has been compacted to 80%. Training arrangements for the pro forma period a very tight and there are other things to be busy.

The most important thing at this stage, the stage of summing up:

1. Do not miss a class, listen carefully; is no way to missing the class, the teacher must find make up classes (note: his first title promising handouts to find a good book make up the teacher, the teacher can occupy as little time and efficient Austria!)

2. After listening to the prompt review sought to acquire knowledge, not behind the dash or do the old questions like, no time to review sprint when so much knowledge points, and subject also comes from knowledge is not cover all, rely on questions to do is cart before the horse

3. Do not know to ask, do not understand the content or subject of any immediate and teachers are discussed, do not delay, much knowledge is shared, and figure out a problem immediately after the vista may clear up a system of knowledge

4. Recitation notes. Test test and found many, many topics of knowledge from the lecture.

Do problems. While the class will provide Lao Jin's book title; class had finished, the teacher then has arranged for everyone to do five sets of simulated problems. Because the topics and more (test with 200 questions), the energy is a big test, I did 50 will generally look a little bit of time to prevent time-out, although the last time when the real test is very comfortable. Right or wrong I guess on the subject of research knowledge will be very serious point and listening to the teacher explaining that if a teacher started talking on the subject when I relax on the open desert of self;). Some fundamental questions strange (yes but this subject is still a lot of places), you still force yourself to remember them, because they really likely to appear in the examination intact Ah!!

Frankly speaking, compared to the last stage of the pain I fairly relaxed at this stage, each simulation results in relatively modest training while not coming to the fore;). Examination found that many subjects are familiar, the suggestion should be to master all the topics.

Two recommendations: attention for the wrong or guessed on the subject -> target: a repeat test with a knowledge point of never again wrong;

Simply not understand the metamorphosis theme, please recite the

Push. No time to read the notes on it back again; all have done something wrong or guess the title and read it again; no excuse for the 44 O 9 knowledge memorize down.

At this stage I was more painful. Examination before the Christmas holiday, then do not have any entertainment nervous painful death; despite the good results of the simulation is still worried to death, after all, paid too much If blew it worth it. A question was read back Ah, although I think that things will not be afraid to remember the new one does not see that knowledge with wings flew away from the head. Summarized here, do not you see I do have to learn the better.

In addition there are two things that would like to say a few words.

If some people in English is not good, there really is a worry. I did not read English books, do read the Chinese title of times, unless the problem is that the Chinese intended to obscure weird twist I will look at English.

If you do not have any project management experience, the more there is nothing to worry about, and my experience is not typical exam.

Finally, I really want to look special thanks to Xu. For some time because it has to make up classes, there is a period of time after class has finished no simulation questions to explain, and I are about the teacher on the night in msn voice lessons, the teacher can clearly feel tired, feel very much admire. Although the teacher to say it was his clients that do what we can not own a big lesson for teachers to have time alone when the teacher does not make up its obligations; if I have customers come to me after work, whether it is a pass Replacement mobile phone or an e-mail me something, even if not much time will be spent reluctantly, always feel that my private time after work to enjoy life. Care, I feel really very dedicated Xu.

Note that a hard look at though still very substantial Moreover, after a hard test worth it. I wish all of this post to see who can successfully pass the exam.







Recommended links:



flv To mov



"Random Eight-digit" Beware Of Your U Disk



blackberry FORMAT



Comments Inventory And Barcoding



"Six Degrees Theory" Mold SNS



PIMS And Calendars Infomation



PowerBuilder ACQUAINTANCE



TENCENT said the prosecution did not rule out the possibility 51.com



ts FILE format



Cartoons - Screen Savers reviews



Dan Zhongshao: I want to Lead by two years



"Chip China fever" experienced Cold



Dynamic growth in 20 years - nine as chief of this newspaper and HEWLETT-PACKARD China President Sun



How to enhance the productivity of textile and garment FACTORIES?



Adsl How To Do Frequent Dropped Calls



Convert Mov To Flv



Sunday, July 25, 2010

BI's salvation



Originally enterprise expansion and accumulation of information in the process of getting things like business itself, this time, perhaps only business intelligence (BI) can be redemption to come back.

In January 2010 IDC report released in 2010, total worldwide digital information created will reach 988 EB (1EB = 10 浜?GB). In 2006, the figure was 161EB, the size of which has the equivalent of all books ever figure of 300 times the amount of information.

Unfortunately, the information is not equal to knowledge, more "EB" and not automatically bring more value. For businesses, if only a heap of information, brought only a more intense "pain."

In this case, only the realization of "information" to "knowledge" of the conversion, take up a lot of storage space, data companies are eligible to be called the "treasure." Practice started early in the IT countries, BI has been a number of transmigration. Today, many foreign enterprises have been quietly shift to BI mobile communications, computing data, more accurate intelligence analysis, but in China, there are still many enterprises are just beginning the road to BI, business intelligence among the three levels, most of them The report is still in the low-end system or in the end application level data analysis, there is little to high-end "data mining" level. An acceptance of "CIO INSIGHT / Information Strategy," an interview with the CIO that is not excluded BI launched the project, said the organization is not currently implemented in China and use the BI system, enterprises, 80% still in the first two of the BI application level.

Companies from the Gartner Business Intelligence 1996 proposed the concept of the second decade of the 21st century opened today, 15 years in the past, Chinese companies are beginning to BI application on awakening, and even broke out, they stepped up on the information of "salvation" process, it is also retrieve information lost in time.







相关链接:



Armed new rural computer



How To Convert .mp4 To .avi



Online Player DIY



RECOMMEND Converters And Optimizers



Assembly Instructions And The Machine Code Of Each Conversion



Mov To Avi



Ubuntu 8.04 Active Directory: Likewise



Clocks And Alarms Guide



Limit Of WMA Format Music



Good Fax Tools



ASP.NET (C #) bulk upload



Hot Themes And Wallpaper



convert flv to wmv



Three 3G licenses which Zhang's most "money" way?



Mr. Ma's reply to Bill Gates



FTP Site Preferences



wmv



Tuesday, July 20, 2010

Flash visual effects of the space shuttle


Achieved in this case is in the vast universe, passing by numerous stars effect. The case of realization of simple and effective blinding, also very practical. For example, in the instance put a warship, the aircraft will have the effect of fast motion. I believe this case will certainly add much color to your work, or what inspired you.

Here we begin concrete production.

1. Open FlashMX, set the scene of the size 450px X 450px, black background. Frame rate to 15fps.

2. Pressing the shortcut keys "Ctrl + F8" open "to create a new symbol," panel, create a "shooting star" in graphic symbols. Then in the "shooting star" symbol of scenes shown in Figure 1 Drawing of a meteor-like object, its width, height as 3 px, 100 px. Rendering of the meteoroids can be divided into paragraphs, each a different color, then better reflect the flow of visual effects.

3. Pressing the shortcut keys "Ctrl + F8" to create a "meteor shower" in the movie clip symbol. Then in the "meteor shower" symbol of the scene in the "Layer 1" layer renamed "animation" layer. Then pressing the shortcut keys "Ctrl + L" open library, the library graphic symbols "meteor" drag and drop to the "animation" layer scene.



Figure 1



Figure 2

4. Click the "animation" layer of the first one in the "meteor" shortcut keys "Ctrl + T" to open "deformation" panel and make the settings shown in Figure 2.

5. Right-click the "animation" layer of the first frame and select "Create motion tween" command to create motion tween. Then click to select the layer were the first 12,22,30,36,42,45 frame and press "F6" key to insert a key frame. Shown in Figure 3.



Figure 3

6. Figure 3 shows, then click the first 46, according to "F7" key to insert a blank keyframe. Then right-click on the empty frame, select the pop-up menu in the "action" command, in the open "action" panel, enter the code: "stop;". Figure 3.

7. Click the first 12 in the "meteor", open the "deformation" panel to the width and height scaling set to 55% and 6%, and it moved up 20 pixels. And then 20 in the "meteor" in width and height of zoom point and also move up a certain pixel. S 30,36 ... frame and so on. Thus, when the "meteor" closer and closer to us, it will look bigger, the speed of movement will be faster.

8. Back to the main scene, open the library, the library in the movie clip symbol "Meteor Rain" onto the main scene. Then click in the scene in "Meteor Rain", in its property panel to it from entities called "meteor", shown in Figure 4.



Figure 4

9. Right-click on the main scene of the first one, select the pop-up menu in the "action" command, in the open "action" panel, enter the following code:

/ / Define function "spacetime ()", which role is to copy the movie, and video point of view, transparency properties were set
function spacetime () (
/ / I was the only copy the movie clip depth (level), depth is the copy of the video clip of the stacking order
/ / If the variable "i" is greater than 300, its value is 0 on reset
if (i> 300) i = 0;
i + +;
/ / Statement duplicateMovieClip () function is to copy the video clip
duplicateMovieClip ("meteor", "meteor" add i, i);
/ / _rotation Is the point of property, _alpha transparency property is
/ / Function random () can return in parameter value between 0 and a random integer
this ["meteor" add i]. _rotation = random (360);
this ["meteor" add i]. _alpha = Math.random () * 30 +30;
)
/ / Statement setInterval () can be called from time to time interval to a function, method or the like, in milliseconds
setInterval (spacetime, 10);
Well, here produced results that can be tested.

Finally, there are several points I want to draw attention. The first is the code statement "if (i> 500) i = 0;" This usage is possible, if the switch back to normal mode, you will find that the system will automatically add the statement "()" and indent. In addition, random () function is already in Flash5 in use is not recommended. Recommended Math object random () method replaced. This method returns a 0 to 1 a few. For example, you can use the statement Math.random () * 360 to replace.

This effect in terms of if you put 360 in the "0" to remove, or be "shaking shaking", the effect ... ... hey, interested readers can see for yourself.






Recommended links:



Who can resist the layoffs hit the DOOR



Lohan DVD to WMV



audio TO mp3 converter



Youtube to AVI Plus



My Favorite News Servers



Photoshop Mask Analysis



ts video Format



Review Helpdesk And Remote PC



Prompt! teleprompter for Mac OSX



Recommend Kids Education



Mkv file



Event learn Anything from the Diet Coke?



Compilers And Interpreters Report



video converter mp4 to mpeg



MP3 M3U To ID3



Thursday, July 1, 2010

Digital CD AMR RA to CDA Ripper

Digital CD AMR RA to CDA Ripper helps you convert digital-audio tracks directly from compact discs to CD-quality WAV, MP3, Windows Media, or OGG Vorbis files without generating temporary files. Digital CD AMR RA to CDA Ripper key features include a built-in CD player, album information from CDDB, Winamp playlist support, multiple CD-ROM support, and ID3 tag support. This Audio Converter provides an easy and completed way to convert MP4 to MP3, M4A to MP3, AAC to MP3, etc, convert audio between popular audio files, such as MP3, CD, CDA, CD-R, DVD-Audio, AAC, AC3, ID3, M3U, M4A, M4P, MP3 ID3 Tag, OGG, RA, WAV, WMA, MP2, APE, VQF, MPC, AMR, Midi, WAVE, and RM etc. All conversion processes such as MP4 to MP3, M4A to MP3 and AAC to MP3 converting are very easy to handle with super fast speed.



Recommand Link:



Ever MP3 WMA RM to APE Manager



Hope DVD to WMV



SuperBurner DVD Backup



BlackBerry PSP Creator



!4D AudioPlayer SGLX



Recommend Network And Internet



Daniusoft DVD to iPod Converter



MP3Producer



Guide Helpdesk And Remote PC



brief Screen Capture



PROFESSIONAL DVD to MOV SWF



Professional DAT MPEG4 Converter



Youtube FLV to Divx Application



mts to vob



Sunday, May 30, 2010

Professional RA M3U to WAV Ripping

Professional RA M3U to WAV Ripping is a powerful audio converter which can convert almost all popular video to AMR, AAC, AC3, M4A, MP3, OGG, WAV audio clips and play them in your PC or other software audio player. Professional RA M3U to WAV Ripping can convert almost all video and audio formats, for e.g., DivX, XviD, AVI, WMV, ASF, MPG, MPEG (MPEG-1, MPEG-2), MP4, FLV, SWF, M4V, MOV, QT, SVCD, VCD, VOB, AAC, AC3, M4A, MP2, OGG, TTA, WAV. Supports most popular audio file formats, such as MP3, WAV, WMA, MP2, Ogg Vorbis, AAC, APE (Monkey's Audio), VQF and so on.



Recommand Link:



HTML Tools comparison



APPLICATION soft library



Good RECREATION



Digital CD AC3 VQF to M4P Burner



Ever Sound CDA to APE Maker



Wondersoft DVD To Apple TV Video Suite



Swift DVD to MOV



Youtube FLV to SWF Box



Youtube to MAC Shareware



Merry MP3 AAC M4P to MP3 ID3 Tag Copy



Nevo DVD Audio Ripper



X-Cloner VCD Converter



Youtube FLV To SWF Plus



Youtube Movie to PSP Online



New Audio Encoders Or DECODERS



Acala DVD Copy Ripper Bundle



DVD Copy Movie