Thursday, October 21, 2010

Icahn comeback MOTO dilemma



Beijing on March 25, "Business Week" article points out that radical investor Carl Icahn (Carl Icahn) this week, a pair of Motorola Inc. sued the latter to submit its current loss-making mobile devices business-related documents, to determine the Motorola Board of Directors whether the misconduct. Even if he loses in court, Motorola and will not pressure eased.

When billionaire Icahn, Motorola board seat last year in the fight for battle in defeat, he solemnly declared that if the company's performance does not improve, he will stage a comeback. Now, he really come back with a large number of lawyers.

March 24, Icahn a large court in Delaware Motorola sued to submit with the current loss-making mobile devices business-related documents. Icahn now owns 6.4% stake in Motorola, Motorola's second-largest shareholder. He also requested access to company records and hiring jet like the use of information.

This year, Icahn has launched Motorola's shareholders meeting the Board seat battle again, and said he could not reverse the company's core performance mobile office slowdown frustrated. Motorola has appointed Brown (Greg Brown) to succeed Aidezhande (Ed Zander) as CEO and is considering to sell or a separate mobile phone business. Icahn believes that these measures simply useless. His indictment said: "Mobile Devices Business Unit, has been caught in a vicious cycle."

Icahn before the public prosecution, has tried in private to Motorola's request, but was rejected. It is reported that he had sent a letter in the March 13 Motorola Inc., to request access to the documents. Motorola's board back Mr. Icahn said he could under the conditions of routine access to confidential agreements with Motorola related information, but Icahn does not accept those conditions. The spokesman declined to comment on Icahn.

Frankly to me

Motorola Board has also made concessions accepted Icahn nominated four candidates for board members to the Board in two (not including Icahn Management 8 billion U.S. dollars to help fund the 鍩烘?杩堟柉鐗?(Keith Meister)), but Icahn Motorola did not agree to compromise. Icahn said: "We can agree to nominate other candidates for Motorola, but it must have a sufficient share of stock. Why do not they accept our board of directors nominated by the other two candidates? They never explained to us."

According to informed sources, Motorola that Meister is not qualified. Icahn had previously tried to enter the VISX Board Meister. Follow-up study business management Institutional Shareholder Services Inc. in dispute on the VISX Board of Directors report that the now 30-year-old Meister in the interests of all shareholders into account the lack of experience and objectivity. But Icahn that Meister has enough commercial and investment banking experience, and he also represents the largest shareholder of the 145 million shares, he will inject new energy company's operations. Icahn said: "Motorola's board of directors was not the Brotherhood, nor country club, why not accept him?"

Motorola said Icahn would go something placed in the court settlement, the board wanted to cause more trouble. Motorola claims that Icahn's demands too harsh. Motorola started from July 2006 with a conference call with Wall Street on a regular basis, to the present held a total of nine meetings. Icahn would like to access all of the documents, including a conference call prior to the time and records. He also asked Motorola to provide all of the session to present the content, financial analysis, research reports and the Board started from July 2006 to provide information such as product reviews. Motorola, Icahn also asked to provide a common use of jet recording, mainly because the company board member and former Chief Financial Officer Tom 濮嗘鍒╄开鏂?(Tom Meredith) chief financial officer resigned after the increase in the number of aircraft used.

Continue to put pressure on Motorola's board of directors

RiskMetrics Group research director at the company's acquisition of Chris Young (Chris Young), said Icahn's aggressive approach is standard practice for investors. Motorola says Icahn does not meet the requirements of Delaware law. Icahn's legal counsel Keith Chaikin (Keith Schaitkin) said: "We demand compliance with all legal requirements, we intend to persist in the end." Icahn said he wanted to know all of the shareholders at Motorola's board of directors to to ensure that shareholders and the company's performance when they are thinking.

According to informed sources, as Motorola did not want the May 5 annual shareholders meeting started with members of the Board of Icahn fight, so the next few weeks, Motorola may continue to negotiate with Icahn. Last year, Motorola's handset sales began to decline, decreasing profits, stock prices started to decline, the Motorola felt great pressure from Icahn. Then Icahn began buying shares of Motorola and general meeting in 2007 launched a dispute board members.

