My I-Pod is MESSED UP (Read inside for details)

Well my I-Pod Mini constantly runs out of batteries. I know I don't need a new battery because sometimes it works on particular songs. But after a while those songs mess up. The songs that mess up, after I completely charge my I-pod I will play the song and you can see the battery power drain swiftly. Also the other day I kept on trying to turn my I-Pod on, and it was talking about a game. It said IRON(something) Hit continue Play. I kept pressing the center button and it said different score numbers. I'm pretty sure my I-Pod has I virus. I'm not sure though, if I accidently downloaded a song that was attached with a game file or what. I've been downloading my songs from I-Tunes and Bearshare. Can someone please help? Thanks!
I-Pod Mini   Windows XP  

The first thing you should consider is that the battery has reached the end of it's life, which could be causing your issues.
How old is the mini? Is it still under warranty? If not consider a cheaper (and better) replacement than the one's Apple dish out.
Google 'iPod mini batteries' for some suggestions.
Meanwhile, there's some tips here.
Beef up my iPod battery.
How to accurately determine your iPod battery life.
Can I make the meter more accurate?
Btw, I never said Bearshare itself was illegal. It's what you may use it for (downloading copyrighted material for instance) that is.

Similar Messages

  • Read here for Details regarding the Safari 5.0.1 Update

    New in this update:
    • Safari Extensions
    ◦ Customize Safari with features created by third-party developers
    ◦ Find extensions in the Safari Extensions Gallery, accessible from the Safari menu and extensions.apple.com
    This update also contains improvements to stability, accessibility and security, including the following:
    • More accurate Top Hit results in the Address Field
    • More accurate timing for CSS animations
    • Better stability when using the Safari Reader keyboard shortcut
    • Better stability when scrolling through MobileMe Mail
    • Fixes display of multipage articles from www.rollingstone.com in Safari Reader
    • Fixes an issue that prevented Google Wave and other websites using JavaScript encryption libraries from working correctly on 32-bit systems
    • Fixes an issue that prevented Safari from launching on Leopard systems with network home directories
    • Fixes an issue that could cause borders on YouTube thumbnails to disappear when hovering over the thumbnail image
    • Fixes an issue that could cause Flash content to overlap with other content on www.facebook.com, www.crateandbarrel.com, and other sites when using Flash 10.1
    • Fixes an issue that prevented boarding passes from www.aa.com from printing correctly
    • Fixes an issue that could cause DNS prefetching requests to overburden certain routers
    • Fixes an issue that could cause VoiceOver to misidentify elements of webpages
    For detailed information on the security content of this update, please visit this site: http://support.apple.com/kb/HT1222
    Carolyn

    HI,
    You have CTLoader/Conduit installed that is most likely the causing Safari to crash.
    Open a Finder window. Select MacintoshHD in the Sidebar on the left. Then on the right open the Input Managers Folder and move these files to the Trash.
    CTLoader/ctloader.bundle/Contents/MacOS/ctloader
    Now in that same Library folder open the Application Support folder and move these files to the Trash.
    Plugins/cttoolbar.bundle/Contents/MacOS/ct_plugins
    In the same Library folder open the ScriptingAdditions folder and move these files to the Trash.
    ctscripting.osax/Contents/MacOS/ctscripting
    Relaunch Safari.
    Carolyn

  • How to make a switch loop? ( Read inside for more info.)

    I'm working on a project using switch and I want to know how to make it loop/ or is it possible to do so with for or while. If anyone could help me I'd be very thankfull.
    Since my switch is too long I'll make an example:
    System.out.println();
    System.out.println();
    System.out.println("Zgjedhni operacionin: ");
    System.out.println("1. Mbledhja A + B\n");
    System.out.println("2. Zbritja A - B\n");
    optionNumber = sc.nextInt();
    switch ( optionNumber ) {               
                        case 1: System.out.println("\nMbledhja A + B: ");
                              s11 = (a11+b11);
                              s12 = (a12+b12);
                              s13 = (a13+b13);
                              s21 = (a21+b21);
                              s22 = (a22+b22);
                              s23 = (a23+b23);
                              s31 = (a31+b31);
                              s32 = (a32+b32);
                              s33 = (a33+b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;
                        case 2: System.out.println("\nZbritja A - B: ");
                              s11 = (a11-b11);
                              s12 = (a12-b12);
                              s13 = (a13-b13);
                              s21 = (a21-b21);
                              s22 = (a22-b22);
                              s23 = (a23-b23);
                              s31 = (a31-b31);
                              s32 = (a32-b32);
                              s33 = (a33-b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;I've got the variables declared of course :P so now what I want after doing case 1 or case 2 or any other cases ( 9 in my program) I want to make a question if I want to do another operation and start again from beginning :$/

    Solved it.
    do {
    System.out.println();
    System.out.println();
    System.out.println("Zgjedhni operacionin: ");
    System.out.println("1. Mbledhja A + B\n");
    System.out.println("2. Zbritja A - B\n");
    optionNumber = sc.nextInt();
    switch ( optionNumber ) {               
                        case 1: System.out.println("\nMbledhja A + B: ");
                              s11 = (a11+b11);
                              s12 = (a12+b12);
                              s13 = (a13+b13);
                              s21 = (a21+b21);
                              s22 = (a22+b22);
                              s23 = (a23+b23);
                              s31 = (a31+b31);
                              s32 = (a32+b32);
                              s33 = (a33+b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;
                        case 2: System.out.println("\nZbritja A - B: ");
                              s11 = (a11-b11);
                              s12 = (a12-b12);
                              s13 = (a13-b13);
                              s21 = (a21-b21);
                              s22 = (a22-b22);
                              s23 = (a23-b23);
                              s31 = (a31-b31);
                              s32 = (a32-b32);
                              s33 = (a33-b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;
    System.out.println("Doni te beni edhe nje operacion?: ");
    vazhdo = sc.next().equalsIgnoreCase("PO");
    while ( vazhdo == true);Sorry for double posting can't see an edit button :$

  • How to use two ALV grids in a single program (pl read below for details)?

    Please read thoroughly::
    I have an ALV report using REUSE_ALV_GRID_DISPLAY.
    On the output of this report, when I click on a "change" button, a couple of columns should be made editable.
    I achieved this by modifying the fieldcatalog and triggering the output with another REUSE_ALV_GRID_DISPLAY.
    When I click on the back button of this second report, it is still taking me to the first one.
    How to over come this?
    Note:
    I used custom containers etc but the default buttons on the container are not controllable. I added custom buttons but could not suppress the default ones. So I did not pursue this much even though this is more comfortable to use.
    I am not able to get into the code in debug to see how the default buttons like COPY, INSERT ROW etc are working.
    Can any body throw some inputs into this?
    Thanks,
    Ven.

    >I achieved this by modifying the fieldcatalog and triggering the >output with another REUSE_ALV_GRID_DISPLAY.
    >When I click on the back button of this second report, it is still >taking me to the first one.
    >How to over come this?
    For this there is a solution
    i am thinking you are using user_command and calling the second time ALV Grid if so check this.
    form user_command using r_ucomm type sy-ucomm selfield type slis_selfield.
    case r_ucomm.
    when 'CHANGE'.
    selfield-exit = 'X'.   "use this , this will solve the problem
    "i hope you are calling the Function here
    endform.

  • Anyone looking for a quick paid project (Read on for Details)

    I am a noob to iPhone programming, and am having a hard time making some changes to the TableSearch sample code that Apple provides.
    Here is what I am looking for. If anyone is interested in taking up the project, please let me know
    1) On launch, I would like the tableview to populate itself from the contents of a file at a web URL.
    2) When the user selects an item from the list, the program should open a URL associated with that item (the URLs and items would both be loaded from the file mentioned in #1.)
    I am flexible on how the source file is formatted. .CSV would be fine.
    This is for a free program I am trying to pull together, so my budget isn't big. Nonetheless, it would save me a bunch of time, so I am happy to pay someone to help out.
    Any advice or offers to help would be appreciated.
    --Mike

    ( I am on a Seismic roll...)
    If you look at the Seismic sample app:
    http://developer.apple.com/iphone/library/samplecode/SeismicXML/index.html
    I think you will find a great starting place- it practically does what you are talking about here right out of the box.

  • Download of Premier Elements grt error mess: "Error reading initialization setup file" . Any advice?

    Download of Premier Elements grt error mess: "Error reading initialization setup file" . Any advice?

    Please keep in mind that this is a public forum.  If you need immediate assistance please contact our support team.
    As for your error it sounds like the install files are corrupted.  Please download a new copy of the install files.

  • Can I put Read inside loop?

    Hi Folks
    Can I put Read inside loop?
    Performance wise is it acceptable?
    Regards,
    Sreeram

    Hi
    there is no problem to put READ statement inside the LOOP
    its a better way to put
    to avoid SELECT in a LOOP
    see this example
    i had used that in my program
    in the performance point of view it is a good method
    LOOP AT IT_SOBID INTO WA_SOBID." where otype eq s_otype and objid eq s_objid.
        READ TABLE IT_HRP1026 WITH KEY OBJID = WA_SOBID-SOBID OTYPE = WA_SOBID-SCLAS INTO WA_HRP1026.
        IF SY-SUBRC EQ 0.
          READ TABLE IT_HRP1000 WITH KEY OBJID = WA_SOBID-SOBID INTO WA_HRP1000.
          WA_OUTPUT-OBJID = WA_HRP1026-OBJID.
          WA_OUTPUT-BEGDA = WA_SOBID-BEGDA.
          WA_OUTPUT-ENDDA = WA_SOBID-ENDDA.
          WA_OUTPUT-AEDTM = WA_HRP1026-AEDTM.
          WA_OUTPUT-UNAME = WA_HRP1026-UNAME.
          WA_OUTPUT-STEXT = WA_HRP1000-STEXT.
          READ TABLE IT_REASON WITH KEY CANCR = WA_HRP1026-CANCR INTO WA_REASON.
          WA_OUTPUT-CANCRT = WA_REASON-CANCRT.
          CLEAR WA_REASON-CANCRT.
          READ TABLE IT_LOCATION1 WITH KEY OBJID = WA_HRP1026-OBJID INTO WA_LOCATION1..
          READ TABLE IT_LSTEXT WITH KEY OBJID = WA_LOCATION1-SOBID OTYPE = 'F' INTO WA_LSTEXT.
                 WA_OUTPUT-LSTEXT = WA_LSTEXT-LSTEXT.
                 CLEAR WA_LSTEXT-LSTEXT.
          APPEND WA_OUTPUT TO IT_OUTPUT.
          CLEAR WA_OUTPUT.
          CLEAR WA_OUTPUT-CANCRT.
        ENDIF.
      ENDLOOP.
    <b>Reward if usefull</b>

  • I cant get Fourth Elephant (Insider for SQL Developer)

    hi,guys
    please, help me.
    I want to user insider for sql developer of fourth elephant.
    but I cant access
    http://fourthelephant.com/sqldeveloper/download/
    who used it?
    thanks.

    yes, I see
    I want to know someone downloaded it.
    can anyone share it?

  • Best practice: Using break statement inside for loop

    Hi All,
    Using break statment inside FOR loop is a best practice or not?
    I have given some sample code:
    1. With break statement
    2. With some boolean variable that decide whether to come out of the loop or not.
    for(int i = 0; i < 10; i++){
    if(i == 5){
    break;
    boolean breakForLoop = false;
    for(int i = 0; i < 10 && !breakForLoop; i++){
    if(i == 5){
    breakForLoop = true;
    The example may be a stupid one. But i want to know which one is good?
    Thanks and Regards,
    Ashok kumar B.

    Actually, it's bad practice to use break anywhere other than in conjunction with a switch statement.Presumably, if you favour:
    boolean test = true;
    while (test)
      test = foo && bar;
      if (test)
    }overfor (;;)
      if (! ( foo && bar) ) break;
    }then you also favour
    boolean test = foo && bar;
    if (test)
    }overif (foo && bar)
    }Or can you justify your statement with any example which doesn't cause more complexity, more variables in scope, and multiple assignments and tests?

  • Date Sort inside For Each

    Hi I am trying to date sort inside for each but it is not working i am using below code
    <?for-each:G_3?><?sort:BEG_DT;'ascending';data-type='text'?>BEG_DT END_DT <?end for-each?>
    Can any one please let me know how to solve this?
    Thanks in Advance
    Have a nIce Day.

    depends on the format you have in the BEG_DT, if its not in YYYY-MM-DD, you may see some different order.
    All sorting works well if you use the date in canonical format.
    if you want to force to code., then do this.
    <?sort:concat(substring(BEG_DT,7,4),substring(BEG_DT,1,2),substring(BEG_DT,4,2),'0');'descending';data-type='number'?>

  • User administration - read rights for customizing

    Hello,
    is there s. th. like a only-read-right for the whole customizing img or do I have to get the rights for all the different t-codes inside the img?
    Thanks a lot in advance,
    Hansi

    Hi Mark,
    s.th. like this. The point is I'm new to right management. But there must be s.th. like a profile with which I get the right to see all the transactions related to the img or not? Our admin is saying we have to specify which transactions we need exactly which is quiete annoying. Instead I need a possibility to say: "Give me read-rights for this profile" and I can look after the customizing myself... Is there a way???
    Thanks a lot.
    BR,
    Hansi

  • My daughter's laptop was stolen. It is a MacBook Pro. Is there a chip inside for tracking?

    my daughters laptop was stolen it is a mac book pro. is there a chip inside for tracking?

    ...if your icloud is activated on your macbook pro you should be able to track the ios' GPS location on your iphone (for example the find my iphone app or icloud.com) given the thief tries to turn it on...
    ...Mac’s location is pinpointed through transmitted location data from surrounding WiFi networks. Once found the mac can be remotely wiped or locked. The owner can also trigger a sound or send a message to any registered device through icloud.com. When a Mac is remotely locked with Find My Mac, a 4 digit PIN must be entered to re-gain access to the machine...
    ...you also need to take into account that there's a good possibility it was sold (for quick cash - say craigs for example) illegally. after you report serial and model number it to the local authorities check on your local trader sites...
    ...it would also be a good idea to contact apple and log the report...

  • I want to borrow my wife's iPad for a trip but have access to my iBooks account. If I change her login access will that mess up her books for the future?

    I want to borrow my wife's iPad for a trip but have access to my iBooks account. If I change her login access will that mess up her books for the future?

    I assume that iBooks is limited in the same way that iTunes and the App store are.  That is, you can only change the AppleID associated with a device once every 90 days.
    http://support.apple.com/kb/ht4627
    So if you log out of the iBook store with her AppleID, and use yours, you will have to wait 90 days before she can use her AppleID with that same device again.

  • TS1424 I need a new Battery for my I POD.  I POD will not hold a charge for more than 10 songs.  Model # = M9800LL - Version = 1.4.1

    I need a new Battery for my I POD Touch.  I POD will not hold a charge for more than 10 songs.
    Model = M9800LL
    Version = 1.4.1

    The battery in the iPod is not user-replaceable. Take your iPod to an Apple Store or contact Apple Support and they can arrange replacement.
    http://www.apple.com/support/ipod/service/faq/
    Regards.

  • How do we use if statement in labview?moreover can i use if statement inside for loop?

    how do we use if statement in labview?moreover can i use if statement inside for loop?

    The if statement in LabVIEW is the Case structure. You can find that on the Structures palette right next to the For Loop. If you're still on the same subject about terminating a for loop early, then what you do is enclose your functions inside the loop with a case statment and make one of the case's empty except for one or more constants that you might have to wire. Hopefully, the attached picture will explain what I mean. Also, as I mentioned in one of your other posts, I think this technique is not as good as using a while loop. The array in the attached example is the same size no matter what and you may have to handle stripping extra or invalid elements.
    Attachments:
    For_Loop_with_Case.jpg ‏21 KB

Maybe you are looking for

  • Recovering data from HD ????????

    Hi My HD died on my G5 a few months back I am wondering if it would be possible to recover data from it The situation is this I had the idea that maybe if i start up my G5 whilst pressing T & connecting it up to my Macbook Pro via firewire 800 I migh

  • Error while activating 2LIS_13_VDITM

    Hi All, I have activated the 3.x datasource for 2LIS_13_VDITM from T Code RSDS , activated the infosource etc from the business content. It is fine till here.Now when i try to migrate the data source to 7 flow, it is throwing an error " Internal erro

  • Can't access files with names too long

    I have some files on a Windows formatted external hard drive that have filenames that seem to be too long for OS X to handle. I can't open them, nor can I delete them. I can't even seem to "rm" them from the command line. I know they're there, and no

  • TS1424 100 error? Credit Card Processing down for 4 hours

    Any Clue? Attempting to buy Numbers and Keynote. Getting a 100 error followed by cc processing down. It has been 4 hours ...

  • Error msg: Partner Function SH already exists (only defined once)

    hi, when i am trying to enter two ship to parties for a sold-to party, i am getting this error Partner function SH already exists (only defined once) Message no. F2188 Please advise why i am unable to add ONLY a ship-to party more than once, but i am