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