Is my friend correct?

hi all:
One of my friend told me that if tag includes another tag, between them there will be a HTML.Tag.IMPLIED. e.g.
<head>
------ here is the HTML.Tag.IMPLIED -----
<title>title</title>
</head>
Is it ture? I ask this question because of parsing of HTML

hi:
Ok, I get the idea. Thanks a lot.
Here is the code I got from my friend:
Please read the comment
public void setTitle(String title) {
try {
String titleHTML = "<title></title>";
Element defaultRoot = getDefaultRootElement();
Element head = getElementByTag(defaultRoot, HTML.Tag.HEAD);
if (head != null) {
// This is the situation I mentioned in the previous post.
// When trying to parse the html document, we might
// encounter this situation. Is it ture????????????
Element pImpl = getElementByTag(head, HTML.Tag.IMPLIED);
if (pImpl != null) {
Element titleElem = getElementByTag(pImpl, HTML.Tag.TITLE);
if (titleElem == null)
insertBeforeEnd(pImpl, titleHTML);
else {
Element body = getElementByTag(defaultRoot, HTML.Tag.BODY);
insertBeforeStart(body, "<head>" + titleHTML + "</head>");
putProperty(Document.TitleProperty, title);
catch (Exception ex) {
ErrorHandler
.errDialog(
"An exception occurred while trying to insert the page title.",
"Page Title", ex.getMessage());
}

Similar Messages

  • Am I over-compressing with DVD Pro??

    Hello,
    I have a large project I've exported from final cut using compressor with two pass encoding. I drop the project into DVD Pro, create my menu, drop in a blank disc and simply hit the burn icon.
    The final product shows artifacts that are not visible in the DVD Pro timeline. A friend suggested that I may be "over-compressing" the file (which may explain the new artifacts) by using compressor and then DVD Pro's "burn" option, which compresses the file again.
    Is my friend correct?
    If so, is there a setting in DVD Pro that allows me to burn the file that Compressor created without addition compression?
    Thanks very much!
    Scott

    Hi Scott,
    DVDSP will encode a video file only if it is not DVD compliant (meaning MPEG-1, MPEG-2, H.264). You can set the encoding prefs in the Preferences window.
    If you encoded your video with compressor as, I assume, an MPEG-2 file, then it won't re-encode it.
    DVDSP's "burn" option simply Builds and Formats your DVD. It has nothing to do with encoding unless you drop a non-compliant file in there, like a Quicktime .mov.
    What type of encoding are you doing with Compressor? That will determine how your file looks.
    I suspect that the file created from FCP and compressor is not DVD compliant and DVDSP is re-encoding it. This would explain why it looks better in the Simulator. It's using your original file, which hasn't been re-encoded.
    Hope this works, Misho

  • Auto Starting up and Shutting down Application Server

    i have problem to starting Application Server automatically on Oracle Linux(unbreakable Linux).
    i had made ias file that contain :
    #! /bin/sh
    ### BEGIN INIT INFO
    # Provides: ias
    # Required-Start: $network $syslog $remote_fs raw
    # Required-Stop:
    # Default-Start: 3 5
    # Default-Stop: 0 1 2 6
    # Description: Start the Oracle iAS
    ### END INIT INFO
    ORACLE_BASE=/oracleAS10g
    ORACLE_HOME=$ORACLE_BASE/product
    ORA_OWNER=oracle
    case "$1" in
    start)
    echo -n "Satring Oracle iAS"
    su - $ORA_OWNER --command="$ORACLE_HOME/dcm/bin/dcmctl start" &
    su - $ORA_OWNER --command="$ORACLE_HOME/opmn/bin/opmnctl startall" &
    su - $ORA_OWNER --command="$ORACLE_HOME/bin/emctl start iasconsole" &
    stop)
    echo -n "Stopping Oracle iAS"
    su - $ORA_OWNER --command="$ORACLE_HOME/dcm/bin/dcmctl shutdown" &
    su - $ORA_OWNER --command="$ORACLE_HOME/opmn/bin/opmnctl stopall" &
    su - $ORA_OWNER --command="$ORACLE_HOME/bin/emctl stop iasconsole" &
    status)
    echo -n "Checking for Oracle iAS"
    su - $ORA_OWNER --command="$ORACLE_HOME/bin/emctl status iasconsole" &
    echo "Usage: $0 {start|stop|status}"
    exit 1
    esac
    then i put ias on /etc/init.d ,
    i made symbolik link in :
    /etc/rc0.d/K10ias
    /etc/rc1.d/K10ias
    /etc/rc2.d/K10ias
    /etc/rc6.d/K10ias
    /etc/rc3.d/S99ias
    /etc/rc5.d/S99ias
    but it doesn't work ! ! !
    who can help me ?

    i and my friend correct the ias file ==>
    #!/bin/bash
    # init file for Oracle iAS
    # Author : Mohsen Aboosaeedi & Mohammad Reza Davoudi, GAM Electronics
    # 1. Add root to dba and oinstall group to function this script properly
    # 2. Create this file in /etc/init.d directory (ias) and use "chkconfig ias on"
    # You can put these and other commands in a single file (startup or shutdown)
    # and use as single command. This example is to make instruction clear.
    # $ORACLE_HOME/dcm/bin/dcmctl startup
    # $ORACLE_HOME/opmn/bin/opmnctl start
    # $ORACLE_HOME/bin/emctl start iasconsole
    ### BEGIN INIT INFO
    # chkconfig: 35 70 20
    # description: Start the Oracle iAS
    ### END INIT INFO
    ORACLE_BASE=/oracleAS10g
    ORACLE_HOME=$ORACLE_BASE/product
    ORA_OWNER=oracle
    start() {
    echo "******* Starting Oracle iAS ************"
    echo "*** Starting dcmctl"
    su - $ORA_OWNER --command="$ORACLE_HOME/dcm/bin/dcmctl start"
    echo "*** Starting opmnctl"
    su - $ORA_OWNER --command="$ORACLE_HOME/opmn/bin/opmnctl startall"
    echo "*** Starting ias console"
    su - $ORA_OWNER --command="$ORACLE_HOME/bin/emctl start iasconsole"
    echo "******* Starting Finshed ************"
    stop() {
    echo "******* Stopping Oracle iAS ************"
    echo "*** Stopping dcmctl"
    su - $ORA_OWNER --command="$ORACLE_HOME/dcm/bin/dcmctl shutdown"
    echo "*** Stopping opmnctl"
    su - $ORA_OWNER --command="$ORACLE_HOME/opmn/bin/opmnctl stopall"
    echo "*** Stopping ias console"
    su - $ORA_OWNER --command="$ORACLE_HOME/bin/emctl stop iasconsole"
    echo "******* Stopping Finshed ************"
    status() {
    echo "***** Checking for Oracle iAS Console"
    su - $ORA_OWNER --command="$ORACLE_HOME/bin/emctl status iasconsole"
    echo "***** Checking for Oracle opmnctl Status"
    su - $ORA_OWNER --command="$ORACLE_HOME/opmn/bin/opmnctl status "
    restart(){
         stop
         start
    case "$1" in
    start)
         start
    stop)
         stop
    restart)
         restart
    status)
    status
         echo $"Usage: $0 {start|stop|status|restart}"
    esac
    exit 1

  • Quite posibly the most unstable device I've ever had the misfortune to use.

    I'm in utter rage at the performance and stability of the iPhone 3G.
    My 8GB model constantly crashes, freezes, music stutters and I am experiencing REGULAR slowdown on the device.
    I gave up a perfectly functioning N95 after having a positive experience with the iPod touch and I finally wanted to have the touch experience with the 3G. How wrong was I to get this phone.
    To top this all off, I know someone who has the same 8GB iPhone 3G and he has told me that his one has never slowed down or crashed.
    After my above rant, is he lying or could I have a faulty device? The old 1.14 software on my iPod touch was rock solid with the odd crash in safari but i never did experience the laggyness as I am on the 3G.
    Am I experiencing the norm with these issues or is my friend correct that the iPhone 3G is as stable as he tells me?
    Thanks for reading,
    Chaz.

    Chaz_UK wrote:
    To top this all off, I know someone who has the same 8GB iPhone 3G and he has told me that his one has never slowed down or crashed.
    After my above rant, is he lying or could I have a faulty device?
    You could have a faulty device. My daughter has the 3G iPhone and says she has no problems and loves it (she is also coming from an iPod Touch). I've had the original iPhone for a bit over a year and have had no problems -- even after upgrading to OS 2.0 on July 11.
    Phil

  • Disaster.

    I have a big problem with my iPod. I was using it in my friend's car and plugged it into the USB port into the car radio to play music. Before this, it was completely fine. Once I plugged it in, it went haywire. It jumped from song to song and did not stop on one for more than thirty seconds. I tried to push play, but none of the songs would play. It would not play a song, and not remain on one for more than half a minute. The battery is almost dead, perhaps that has something to do with it. By plugging it into the car port, it would have charged it. The next morning (today) I reset the settings on the iPod about ten times. That did nothing to improve it's condition. Now, I am docking it to my computer. It is not being recognized by iTunes, or my computer at all. I changed where the dock was plugged in. I moved the connection to a direct port from the computer rather than the keyboard. Still nothing. It is docked, but not charging. The battery is gradually turning green, but the moment I remove it from the dock, it immediately returns to dangerously red. This is all that I have tried other than making sure my iTunes software is up to date. There is not much I can do now. I intended to restore to factory settings, but due to the inability to sync or even have it be recognized by iTunes or my computer. I am in serious need of help, please, any assistance would be very welcome.

    1. There's no easy way to show the full image on your TV. As your friend correctly said, it's a feature of the TV. Probably 99% of all TVs. The part of the image we actually see is called the "TV Safe Area".
    iDVD lets us view the (estimated) portion of the image that will be displayed on the TV. In iDVD, choose View > Show TV Safe Area.
    The only way I know to fix this problem is to create a QuickTime movie that has a black background, with your movie layered on top of it, reduced in size. That requires QuickTime Pro. Essentially, you create a video sandwich, then you export it to a new movie that you import to iDVD.
    It's a bit complicated. There may be instructions posted somewhere. This page at Dan's site describes how to build a sandwich with a still image. It's for an older version of QuickTime Pro but it might help:
    http://danslagle.com/mac/iMovie/tips_tricks/6022.shtml
    2. About the jaggies you see. There's a bug in iMovie HD that adds "jaggies" -- stair-stepping along sharp edges -- to still images when you do ALL of these:
    1. Import a still image to iMovie HD with the Ken Burns Effect checkbox turned OFF.
    2. Export the project to iDVD.
    3. When iMovie HD asks, you grant permission to render before sending the project to iDVD. If you do, iMovie renders (any un-rendered stills) poorly, adding the jaggies.
    To avoid iMovie adding the jaggies, do ANY of the these:
    • Turn on the Ken Burns checkbox before importing the images. (Best solution.) iMovie won't ask to render them later, at least not those clips.
    • When asked, refuse permission to render the images after you share to iDVD. (This may cause OTHER clips to not be rendered that should be rendered.)
    • Drag the iMovie HD project file into the iDVD project window. (This may cause OTHER clips to not be rendered that should be rendered.)
    Once the jaggies have been added to a clip it cannot be fixed. It's necessary to re-import the photo.
    Karl

  • Enabling the non editable fields

    Hello Friends..
    How to enable a non editable field. For example...how to make Personnel area field in IT0001 into a editable field. For some reason..we need this. Is there a way...?
    Kindly help..
    Thank you

    Hi,
    Assignmwnt which you hav don in info typ 0000 (Prsonnl area) will be as non editbl  fild in info typ 1
    i would like suggstest. instead of doing personnel area field editible, met ur requitmet with prsonnel subarea on same info type 1.
    If it is, there will be no problems
    Friends correct me if i am wrong.
    Edited by: MVRmvr on Aug 19, 2010 1:14 PM

  • I'm not sure if I am writing this in the correct area (this is my second attempt at posting a question), but I have a comment about a recent store experience in Sandusky, OH.  I am not a current Verizon customer, but I was visiting friends and we had to g

    I'm not sure if I am writing this in the correct area (this is my second attempt at posting a question), but I have a comment about a recent store experience in Sandusky, OH.  I am not a current Verizon customer, but I was visiting friends and we had to go to the store to get something taken care of.  First off, allow me to compliment the nice, new store.  Boy, its changed over the past few years ago when I was in last. My comment is mostly directed to one specific employee.  When we entered the store, we were "welcomed" by a sloppy dressed gentlemen (his clothes were probably two sizes two small), which really struck me as unusual because every other employee in the store was dressed really "casual" with nice sporty clothing and red shoes.  Either way, after being entered into the computer, the gentlemen told me to wander around or have a seat in the back and someone would be with us soon.  As soon as we walked away from the door, the gentlemen handed his "duty" off to another employee who took over welcoming people coming in.  For whatever reason, I felt glued to him as he stood out to me.  After leaving the door, he immediately went to the back of the room, hunched over a cabinet, where he stood for the next 30+ minutes playing on his phone, frowning and not speaking to anyone around him.  Again, I found this unusual because everyone else was overly friendly and smiling.  I finally decided to walk by and see what he was doing.  It appeared that he was texting someone.  He paid no attention to me whatsoever as I walked by, just continued to frown and text on his phone.  I did take not of his name tag for future reference.  His name was Justin.  I am assuming he's the manager of the location as he was just standing around while everyone else worked.  I do understand that managers aren't necessarily doing the "dirty work" of the employees, but he could have at least found some better fitting clothing (I find it hard to believe Verizon doesn't supply it), been a little friendly, pretended to be busy, and not been texting the entire time we were there.  Again, the store was great, the other employees were very helpful, but the manager seemed to be doing is own little thing and it didn't put off a good image for the rest of the store.  Just wanted to share my comments.

    lisab101,
    We appreciate you reaching out to us. We greatly appreciate the feedback that you have provided us. Please know that we will lift this up to management and the issues will be addressed.
    Thank you,
    RobinD_VZW
    Follow us on twitter @VZWSupport

  • TS1398 On holiday in Spain, my phone wont connect to wi-fi at my friends apartement but connects to some wi-fi locations in the city. The rest it tells me that "Unable to connect" even though i know the password is correct and my ipad connects.

    On holiday in Spain, my phone wont connect to wi-fi at my friends apartment but connects to some wi-fi locations in the city. The rest tells me that " Unable to join the network" even though i know the password is correct and my ipad is connected.
    I have tried resetting network connections and switching on/off wi-fi, and also reset using home and top button, still nothing.

    Try going to the Wifi settings and clicking the little arrow next to your network, and click "forget this network" then try re-connecting. If that doesn't work, try going to settings-general-reset and clicking reset network settings. Also, make sure you have your network password correct if there is one.

  • HT1212 I just bought a new ipod touch from a friend but she didn't reset it and everytime that I try to rest it, it keeps saying "Ipod is disable, connect to Itunes" but I'am connected to Itunes and it also says put in correct passcode?? how do I reset it

    I just bought a new Ipod ios from a friend and she didn't reset it before she gave it to me and when I try to connect it to my laptop it keeps saying "Ipod is disable, connect to itunes"and it says to put in the correct passcode but I don't know what the passcode is and now I can't get ahold of my friend that sold it to me. So my question is: How do I reset the passcode and the Ipod touch so that I can sync it to my laptop and so that I can enjoy my new Ipod Touch?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • For those who have problems RE: My iPhone 4 on connecting to my pc shows my friends name in the DIGITAL camera Drive..It dsiplays my correct name when I`m on iTunes..PLEASE HELP ME HOW DO I CHANGE THE NAME IN THE DIGITAL CAMERA DRIVE??

    For those who have problems RE: My iPhone 4 connecting to my pc shows my friends name in the DIGITAL camera Drive..It dsiplays my correct name when I`m on iTunes..PLEASE HELP ME HOW DO I CHANGE THE NAME IN THE DIGITAL CAMERA DRIVE??
    SOLUTION:
    Iam pointing t0 windows7 os.
    1) go to control panel
    2) open hardware and sound
    3) In that open Devices and printers
    4)In that u can find Apple Iphone.
    5) now right click on this --> Hardware --> Properties --> General --> Uninstall --> ok.
    6) now unplug and plug in ur iphone again.There u go u iphone name changes to its original name.

    I am having this problem.  At first with the new iPhone 5, and then with the iPad 2.  I am not sure why this is happening. 
    My gut feeling is this is an iO6 issue and here's why -
    The problem mainly occurs with apps.  I have about 150 apps, and when I plugged in the phone, iTunes went to sync all of them.  The process would hang up after about 20 - 30 apps were loaded onto the phone. I could tell where about the process hung up because the apps on the phone showed up as "waiting".
    Then on the iPad 2 I plugged in to sync and saw there was a huge "Other" component in my storage.  It required me to restore the iPad 2 from backup.  With this restore the same issues occurred - putting the apps back on the iPad would hang up.  The videos on the iPad also got stuck - maybe after about 10 hours of videos transfered iTunes crashed.
    My solution has been to soft reset the device, restart Windows, and continue the process until it's complete.  This is remarkably inefficient and time-intensive but everything works with patience.
    I have been wondering if others have had these same problems. 

  • My friend cannot view my XML pages correctly, is there a setting he is missing?

    A friend of mine wanted an easy way to create a help page for his program written in Java. He did not want to get into HTML. I wrote an XSl module and an XML where he could add chapters & text. It works fine on my system using FF or even IE. I am on FF V31 as I believe my friend is as well.
    When he clicks on the XML file, he gets a page with everything run togather as if he does not have the XSL file.
    Is there a setting or option I have selected in the far past & forgotten about that allows my FF to display the XML file correctly?

    Hello,
    You can add this to Firefox this will let you see XML files.
    https://addons.mozilla.org/en-US/firefox/addon/xmlutils/

  • HT1212 An elderly friend has given me her iPad to"fix". She has entered passcode incorrectly too many times (I now have the correct passcode).  The ipad is now disabled,has never been connected to a computer .  Can it be opened without loosing what is on

    An elderly friend has given me her iPad to"fix". She has entered passcode incorrectly too many times (I now have the correct passcode).  The ipad is now disabled,has never been connected to a computer .  Can it be opened without loosing what is on it?

    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.htmlhttp://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tbhttp://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Devicehttp://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htmhttp://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    You may have to do this several times.
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just canceling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • IPad not receiving PDFs they are arriving open. Had sender email to a friends iPad, she received correctly. This must be my problem. Never had this happen in past. What can I do, lay terms please, I'm not very technical!

    iPad not receiving PDFs, never had this problem in past. Had sender resend to a friend, she received them in correct format. Help, not very technical lay terms please.

    Unfortunately, most of my advice is in the "hindsight is 20-20" category.
    First off, I would never have purchased the peripheral accessories until the 14 day return period had expired. Second, you learned the hard way what the "14 days" really means.
    Too bad you didn't do any homework, reading this and other forums and tech sites. Even word of mouth from others. That, more than anything could have steered you towards different phone choices from the get-go and I will leave that there with no further comment other than to say most of the issues you described have been discussed in this forum, ad nauseam.
    Once you got into the refurbished phone exchanges, that is where things really went haywire. What someone tells you over the phone is a sketchy proposition, and when it comes down to it, it's your word against theirs.
    I think Verizon tried to make it right, though. Remember, they don't make the phones. Don't throw the baby out with the bathwater.
    You stated yourself you were a satisfied Verizon customer before this. Had the first two phones performed as they should, you would still be a satisfied Verizon customer.
    Doubt any of that will make you any happier, but after you went through the effort of writing such a long post, I thought I'd try.

  • TS4185 Just downloaded FACETIME on my 4yr. olf Imac running Snow Leopard. When making a call to my friend's Imac all works correctly going both ways. When my wife calls me via Facetime from her Ipad, I cannot click on "accept"- not there?

    Just downloaded FACETIME on my 4yr. olf Imac running Snow Leopard. When making a call to my friend's Imac all works correctly going both ways. When my wife calls me via Facetime from her Ipad, I cannot click on "accept"- not there? When called by the Imac (newest), the "accept" or "reject" radio button appears for me to click and connect. On my wife's Ipad the two radio buttons always appear when a call actiivates Facetime and comes on?
    There is nothing I can find in "Preferences" in Facetime to turn that on or off. I suspect it has to do with having a more current operating system; that the "controls" are in the operating system? [I'm guessing] It's frustrating getting Facebook calls from several friends on Ipads! Any ideas...VFP

    I suspect it has to do with not having a more current operating system
    Exactly, what Apple is doing is leveraging new features only on newer OS X versions to force you to upgrade OS X to 10.7 or later.
    What they don't tell you is 10.7 or later will NOT run your PowerPC based software, some of it you can't get Intel versions like for perfectly working printers, scanners and games etc. So it can be a very expensive OS X upgrade to 10.7 or later with third party software.
    http://roaringapps.com/apps:table
    Also they don't tell you is the risk in bricking your machine if the update goes badly, so you have to have AppleCare in case that occurs so it's on them to fix it. Else your paying money to replace the logicboard or buying a new machine prematurely.
    A four year old machine can't have AppleCare, it's only good for 3 years from date of purchase new.
    Your machine came with a boot hard drive, it's usually got about 4-5 years of life on it, then it needs to be replaced.
    Also they don't tell you the newer OS X version has more abilities and features that causes your machine to slow down in performance, especially on older machines.
    Also they implement new, idotic and extremely fustrating new user interface features in a arbitrary "you take it or leave it" manner with little or no fall back method.
    So upgrading OS X is a gamble on older machines that otherwise would likely work perfectly fine for the next 5 years if one didn't need to have to mess with it.
    Since Snow Leopard has slightly over 25% OS X version market share, your still good for security updates etc for the next few years if you just want to stay where your at and be happy.
    OS X 10.4/10.5 need to upgrade, 10.6.8 ok still
    The Lions are, well, not so welcome due to Scott Forstall retard UI issues, OS X Mavericks 10.9 is likely going to fix things a bit better.
    But basically what is occuring is Apple is trying to force a faster hardware upgrade cycle with the more expensive products by leveraging features on the smaller devices that expire sooner.
    Apple is a hardware company that leverages whatever it can to get you to buy more hardware, it's why they are as rich as they are.

  • TS4268 I can call facetime my contact/friend but status says "CONNECTING" but doesnt connect. what should be done to overcome/correct it. Help is appreciated.

    I can call facetime my contact/friend but status says "CONNECTING" but doesnt connect. what should be done to overcome/correct it.
    I have tried logginf off my account and sign in after restarting my iphone. But it still doesnt help !! Any suggestion/Help is appreciated. Many thanks

    Judging by all the posts on the forum, there seems to be an issue at Apple's end, although they have made no announcement on their status page. Some users have reported that Apple is aware of the issue.
    http://www.apple.com/support/systemstatus/

Maybe you are looking for

  • Error while creating class

    Error while creating class java/util/LinkedHashMap$EntryIterator ORA-29545: badly formed class: User has attempted to load a class (java.util .LinkedHashMap$EntryIterator) into a restricted package. Permission can be grant ed using dbms_java.grant_pe

  • How can I get a single ID for all accounts?

    My migration from Mobile.me to iCloud has been a exercise in frustration. I log into the Apple site with a .me address, my apple id is a .mac address. I log into iTunes with a different id and password.  If I buy an app on the iPhone it won't sync to

  • How to join the AP to the WLC

    Hi All, I am new to Cisco wireless solution and would like to ask how to add the AP to the WLC properly. All Cisco 1041 and Cisco 2500 WLC are new. I connect those AP and WLC to the switch without any VLAN tag and the AP can gain the IP address from

  • ASMLib for Fedora 4

    Hi, Did anyone installed ASMLib on Fedora 4 linux. From what i read, is that Fedora is using kernel 2.6.11..... The drivers on OTN are for 2.6.9... Regards, Frank

  • Download Logic to Windows PC and transfer to MAC

    I have purchased Logic Pro 10 and I need to download again as there was a problem with the system it was downloaded on and I had to wipe it.  I have now fixed the system but I do not want to connect it to the Internet as it has to be a super secure s