Even if Icahn can not get permission to access those files, he may be successful in another, it is to continue to put pressure on Motorola's board of directors. Be permitted if Motorola can not provide that information to Icahn, the board can still feel the pressure from Icahn. Icahn has a large amount of cash to court. Even if the case was referred to the court, and Icahn lost, he still will give Motorola a serious blow to the company and the board of directors. Yang said: "For Icahn, it was a victorious battle. Motorola will have to take the defensive, and the case itself would imply that Motorola withholding some information."







相关链接:



BI, in the M & A growth?



Higher heat blow, "Kabbah Wind" paper submitted until 15th of the month



China OLPC alliance brewing threat of Wintel alliance formed



Once again COUNTER SigmaTel Actions



ASF To AVI



Matroska to MP4



"Warriors serpent Z" PROPERTY and injury Xiangjie



The Hai Lute: national, world's



Good SCREEN Savers



Encourage You Dealers



qwerty affordability in the samsung genio slide



Simple Network Monitoring



3G2 to MPEG



Thursday, October 14, 2010

Leads by the example of the counter (C #)


Long time not to blog, that is also fun, suddenly feeling in some C # class, why, its constructor is invisible?

And often these classes in a program there is often only one instance. So I did an experiment was as follows:

Leads by the example:
using System;

namespace ConsoleApplication1
(
/ / /
/ / / Class1 in the summary.
/ / /
class Class1
(
/ / /
/ / / Application main entry point.
/ / /

[STAThread]
static void Main (string [] args)
(
/ /
/ / TODO: Add code here to start the application

Class2 c1 = Class2.Init;
Class2 c2 = Class2.Init;
c2.refDis ();

Class3 c3 = new Class3 ();
Class3 c4 = c3;
c4.refDis ();


Class3 c5 = new Class3 ();
c5.refDis ();


Console.ReadLine ();

)

)

class Class2
(
static int ref_2 = 0;
private Class2 ()
(
+ + Ref_2;
)
public static readonly Class2 Init = new Class2 ();
public void refDis ()
(
Console.WriteLine ("Class2 reference:" + ref_2);
)
)
class Class3
(
static int ref_3 = 0;
public Class3 (){++ ref_3;)
public void refDis ()
(
Console.WriteLine ("Class3 reference:" + ref_3);
)
)

)



Output:
Class2 reference: 1
Class3 reference: 1
Class3 reference: 2


Read the above results may surprise you will find some, maybe not, is not it? In many cases, we are trying to

To get an instance of the class how many? Usually think of counter examples of the practice. Yes, with a static variable

Do instance counter is appropriate to the. But also sometimes, we do not want to, too many of our examples

Such as: DataRead it is always only one. So how can we do? I see the above experimental results?

Ah main speaker, found anything? public static readonly Class2 Init = new Class2 ();

Interested in this one is it? Do you have any objection to it? Remove the static right? Well, then, if you like.

Like this: public readonly Class2 Init = new Class2 (); let us see what happens, ah, oh

See the. No way to instantiate to operate. Ha ha. . . Do not worry, let me further explain, static members are

On the static storage area is to be completed early in the program loads configuration. So obviously, Init value, in fact,

In the beginning, the new up an object to it. It holds a reference to the object. Let us look at these two

Class2 c1 = Class2.Init;

Class2 c2 = Class2.Init;

Looks nothing special, is ah, according to the above statement, this is just in passing reference. Therefore, counter examples

Always one, because I said, is in the process of beginning to complete the configuration. So following these lines, is the best

Note:

/ / Pass the new object reference is not instance, so instance of the counter is still 1
Class3 c3 = new Class3 ();
Class3 c4 = c3;
c4.refDis ();

/ / Allocate a new instance of the first, instance of the counter value plus 1. Is 2
Class3 c5 = new Class3 ();
c5.refDis ();







Recommended links:



Comment Inventory And Barcoding



Holiday promotion: how to make the cost may change from control



the easiest way to Uninstall ati drivers use ati



Ali power to help her mother five years beyond the traditional media blog



Create UNIX Backdoor (primary chapter)



Zhongguancun hand new countryside



Informix easy to understand and explain the usage of common commands



AVI to FLV



MPEG to 3GPP



Picked Astrology Or Biorhythms Or Mystic



I Have A A4 Paper Give You A High Performance [1]



DivX To IPhone



PhotoShop new tricks: Paintings in paintings



Tuesday, October 12, 2010

Registry combat Collection - "Operation" Change Collection



Operating

Prohibit the cursor flashing
Under the HKEY_USERS.DEFAULTControl Paneldesktop
In the right window to create a string value: "CursorBlinkRate", and its value is set to "-1."

Remove the "Find" command remains in the registry search results
Under the HKEY_USERS.DEFAULTSoftwareMicrosoftWindowsCurrentVersionExplorerDoc Find Spec MRU
Remove the right window key

Given a warning before entering Win98
Under the HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionWinlogon
Key: "LegalNoticeCaption" = "greetings"
Description: This is the message box title.
Key: "LegalNoticeText" = "Welcome" note: This is the message text box. WINDOWS98 Login Password
HKEY_LOCAL_MACHINENetworkLogon
In the right window to create a DOWRD value: "MustBeValidated", and its value is set to "1", after the start WINDOWS98
Press ESC key will not display.

Boot a "multi-user login" options
Under the HKEY_LOCAL_MACHINENetworkLogon
In the right window to create a DOWRD value: "UserProfiles", and its value is set to "1."

Automatic sign-on system boot
Under the HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionWinlogon
In the right window to create a string value: "AutoAdminLogon", and its value is set to "1"; also create a string value "DefaultPassword", its value is the password for logon, create a string value: "DefaultUserName", The value of log
User name used. Meaningful to the single user

Automatic Updates
HKEY_LOCAL_MACHINESystemCurrentControlSetControlUpdate
The binary value "UpdateMode" to "00 million."

The mouse automatically activate the current window
HKEY_USERS.DEFAULTControl Paneldesktop
The binary value "UserPreferencemask" to "AF 00 00 00".

View WIN98 password entered during installation
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersion
Click the "ProductKey", you can see.

Change the installation path of the documents WINDOWS
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionSetup
In the right window, there is "BootHost", "BootDir", "SourcePath", "MediaPath ".....
Change its data content, you can change the relevant path to the file.

Set up the default user name and company name
HKEY_CURRENT_USERSoftwareMicrosoftMS Setup (ACME) User Info
In the right window, find the string value: "DefCompany", "DefName", DefCompany is the company name,
DefName is the user name.

Register your WINDOWS98
HKEY-LOCAL-MACHINESOFTWAREMiscrosoftWindowsCurrentVersion in the right window "Regdone" value to "1"

Autorun CD
HKEY_USERS.DEFAULTSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer
In the right window to create a binary value: "NoDriveTypeAutoRun", and its value is set to "95 million"
Want to disable automatic operation, simply to "b5 00 00 00".

Auto Play CD
Under the HKEY_CLASSES_ROOTAudioCDshell
In the right window, modify the string value: "default", change the value space.

Direct indication of image content
HKEY_CLASSES_ROOTPaint. PictureDefaultIcon
In the right window, find the string "default", modify the value of "% 1."

Add or remove programs that run automatically on startup
In HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersion, make mouse click "RUN",
In the right window, press the appropriate method to add or remove programs that run automatically when startup.






Recommended links:



AVI To FLV



flash full screen ad code



RM to AVI



MKV to PSP



Thursday, September 23, 2010

Tips to download lovers to support the market


Author: Chen Xubo

After spend broadband, the most happy was undoubtedly the friends who like to download, but there followed an anxious question, that is to see other "fellow" Because I enjoyed downloading, the hard disk have "injured", the reason is very simple, on-line a lot of good stuff, tall are several megahertz or even G, download up better than a few hours, long suffering strange not to hard disk broke! How best to protect the hard drive, I believe the following "Tips" can help you a favor ... ...

1. Increase the disk cache. Run "Windows Optimization Master", choose "System Performance Optimization 鈫?disk cache optimization", in the right panel, combined with their own memory, in accordance with the recommended values adjust the software disk cache, and finally click the "Optimize" button.

2. FlashGet's Save the frequency adjustment. FlashGet is the users one of the most commonly used to download the software, it provides a common hard disk protection mechanism - first data downloaded to the buffer, to a certain amount of time and then written to disk. This mechanism can be effective in preventing frequent disk operations. In FlashGet's main interface, the implementation of the main menu "Tools 鈫?Options" in the "Options" window, switch to the "General" page, find "the data is written to disk when receiving" option (Figure 1 ), set the value to the maximum of 1000, the downloaded file will be 1000KB Save for the unit.



3. BT player of the Gospel. BT is currently one of the most popular download tool, but unfortunately, many BT download tool is the data is written directly to disk, so a long time, damage the hard drive can be imagined. In fact, many of the BT download tool, you can consider using the "bit Wizard", which in addition to providing functionality similar to FlashGet download manager, also has the intelligent control of the cache and many other features, the related website: http://www .lanspirit.com / bscn.htm.

Installing "bit Wizard", when you click on a BT download link, pop-up "Add New Task" dialog box (Figure 2), see the "largest cache block" option, right? Each block size is 256KB, the initial default value is 60 for 256MB of main memory, the value generally meet the requirements, if you have more than 384MB of memory, it is recommended to enhance the value.



The points mentioned above, are essentially by increasing the buffer to read and write, to reduce the number of hard disk read and write to achieve the "burden" of purpose, we can judge the whole.






相关链接:



Specialist Telnet Servers



PIMS And Calendars COMPARISON



brief Audio And MULTIMEDIA



Review the DB2 Viper



A flash drive to buy the real experience



Create swf



M2TS to MOV



HP's New CEO Took Office Claiming To Be Unwilling To Hollywood Star



ASF to MPEG



Beijing TV (radio and television media)



MKV to DivX



Job Interviews When The Topic Of 15 "Forbidden Zone"



"Warriors serpent Z" property and injury Xiangjie



Giant B & Q



Thursday, September 16, 2010

Shift from the C + + C # issues needing attention (1)



C # is built on C + + syntax and semantics, allowing programmers to use C language. NET common language runtime and the convenience brought. Despite the shift from C + + C # is relatively easy, but some areas still deserve our attention.

This article will focus shifted from the C + + C # when the biggest changes: the non-managed environment to changes in the environment can be managed. Additionally, some C # programmers easy to mistake for your reference, and will describe some of the C # programming language to influence the new features.

Shift to the management of the environment

C + + design goal is low-level, platform-independent object-oriented programming language, C # is an advanced component-oriented programming language. Changes in the regulatory environment can mean that you think the major changes programmatically, C # is no longer dealing with fine control, but to give structure to help you address these important issues. For example, in C + +, we can use the new in the stack, heap, or even a specific location in memory to create an object.

In. NET-managed environment, we need not be as fine control. In selected to create the type, its location is fixed up. Simple types (ints, double and long) of the object is always created on the stack (unless they are included in other objects), classes are always created in the heap. We can not control what the object is to create a position in the heap, there is no way to get this address, the object can not be placed in a specific location in memory. (Of course, there are ways to break through these limits, but is an alternative method.) We can no longer control the object's life cycle, C # no destructor. Debris collection program will object to recall the memory, but the non-dominant manner.

This structure is the C # reflection of its infrastructure, which is not multiple inheritance and templates, because in a managed environment of debris collection, multiple inheritance is difficult to efficiently achieve.

C # in a simple type is the only common language runtime (CLR) in the type of simple mapping, for example, C # The int is System.Int32 mapping. C # in the data type is not determined by the language itself, but the decision by the CLR. In fact, if still want to use in C #, VisualBasic object created, they must make their programming habits more in line with the provisions of CLR.

On the other hand, can manage the environment and the CLR have also brought benefits to us. In addition to debris collection and all. NET languages in a unified data types, it also provided us with a powerful component-oriented programming language, Wu Xu binding on the latter to provide special support Leixingfaxian and late binding Dushi was built in the language. Attribute is C # language in the first category of membership, events, and agents also.

May be the most important advantage is that management of the environment. NETFramework. Despite all of the. NET languages can use this framework, but C # can make better use of. NET Framework rich classes, interfaces and objects.

Traps

C # and C + + looks very similar, which makes us turn from the C + + C # relatively easy time, but there are some trouble spots. Written in C + +, very nice code in the C # compiler will not pass, even unexpected results. C # and C + + between the change in the grammar is not great, the compiler can find most of the difference between these two, I am not any further words here, and here I introduce a few more error-prone important changes:

Reference types and value types

In C #, value types and reference types of data are different. Simple types (int, long, double, etc.) and structural data are value types, classes and objects are reference types of data. Unless it is included in a reference type variable, and in C + +, the same value type variables are stored in the stack. Reference type variable is also stored in the stack, but its value is stored in the address of the object heap, which is also similar with C + +. Value type variable is passed to the method of their value, while the reference pointer type variable will be passed to the method of their own.

Structure

C # in the structure and C + + in a very clear distinction. In C + +, the structure is more like a class, in addition to the default inheritance, the access of its default is public and not private. In C #, structure and distinct class, which is used to package and light objects, is a value type of data type, when the transmission is in the transfer value of the variable, rather than its address. In addition, they also have some type of restriction does not apply, for example, it can not be inherited, and no addition to the basic category than System.ValueType. Structure can not define a default constructor.

On the other hand, due to the efficiency of the structure is higher than the class, so it is very suitable to create a light object. Therefore, if it's shortcomings do not affect your software, use the structure than using the class is much higher, especially for small objects is concerned.

Everything is an object

In C #, all things are received by the inherited Object, including the creation of the class and int, structs equivalent type of variable. Object class provides some useful methods such as ToString, use the ToString example is used in conjunction with System.Console.WriteLine, it can accept a string and a number of objects. Printf statement with the use of different, to use the WriteLine, the need for substitution variables. Suppose myEmployee is a user-defined an instance of Employee class, myCounter user-defined Counter is an instance of the class:

Console.WriteLine ("Theemployee: (0), thecountervalue: (1)",

myEmployee, myCounter);

Which calls the WriteLine method of each object Object.ToString, replace the variable as a parameter to return. If the Employee class does not override ToString, will call the default implementation (inherited from the System.Object obtained), it will put the class name as a string to return. Counter override ToString, returns an integer variable, so the output of the code above:

Theemployee: Employee, thecountervalue: 12

If an integer variable passed to the WriteLine What happens then? Since integer variables can not call ToString, the compiler will automatically be integer variables encapsulated in an object instance. When the WriteLine call to ToString, the object will return the string value of that integer variable. The following code illustrates this problem:

The use of class

usingSystem;

/ / Do not override ToString in class

publicclassEmployee

(

)

/ / Cover class ToString

publicclassCounter

(

privateinttheVal;

publicCounter (inttheVal)

(

this.theVal = theVal;

)

publicoverridestringToString ()

(

Console.WriteLine ("CallingCounter.ToString ()");

returntheVal.ToString ();

)

)

publicclassTester

(

publicstaticvoidMain ()

(

/ / Create an instance of class

Testert = newTester ();

/ / Call non-static members

/ / (Mustbethroughaninstance)

t.Run ();

)

/ / Demonstrate the non-static method called ToString

publicvoidRun ()

(

EmployeemyEmployee = newEmployee ();

CountermyCounter = newCounter (12);

Console.WriteLine ("Theemployee: (0), thecountervalue: (1)",

myEmployee, myCounter);

intmyInt = 5;

Console.WriteLine ("Herearetwointegers: (0) and (1)", 17, myInt);

)

)

Reference parameters and output parameters of

The same with C + +, C # the method can only return a value. In C + +, we passed the pointer or index as a parameter to overcome this restriction, which is called the method of changing the parameters, call the method can get the new value of.

Pass an index to the method as a parameter, the only strictly by passing the index or pointer can provide access to the original object. For the value type variable is concerned, we can not use the method. If you want to pass by reference type parameter value type variable, you need to add in front of ref Key words. As follows:

publicvoidGetStats (refintage, refintID, refintyearsServed)

Note that both methods require the use of the definition of ref Key words, but also the practical need to call in the way Key words used in ref.

Fred.GetStats (refage, refID, refyearsServed);

Now, we can call the method defined in the age, ID and yearsServed variables, pass them to the GetStats, get the changed value.

C # requires a clear assignment, that is, before calling GetStats method, must be age, ID and yearsServed three local variable is initialized, this work seems a bit redundant, because we only use them to get new from GetStats variable value. To solve this problem, C # provides a key word out that we can pass to the method is not initialized variables, these variables will be conducted through the reference variable transmission:

publicvoidGetStats (outintage, outintID, outintyearsServed)

Of course, calling the method must also make corresponding changes:

Fred.GetStats (outage, outID, outyearsServed);

New call

In C + +,, new Key words can generate an object on the heap. In C #, is not the case. The terms of reference type variables, new key word generate an object on the heap; types of variables in terms of structural equivalence, new key word to generate an object on the stack, and need to call the constructor.

In fact, we can not use the new key word in the stack to generate a structure type of variable, but this time to note that, New Key words to initialize the object. If you do not use new, you must manually before use of the structure to initialize all members, or at compile time error.

Object initialization

usingSystem; / / There are two member variables and a simple structure constructor

publicstructPoint

(

publicPoint (intx, inty)

(

this.x = x;

this.y = y;

)

publicintx;

publicinty;

)

publicclassTester

(

publicstaticvoidMain ()

(

Testert = newTester ();

t.Run ();

)

publicvoidRun ()

(

Pointp1 = newPoint (5,12);

SomeMethod (p1); / / fine

Pointp2; / / do not call directly to create new

/ / Compiler error here will, as a member variable p2 is not initialized

/ / SomeMethod (p2);

/ / Manually initialize them

p2.x = 1;

p2.y = 2;

SomeMethod (p2);

)

/ / Point as a parameter to an acceptable method of

privatevoidSomeMethod (Pointp)

(

Console.WriteLine ("Pointat (0) x (1)",

p.x, p.y);

)

)

Property

Most of the C + + programmers hope to make a member variable of the property is private, 杩欑 hidden data in the idea of Cujin the data packaging concept of the Chuxian, so 鎴戜滑 can not change the users rely on the interface, but to, the realization of the changed. Normally, we only want our customers to get or set the member variable values. Therefore, C + + programmers developed to access the private member variable of the access device.

In C #, attributes are first-class members of the class. For customers, the property looks like a member variable. For those who like to achieve, the way it looks more like. This design is clever, both hidden and packaging of data, but also allows customers to easily access member variables.

We can add an Age Employee class attribute, so that customers can easily access and set the age of the staff members of the class:

publicintAge

(

get

(

returnage;

)

set

(

age = value;

)

)

Key words hidden attribute value can be use. If you write the following code:

Fred.Age = 17;

Compiler will pass the value 17 value.

Instead of by using only Get Set, we can create a read-only attribute YearsServed:

publicintYearsServed

(

get

(

returnyearsServed;

)

Use) Accessors

privatevoidRun ()

(

EmployeeFred = newEmployee (25,101,7);

Console.WriteLine ("Fred''sage: (0)",

Fred.Age);

Fred.Age = 55;

Console.WriteLine ("Fred''sage: (0)",

Fred.Age);

Console.WriteLine ("Fred''sservice: (0)",

Fred.YearsServed);

/ / Fred.YearsServed = 12; / / is not allowed

)

We can get Fred property age, you can also use this property to set the age. While we can get it to access YearsServed property value, but can not set the value. If you do not comment out the last line of code, at compile time error occurs.

If you later decide to obtain from the database Employee's age, we only need to change the access to the system implementation, the client will not be affected.







相关链接:



Compare Browser Tools



Ps3 Movie Formats



Command & Conquer 3 - the most difficult opponents experience



free mov to wmv converter



EASY News Servers



Wave of mergers BI have a happy life



In October 2007 the Sixth New York International Outsourcing Exhibition



Ulead SmartSaver Pro 3.0 Cheats bit through (c)



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



Mpeg4 To Mp4



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



C # in the Delegate and event



Optional Memory Must Answer Three Questions



In SDH / SONET 155M On Carrying IP Packet Solution



Easy to use Communications Tools



m4a to mp3 converter



Thursday, August 5, 2010

Bill - Bill Gates retirement after pitching in a number of patent applications



July 15, according to foreign media reports, last week by the Searete company in a patent application submitted by Microsoft founder Bill emerged - the name of Gates, he is working with other team members working on a reduced hurricane power of patents. The patent is the use of equipment to make sea water cooling, to change its surface tension will force the introduction of other security zones, thereby reducing the power of the hurricane.

Searete company's Intellectual Ventures in Bellevue, Washington company's subsidiary company, founded by a former Microsoft executive, is committed to the new invention. Intellectual Ventures founder Nathan - Myhrvold (Nathan Myhrvold) served as Microsoft's chief technology officer, and in 1991 founded Microsoft Research.

Some critics say, Intellectual Ventures will raise the cost of intellectual property litigation, but the company claimed that in addition to universities, laboratories and outside the Fortune 500 companies, also with more than 500 scientists and technical personnel cooperation.

This is not the only one with Bill Searete company - Gates-related patents. Since the Bill - Gates from Microsoft CEO position last year, since leaving office, he will more time and energy on Bill and Melinda Gates Foundation (Bill and Melinda Gates Foundation) on the Fund's objective is to improve global health, education status, poverty reduction, and the maintenance of a number of other benefits.

From the patent application submitted by Searete, we also found that the name of Gates also appears in the magnetic storage engine and patent medicines. Gates, Myhrvold involved with drugs can be controlled temperature storage research and development, the device can maintain the best beer and wine storage temperature. It can be the device's sensors and monitoring equipment, electronic display inside the liquid, without the need to open the device.







Recommended links:



Are days, as the (ZONTIS) infrared camera prices down across the board



Ulead Photo 6 produced a tough, big run (Foreword)



Lu first group: the advent of the China Open Source Inflection point



mkv CONVERTER free



mp3 TO m4a



Shop Delphi



The PRESSURE of free memory



for you Science - Screen Savers



Win32 does not Require the release of resources



Matroska file



New Cataloging



Convert Flv To Avi



UML, RUP and Zachman framework: the perfect combination of [1]



Details determine success or FAILURE: Lean Manufacturing (6)



Thursday, July 15, 2010

Online video convergence can watch movies without having to download



Storm Storm launch video 2009 new box, the whole network together online video, so you can see the wonderful without having to download large video. Xiao Bian gave brief you today STORM 2009 new features.

Download and open the storm video, 2009, Xiao Bian use the latest version of the Storm video 20 091 to 1 Special Edition. This new version introduced a "1 to 1 media system", also proposed Storm Video "1 on 1" service.






Figure 01

BS, we do not directly tell you how to download a movie can be an important theme of it:)

Step one: Open the Storm video 20 091 to 1 Special Edition, and click the open storm video, the red line as shown in Figure






Figure 02

Then there's Storm video interface Figure 03






Figure 03

Since it is watching movies, then we choose Storm Television's "movie", as shown (for example, like to watch TV, please select "TV" and so on ......)






Figure 04

Continue to choose "Movie Library"






Figure 05

Is shown by the Department of thousands of exciting movie, instrument allows to gradually appreciate the:)

We point to open a movie in which to look at, almost Meisha buffer, so that Xiaobian surprise. PPS's titles than the 15-second ad even faster:)






Figure 06

Screen is very clear

This is just great, do not download movies to your hard drive, you can watch free television dramas and movies of.







Recommand Link:



Ever CD-R OGG RA To MP2 Burner



DIJI Album



Christmas-Idea DVD to Flash SWF



Youtube Video to Laptops Help



News About Computer Education



RMVB



Apple CD-R Music to AMR Ripping



ts to MPG



mp4 3gp video converter



Evaluation Audio Presentation Tools



convert mp3 to AAC



New Communications Tools



RZ DVD COPY



Professional RA APE to M3U Creator