What is this line of code means???

Hi have a general question, I am not sure if it right place to ask. But I will be grateful if some body could help on this one. I could not figure out what is that line of code (**) is doing or what does it mean. I gave sample implementation here.
Public class Decoder{
InputStream in
Public Decoder(InputStream in){
This.in = in;
String st = somefunction(in)
public static Xval decode(InputStream in){
return new Decoder(in).decode(); **
What I don�t understand that what is line of Code do �return new Decoder(in).decode(); � I have never seen this kind of implementation. The return type is Xval but the function is retrunin t object of this (Decoder) type. And what is Decoder(in).decode() when function decode() is doing nothing except returning a object???
Thank you

Apparently, the Decoder class has a method called decode() that returns a Xval object. The line is equivalent toDecoder d =  new Decoder(in);
Xval xv = d.decode();
return xv;

Similar Messages

  • What does this line of code do: ?xml version="1.0" encoding="windows-1252"?

    When I add this code to a new xhtml file and validate for XML I get the following error: Character Encoding mismatch! [XHTML 1.0 Transitional]

    Google says: http://www.w3schools.com/xml/xml_encoding.asp
    If this is of no help, you'll need to give a little more info - like what did you do, the code, why your using a windows encoding etc.

  • Could someone explain what this piece of codes means

    The code section is below there are few things I don't get about this code:
    1:What does all that stuff that the string data equals means
    // Construct data
            String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
            data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");2: The second thing is that I'm wondering what is the URL definining part mean, more specifically what's the 80 for and why is there that cgi line.
    URL url = new URL("http://hostname:80/cgi");This is the full code that I'm getting the questions from
        try {
            // Construct data
            String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
            data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
            // Send data
            URL url = new URL("http://hostname:80/cgi");
            URLConnection conn = url.openConnection();
            conn.setDoOutput(true);
            OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
            wr.write(data);
            wr.flush();
            // Get the response
            BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String line;
            while ((line = rd.readLine()) != null) {
                // Process line...
            wr.close();
            rd.close();
        } catch (Exception e) {
        }

    The code section is below there are few things I
    don't get about this code:
    1:What does all that stuff that the string data
    equals means
    // Construct data
    String data = URLEncoder.encode("key1",
    "UTF-8") + "=" + URLEncoder.encode("value1",
    "UTF-8");
    data += "&" + URLEncoder.encode("key2",
    "UTF-8") + "=" + URLEncoder.encode("value2",
    "UTF-8");
    Looks like data is a query string for an HTTP GET request. It has two key/value pairs encoded as UTF-8.
    : The second thing is that I'm wondering what is the
    URL definining part mean, more specifically what's
    the 80 for and why is there that cgi line.
    URL url = new
    URL("http://hostname:80/cgi");
    The code is making the HTTP GET request to a server named hostname via port 80 to a CGI script that will consume the request and send a response back.
    This is the full code that I'm getting the questions
    from
        try {
    // Construct data
    String data = URLEncoder.encode("key1", "UTF-8") +
    "=" + URLEncoder.encode("value1", "UTF-8");
    data += "&" + URLEncoder.encode("key2",
    "UTF-8") + "=" + URLEncoder.encode("value2",
    "UTF-8");
    // Send data
    URL url = new URL("http://hostname:80/cgi");
    URLConnection conn = url.openConnection();
    conn.setDoOutput(true);
    OutputStreamWriter wr = new
    OutputStreamWriter(conn.getOutputStream());
    wr.write(data);
    wr.flush();
    // Get the response
    BufferedReader rd = new BufferedReader(new
    InputStreamReader(conn.getInputStream()));
    String line;
    while ((line = rd.readLine()) != null) {
    // Process line...
    wr.close();
    rd.close();
    } catch (Exception e) {
    Very bad code. An empty catch block? Terrible.
    %

  • Need help in understanding this line of code...

    Hi,
    I am trying to modify an existing code and I came across this line.
            dorminLabel111.setText("<HTML> <b>18. %(demonstration_problem1_char)% was asked to solve an equation, and %(demonstration_problem1_char)% came up with the following solution, which is incorrect:</b>");I dit not understand how %(demonstration_problem1_char)% is being used. What is it supposed to do? And how can i reference that value?

    JoachimSauer wrote:
    That notation has no inherent meaning in Java, so there's probably some other code that interprets that value later on. Or perhaps before, like some kind of pre-compiler or something related to the build process that replaces those just before compiling?

  • What do the 4 different codes mean?

    Many of these IDS warnings in HH2 security logs in the  last few days, in specifics does anyone know what the different codes mean : i.e  what the { S.A.U.P}  {F.R.P} {F.A..} and {S.ARUP} that appear as the only differences in the attempts mean?.
    Cheers.
    06:11:38  29 Jun
    IDS proto parser : tcp null port (1 of 1) : 115.236.59.28   81.xxxxx    0060 TCP 0->0 [S.A.UP] seq 3029953125 ack 0 win 80
    04:41:27  29 Jun
    IDS proto parser : tcp null port (1 of 1) : 115.236.59.28   81.xxxxxxx    0060 TCP 0->0 [.F.R.P] seq 3029953125 win 80
    03:05:55  29 Jun
    IDS proto parser : tcp null port (1 of 1) : 115.236.59.28   81.xxxxx    0060 TCP 0->0 [.FA...] seq 3029953125 ack 0 win 80
    02:56:43  29 Jun
    IDS proto parser : tcp null port (1 of 1) : 115.236.59.28   81.xxxxxx    0060 TCP 0->0 [S.ARUP] seq 3029953125 ack 0 win 80

    Thanks for the info. That's where I looked but I don't have a Security subheading, though the firewall is active. No problem, just wanted to make sure I hadn't missed something obvious.
    You can click the white star next to this message if you think it was helpful.

  • Why this line of code returns null always??

    Dear All,
    Just a question.
    I have this snippet of code where a user is required to input a number.
    <af:panelGroupLayout layout="vertical" id="pgl1">
      <af:inputText label="number" id="it1"
                        value="#{MyBean.number}" immediate="true"/>
      <af:commandButton text="Submit" id="cb1" partialSubmit="true"
                        immediate="true"
                        actionListener="#{MyBean.handleAction}"/>
    </af:panelGroupLayout>The immediate attribute at both inputtext and button are needed as I am bypassing validation on the other form components.
    Here is my bean defined in request scope.
    public class MyBean
      private String number;
      public void handleAction(ActionEvent actionEvent)
        AdfFacesContext ctx = AdfFacesContext.getCurrentInstance();
        Map<String, Object> pageFlowMap = ctx.getPageFlowScope();
        pageFlowMap.put("number", getNumber());               //Problem line getNumber is always null
      public void setNumber(String number)
        this.number = number;
      public String getNumber()
        return number;
    }I am having problem on the above line. I always get a null value on the number input text.
    Why is that so as I think I have already place a value on my Bean.
    For completeness sake, here's how I defined my managed bean
      <managed-bean id="__12">
        <managed-bean-name id="__9">MyBean</managed-bean-name>
        <managed-bean-class id="__11">com.testing.MyBean</managed-bean-class>
        <managed-bean-scope id="__10">request</managed-bean-scope>
      </managed-bean>Not sure but any workaround to this?
    Thanks
    Jdev 11G PS4

    Mohammad Jabr wrote:
    try to bind your input text to a property in your bean and use getValue() method.
    check this nice post [url http://adfpractice-fedor.blogspot.com/2012/02/understanding-immediate-attribute.html]Understanding the Immediate Attribute
    Edited by: Mohammad Jabr on Feb 22, 2012 8:25 AM
    Hi, Apparently this does work. Putting a binding on the input components.
    But somehow, I am reluctant to make use of any bindings as I am encountering issues when I expose this Taskflow as portlet in a Webcenter Application.
    But, as I have read the article, I made changes with the code. I am not using any bindings but just making use of the valuechangelistener.
    From the article, I have realized that the reason why the setter method of the bean was not called is because the Update Model Values was skipped.
    Very nice article.
    Thanks.

  • Q: what does this VISA session name means?

    I'm using GPIB reading data from two oscilliscopes. When I probe the VISA
    session, I found they are like "GPIB::2 27". I know GPIB::2 means GPIB
    address 2. what does this 27 means?
    thanks!

    This is just an initial guess. Can you look at your application and see if my conjecture could be true?
    I think if you open duplicate VISA sessions to a device (e.g., "GPIB::2"), we append a number to the duplicate sessions. So, perhaps you've opened (with VISA Open and the "duplicate session" input set to TRUE) "GPIB::2" 27 times. (Note that we're talking about LV 6i or later.)
    Normally, you never need more than one session to a single GPIB device, so "duplicate session" should almost always be FALSE.
    If that doesn't apply, then please explain more about what you are doing. Are you using VISA calls yourself, or are you using an instrument driver? Is the instrument driver written in LabVIEW, or does it wrap around a DLL?
    If you were u
    sing "duplicate session" set to TRUE, I'd like to know about why you think (or thought) you needed to set it.
    I hope this helps.

  • What is the meaning of this line of code

    hi
    we have time.xls file
    on file the first
    Time A , B , C
    07:00 07:47 08:48 09:35
    and in java we have
    if (courseType == COURSE_OLD)
                return generateTimes(startingTime, 53, 2 * 60, 2 * 60 + 53, 0);what is coding 's meaning??
    Thank you

    the whole java class in here
    import java.util.Calendar;
    import java.util.Date;
    public class StartingTimeUtils {
        public static int COURSE_OLD = 0;
        public static int COURSE_NEW = 1;
        public static int COURSE_EDEN = 2;
        public static String[] getSummerSixMinute23BallRule(int courseType, Date startingTime, boolean title) {
            if (title) // return titles only
                return commonCourse1(courseType);
            } else {
                if (courseType == COURSE_OLD)
                    return generateTimes(startingTime, 47, 60 + 48, 2 * 60 + 35, 0);
                if (courseType == COURSE_NEW)
                    return generateTimes(startingTime, 60 + 59, 2 * 60 + 47, 0, 0);
                if (courseType == COURSE_EDEN)
                    return generateTimes(startingTime, 24, 60 + 19, 2 * 60 + 30, 3 * 60 + 6);
            return new String[]{"", "", "", ""};
        public static String[] getSummerSevenMinute34BallRule(int courseType, Date startingTime, boolean title) {
            if (title) // return titles only
                return commonCourse1(courseType);
            else
                return commonTime1(courseType, startingTime);
        public static String[] getSummerEightMinuteAnyGame34BallRule(int courseType, Date startingTime, boolean title) {
            if (title) // return titles only
                return commonCourse1(courseType);
            else
                return commonTime1(courseType, startingTime);
        public static String[] getWinterSixMinute23BallRule(int courseType, Date startingTime, boolean title) {
            if (title) // return titles only
                return commonCourse1(courseType);
            else
                return commonTime2(courseType, startingTime);
        public static String[] getWinterSevenMinuteAnyGameRule(int courseType, Date startingTime, boolean title) {
            if (title) // return titles only
                return commonCourse1(courseType);
            else
                return commonTime3(courseType, startingTime);
        public static String[] getWinterEightMinuteAnyGameRule(int courseType, Date startingTime, boolean title) {
            if (title) // return titles only
                return commonCourse1(courseType);
            else
                return commonTime3(courseType, startingTime);
        /* Add each time and return as time string eg 12:55 */
        private static String[] generateTimes(Date startingTime, int i, int j, int k, int l) {
            Calendar cal1 = Calendar.getInstance();
            cal1.setTime(startingTime);
            cal1.add(Calendar.MINUTE, i);
            String time1 = "";
            if (i > 0)
                time1 = StringFormater.formatTime(cal1.getTime());
            Calendar cal2 = Calendar.getInstance();
            cal2.setTime(startingTime);
            cal2.add(Calendar.MINUTE, j);
            String time2 = "";
            if (j > 0)
                time2 = StringFormater.formatTime(cal2.getTime());
            Calendar cal3 = Calendar.getInstance();
            cal3.setTime(startingTime);
            cal3.add(Calendar.MINUTE, k);
            String time3 = "";
            if (k > 0)
                time3 = StringFormater.formatTime(cal3.getTime());
            Calendar cal4 = Calendar.getInstance();
            cal4.setTime(startingTime);
            cal4.add(Calendar.MINUTE, l);
            String time4 = "";
            if (l > 0)
                time4 = StringFormater.formatTime(cal4.getTime());
            return new String[]{time1, time2, time3, time4};
        private static String[] commonTime1(int courseType, Date startingTime) {
            if (courseType == COURSE_OLD)
                return generateTimes(startingTime, 53, 2 * 60, 2 * 60 + 53, 0);
            if (courseType == COURSE_NEW)
                return generateTimes(startingTime, 2 * 60 + 27, 3 * 60 + 6, 0, 0);
            if (courseType == COURSE_EDEN)
                return generateTimes(startingTime, 27, 60 + 30, 2 * 60 + 50, 3 * 60 + 30);
            return new String[]{"", "", "", ""};
        private static String[] commonTime2(int courseType, Date startingTime) {
            if (courseType == COURSE_OLD)
                return generateTimes(startingTime, 46, 60 + 42, 2 * 60 + 28, 0);
            if (courseType == COURSE_NEW)
                return generateTimes(startingTime, 2 * 60 + 5, 2 * 60 + 39, 0, 0);
            if (courseType == COURSE_EDEN)
                return generateTimes(startingTime, 23, 60 + 15, 2 * 60 + 23, 2 * 60 + 58);
            return new String[]{"", "", "", ""};
        private static String[] commonTime3(int courseType, Date startingTime) {
            if (courseType == COURSE_OLD)
                return generateTimes(startingTime, 51, 60 + 55, 2 * 60 + 46, 0);
            if (courseType == COURSE_NEW)
                return generateTimes(startingTime, 2 * 60 + 22, 3 * 60 + 10, 0, 0);
            if (courseType == COURSE_EDEN)
                return generateTimes(startingTime, 26, 60 + 27, 2 * 60 + 43, 3 * 60 + 22);
            return new String[]{"", "", "", ""};
        public static String[] commonCourse1(int courseType) {
            if (courseType == COURSE_OLD)
                return new String[]{"5 Tee", "� House", "14 Tee", ""};
            if (courseType == COURSE_NEW)
                return new String[]{"� House", "15 Tee", "", ""};
            if (courseType == COURSE_EDEN)
                return new String[]{"3 Tee", "7 Tee", "� House", "16 Tee"};
            return new String[]{"", "", "", ""};
    }

  • What does this open directory error mean?

    I am seeing this error in my opendirectory log file and was wondering what it means since I don't use a network to get user information. I am the only one using this mac so I am curious about this and how do I fix it?
    Module: SystemCache - Misconfiguration detected - Failed to insert key '<T>CN=Apple Root CA,OU=Apple Certification Authority,O=Apple Inc.,C=US<S>CN=com.apple.idms.appleid.prd.{really long number here}' for entry '0x7fd18ba00e60' into hash 'X.509DN' as 'non-authoritative'.
    I know that the number that was listed was the certificate number for my gmail account. I have not had any trouble getting my emails or anything.
    Thanks

    The message you quote is part of the "template walkback" in the compiler message. A program might create many instances of a template, including creating them indirectly as part of creating an instance of some other template. An error or warning message about a template is hard to understand unless you know how it came about. So when a compiler emits a warning or error message related to a template instance, it follows the message with "Where" messages showing the sequence of template instances that led to the error. The "Where" line by itself doesn't tell you anything. You need to relate it to the warning or error message that comes before.
    The C++ User's Guide that comes with the compiler has chapters on templates that explains this topic in more detail. Assuming the compiler is installed in /opt/SUNWspro, point your web browser to file:/opt/SUNWspro/docs/index.html and look for the link to the C++ User's Guide.

  • What does this error message even MEAN??

    So as I've been posting on here recently, I'm in the process of upgrading the OS on my old G4 from Panther to Tiger. I've received 2 different suggestions on how to safely do so (the 1st was simply to install Tiger on the 2nd partition of my internal drive, and then designate that one as my boot drive).
    But for the 2nd method, it was suggested that I clone my current boot partition (using something like Carbon Copy Cloner, which I'm attempting), save the clone to my external drive (so I can boot off that if something happens), and then Upgrade my Panther to Tiger on the same partition, so that I can keep all my Preferences, Bookmarks, etc.
    In preparation, I Verified and Repaired Permissions on both the Source Disk and the Target volume--the External Drive, which is actually formatted in Mac OS Standard; the drive I'm cloning is formatted in Mac OS Extended (Journaled)--and had run the "Clone" command, but immediately got this error message:
    "There was an error during correcting volume privileges: chown:/Volumes/Untitled/: operation not supported. Would you like to ignore this error or stop?"
    So I stopped.
    What does that even MEAN? Should I "ignore" it? Or simply skip Cloning the damned drive, install the new OS to the 2nd partition, and designate that one as my boot drive?? I've been worried about Permissions on this computer, as for some reason I can't seem to Verify, or Repair Permissions for the 2nd partition of the internal drive, but for all I know, maybe you're not even supposed to be able to.
    If anyone could help answer either issue though, I'd really appreciate it. I've just been preparing my computer for this upgrade for a day or two, and would really like to go through with it...

    You need to first format the external drive Mac OS Extended (Journaled.) Open Disk Utility, select the external volume from the left side list, click on the Erase tab in the DU main window. Set the format type to Mac OS Extended (Journaled) from the drop down menu, then click on the Erase button.
    Now you should be able to clone your system volume. However, do this first:
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger and Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now shutdown the computer for a couple of minutes and then restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger, and 4.1 for Leopard) and/or TechTool Pro (4.6.1 for Leopard) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.

  • Can someone explain to me how this line of code works?

    My friend put in this code to my game script
    if CollisionDistance < 2 then
    else if "pMushroom" = string(collisionModel).char[8..16] then
    pInfo = member("Info") 
          pInfo.Text = "Press 'F' to consume Mushroom"
    else
    end if
    else
        pInfo = member("Info") 
        pInfo.Text = ""
      end if
    So this is used in my game so that when a ray is less than 2 units away to hits an object named pMushroom, instructions would come up that say "Press 'F' to consume Mushroom" (I'm sure you already knew that though).
    I have a bunch of mushrooms out lebed pMushroom01 - pMushroom09
    I tried to use this for other models like:
    else if "pStick" = string(collisionModel).char[8..16] then
    pInfo = member("Info") 
           pInfo.Text = "Press 'F' to take Stick"
    But the instructions do not pop up. I've checked that I was the right distance away with my collision detection.
    Could someone explain to me the code and what could possibly be wrong?
    "char[8..16]" is what I really don't get.

    collisionModel is most likely a property variable. So "else if "pStick" = string(collisionModel).char[8..16] then" is taking whatever is in that variable, and setting it as a string. Then it is parsing out the characters in that string from character 8 to character 16 and comparing that sub string to the string pStick.
    This works in the first example because "pMushroom" has 9 characters. "pStick" has six characters and so it will never be equal to those characters in collisionModel. You might try:
    else if "pStick" = string(collisionModel).char[8..13] then
    it may work.

  • What is this little AS2 code in AS3?

    Hey guys!
    I got something to embed HTML with it's pics and text and stuff...
    But this is in AS2.0 and I would need it in AS3.0..
    I was checking the AS2.0 migration on Adobe website, but I can't find / don't know some things..
    What I got in AS2.0:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    myLoadVars = new LoadVars();
    myLoadVars.onLoad = function() {
    myText.htmlText = myLoadVars.myHTMLdata;
    myLoadVars.load("myHTML.txt");
    And to where I got by myself (not much AND IF this is correct..):
    function(){return A.apply(null,[this].concat($A(arguments)))}
    import flash.net.URLLoader
    myLoadVars = new URLLoader();
    myLoadVars.onLoad = function() {
    myText.htmlText = myLoadVars.myHTMLdata;
    myLoadVars.load("myHTML.txt");
    Could someone help me with this plz?
    Thanks!

    Hey thanks for the fast answer!
    This is totaly it!
    I forgot something stupid in my own AS3... lol
    BUT when I copy your code, I get a error.. You made a very very very little mistake...
    function(){return A.apply(null,[this].concat($A(arguments)))}
    var myLoader:URLLoader = new URLLoader();
    myLoader.addEventListener(Event.COMPLETE, onLoad)
    myLoader.load(new URLRequest("myHTML.txt"));   ----> That's what you forgot :-)
    function onLoad(e:Event):void
         myText.htmlText = e.target.data;
    Edit yours a bit or something... I'll give you the correct answer thingy :-)
    Thanks very very much! :-)

  • What do authorizationhost validate chain codes mean?

    Hi,
    I am trying to set up PKI based login to my system. While all the stuff works relatively fine, with some smartcards I am getting the following in the secure.log:
    authorizationhost[379]: validate chain started
    authorizationhost[379]: validate chain completed with: 1
    and nothing happens to the login screen.
    I have already figures out that when the root certificate is not trusted you get:
    authorizationhost[379]: validate chain started
    authorizationhost[379]: Certificate could not be verified: 5
    authorizationhost[379]: validate chain completed with: 5
    And when everything is OK, the resulting logs are:
    authorizationhost[379]: validate chain started
    authorizationhost[379]: validate chain completed with: 4
    and the pin code dialog shows up.
    So... what do these codes returned by authorizationhost mean? Especially, what does code 1 mean?
    Cheers,
    Radek

    I also have a similar problem in 10.7.3 and 10.7.4, using opensc and CAC card.
    The CAC card can get unlocked in Keychain Access, but when at the login screen I get
    May 23 08:19:08 mac27 com.apple.SecurityServer[22]: token inserted into reader SCM SCR 3310 00 00
    May 23 08:19:08 mac27 com.apple.SecurityServer[22]: reader SCM SCR 3310 00 00 inserted token "CAC-4070-5072-8400" (CAC-4070-5072-8400) subservice 4 using driver com.apple.tokend.cac
    May 23 08:19:08 mac27 authorizationhost[1091]: validate chain started
    May 23 08:19:11 mac27 authorizationhost[1091]: Certificate could not be verified: 5
    May 23 08:19:11 mac27 authorizationhost[1091]: validate chain completed with: 5
    May 23 08:19:11 mac27 authorizationhost[1091]: validate chain started
    May 23 08:19:11 mac27 authorizationhost[1091]: Certificate could not be verified: 5
    May 23 08:19:11 mac27 authorizationhost[1091]: validate chain completed with: 5
    May 23 08:19:11 mac27 authorizationhost[1091]: validate chain started
    May 23 08:19:11 mac27 authorizationhost[1091]: Certificate could not be verified: 5
    May 23 08:19:11 mac27 authorizationhost[1091]: validate chain completed with: 5
    May 23 08:19:12 mac27 SecurityAgent[1096]: spawn_via_launchd() failed, errno=5 label=[0x0-0x6f06f].com.apple.AppleSpell path=/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell flags=0
    May 23 08:19:12 mac27 SecurityAgent[1096]: spawn_via_launchd() failed, errno=5 label=[0x0-0x70070].com.apple.AppleSpell path=/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell flags=0

  • Anybody know what my hardware test result code means?

    My Macbook Pro 15" has been hanging and crashing a lot lately (just after applecare expired too!), I did a clean install and upgraded to 10.6, did the usual disk first aid (even checked for viruses) and after nothing helped, I finally ran hardware test from the install dvd and received the following error: 4MOT/2/400000004: Left side -3286; I know 4MOT is the logic board, but does anybody have any ideas what the rest means?

    This is the counter-example:
    graphic courtesy Anadtech.com

  • What does this Macbook Pro Model # Mean?...MB133LZ/A

    I just purchased a Macbook Pro off of eBay and have now just noticed that they had the MPN for this laptop listed as MB133LZ/A. After doing some research, is this a computer from outside of the U.S.? If so, will this be a problem for me since I live in the United States? Can anyone explain to me what the model # means and if this laptop will be any different than the ones sold in the U.S. Thanks a lot!

    One of my fellow level 4s appears to believe that LZ indicates it is from a Latin American country. That might indicate a slightly different keyboard, but you can always attach a U.S. keyboard if you find that it is, and Apple menu -> System preferences -> International lets you select the keyboard settings you desire.
    Message was edited by: a brody

Maybe you are looking for

  • Unable to get translation working with XML bursting

    Hi All, I am working on bursting an XML report using the DocumentProcessor API in an EBS environment. The XML publisher report has .xlf translation for Dutch Netherlands (nl-NL). The report works fine when printing through the EBS using the nl-NL loc

  • 80 GB Classic freezing iTunes 9.2

    I finally got around to upgrading to iTunes 9.2 and when I plug my 80 GB iPod Classic into my computer (Windows Vista), iTunes freezes. My iPod says it is connected, but it doesn't show up in iTunes and when I plug it in to iTunes I can't listen to a

  • How to uninstall driver update

    Previous to and on the day of October 13, I successfully scanned 35mm slides until the Epson driver update 2.18 was installed in the background. While the scanner produces regular images, it no longer scans transparencies. How can I rollback the driv

  • Call new URL in same Browser

    Hi @ all, I try to call another WD4A-Application with: lr_window = lr_window_manager->create_external_window( url = lv_url ). The system create a new browser window, but I want to start it in the same browser window (or close the parent window). Have

  • Sound is heavy, muddy on some DL's from Itunes, other sources too!

    I know that the EQ is there. After trying all of the settings on the EQ, I'm not impressed. This has been happening forever (4-5 years) but it finally got my attention. I have encountered a couple of albums that are just too bass-y from the source. I