Email to music app, looking for guidance

Hello!
I am very new to working with the iPhone SDK, xcode, and objective C. Most of the stuff I do is physical computing. Anyway, I'm working on a really simple media player that would interface with an iPhone. I'd like to use the iPod and Web capabilities of the iPhone as a media provider. In essence, the program checks a gmail account for new messages that contain song or artist requests, search the iPod library for them, and adds them to a playing playlist. So the program would run something like this:
Play Playlist X
Check gmail for new messages
If there are new messages check subject against variable Y
If subject matches variable Y use email message contents (a song or artist name) to search iPod library
If email message matches a song or artist add it to Playlist X
Repeat
So I think the music searching and playing should be fairly straight forward given the AddMusic sample code, but the Check Gmail is catching me up. I've found a PHP and Python API online, but nothing about doing this on the iPhone. Would it be easier to use a generic POP / IMAP API? Is something like this even possible?
Thanks for any advice, pointers, or tips you can give!
Matthew

mbmosher8 wrote:
Ah, now copyright law is something I am familiar with, and there is no way that playing music I own on a device I own would be a copyright violation. No one is sending the device files, just text.
Ah, I misunderstood.
I can't write the exact code for you, because I don't know how to, but I would start like this:
1. Access the user's music library (I'm assuming that it'll return an NSArray or NSDictionary, or some other searchable set/collection).
2. Grab the data from the email (Maybe have the names be comma-separated, and so the "read" command, whichever you choose to use, would loop and stop itself when it gets to the comma + whitespace)
3. Search the music library, based on the data from part 2 using the Spotlight APIs
4. Create a playlist (no idea how to do this).

Similar Messages

  • I can not get apple air play to work. I have down loaded three diffrent apps looking for a solution none of them were the right one. I spent over $10 in these apps. Can I get a refund. Do I need apple tv to run air play?

    I can not get apple air play to run from my iTunes to my WiFi reciever.
    I have spent money on 3 different apps looking for a solution.
    None have worked. Can I get a refund?
    Do I need apple Tv to work Air Play?

    About AirPlay and Airplay Mirroring
    AirPlay Mirroring requires a second-generation Apple TV or later, and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). For non-qualifying Macs you can try using Air Parrot.
    Several Apple Articles Regarding AirPlay
    Apple TV (2nd and 3rd gen)- How to use AirPlay Mirroring
    How to set up and configure AirPort Express for AirPlay and iTunes
    iTunes- Troubleshooting AirPlay and AirPlay Mirroring
    iTunes- Using AirPlay
    Apple TV (2nd and 3rd gen)- Understanding AirPlay settings
    About AirPlay Mirroring in OS X Mountain Lion
    iTunes 10- About playing music with AirPlay
    Troubleshooting AirPlay and AirPlay Mirroring
    Using AirPlay
    Thanks to the $15 Beamer, AirPlay streaming is still possible on Macs  that do not support Airplay and mirroring.
    Other solutions are the Air Parrot, StreamToMe, and AirServer.

  • [Solved] System fully up-to-date, apps look for old libs

    Even though the system is fully updated from a fresh mirror, apps look for older libs: e.g. irssi and wget look for libssl.so.0.9.8, building wget with makepkg wants libgmp.so.3 (the latest is 10). ldd run on said apps returns the newer lib versions, e.g. "libssl.so.1.0.0 => /usr/lib/libssl.so.1.0.0".  The newer libs are present in /usr/lib/. I've reinstalled the whole toolchain, problematic libs and apps. I've removed ld.so.cache and run ldconfig - it shows libssl.so.1.0.0, not libssl.0.9.8 too.
    I have no idea why apps still want older libs. Any ideas will be appreciated.
    -edit-
    Fixed the typo.
    Last edited by lucke (2010-04-25 16:33:35)

    liticovjesac wrote:I have the same problem with eina-audio-player.
    Since you got it from aur, you have to rebuild it yourself.

  • Making an Arch Linux wiki-reader Android app - Looking for some advice

    Hey guys, hopefully this is an ok place to post this. I've just finished a beginning Java course and I'm starting on the next one. I'm learning Java with the intention of creating Android applications as a hobby. Since I've found myself accessing the wiki from my phone on many occasions, and this doesn't seem overly difficult, I think this is a good place to start.
    I've been playing with this idea for a couple of weeks and I'm trying to determine the best way to approach this. I'm looking for any pointers/advice from a development standpoint and any (potential) user feedback as well.
    So far, with the help of other Archers, I have come up with the following three options:
    1) Obvious choice- Connect to the actual wiki online
    Pros:
    +Always up to date
    +Small application size
    Cons:
    -More difficult to strip current style and "mobilize" layout (there is a lot of clutter and links to outside of the wiki)
    -More permissions that other choices
    -Requires internet connection
    2) Use the arch-wiki-docs package
    Pros:
    +Offline
    +Easier to add css styles
    +Hopefully would require zero permissions
    Cons:
    -Application would be large ~40MB (Maybe it could be reduced by removing non-english languages?)
    -Not up to date, but pretty close
    3) Use the arch-wiki-lite package
    Pros:
    +Offline
    +Small application size
    +Hopefully would require zero permission
    +More of a native android application feel instead of a dedicated webpage reader
    Cons:
    -No links to other pages
    -Would need to create style/layout from scratch
    -Not really sure how this would work (Searching, etc)
    -Not up to date, but pretty close
    Right now I'm leaning towards the second option, but only if I can figure out an automated way to strip down the html pages and remove the non-english pages. I'm thinking that I'll start with an English only version, then add international support (or a second version) later on if people want it. What are your thoughts?

    Thanks for the response!
    rickeyski wrote: 1. Any app you make will require you to generate your own layouts android uses xml layouts there are webviews, which provide some of this functionality if you need to use html, however this will require online access.
    The arch-wiki-docs package is in HTML and I'm using WebView to read it locally. The arch-wiki-lite package is a text file. Maybe I could import it into a database? Either way, using that package will require me to create the whole layout.
    rickeyski wrote:  2 you could use a wrapper like phonegap, but that would me writing everything in html, css, javascript and you will use virtually none of your java.
    I've used Titanium Studio before, which I think is pretty similar to Phonegap, but I do want to make this one with Java.
    rickeyski wrote: 3. 40 mb is a huge app, granted its before compression, but its also before all of your code and layouts to make it work.. You would be limiting yourself to only the newest androids, don't know which phone you have in mind, but might not be a problem for you.
    40MB is the compressed size. The html docs are over 100MB uncompressed. I think I could significantly reduce the size by removing the non-english pages, but I can't figure out a systematic way to find them. There are 3551 pages and they use names like 00000965.html, 00000967.html, 00000968.html, 00000974.html, etc. (Of those 967 isn't english, but the other three are.)
    rickeyski wrote: 4. the biggest plus is the android docs and examples apps are very good, start reading.
    Yup. I've been reading through those a lot. They are a big help.
    Last edited by ioos (2012-02-11 23:11:05)

  • Mac email account wont stop looking for new mails.

    Just recently and out of the bloom my .mac email account started acting up doing two things:
    1. It fails to receive some emails (I get some, but other I just don't. It appears to be random). I've had several people tell me they've emailed be but I've have nothing in my inbox, neither on my mac nor on mobileme.
    2. The same .mac (just to clarify I have a @mac.com account not @me.com) account does not stop looking for new emails. That little circles that goes around when you hit the get mail button; it wont stop circling.
    I've deleted the account from my computer twice and both problems are still occurring.
    This started just last week. I've never had any problem before that. I'm not running out of allocated space; I've already checked that.
    Please Help. Bothe problems are pretty annoying (specially not getting emails.

    playadelcarmen wrote:
    2. The same .mac (just to clarify I have a @mac.com account not @me.com) account does not stop looking for new emails. That little circles that goes around when you hit the get mail button; it wont stop circling.
    Just to clarify the point. You do have a .me account. The .mac is just an alias now for .me
    Maybe you should set up the account as [email protected] and see if that improves the reliablity.

  • DIY'er looking for guidance with 1st major Stereo Install

    Ok. So i've just bought this 05 GMC Envoy XUV. It's got the Bose stero with touch screen DVD based navigation. It sucks. Bad. There is no current Navigation DVD. It's a single disc system, so even if i had a new NAV CD I would have to remove it to listen to a CD. It just sucks. So I want to replace it. I'm looking to go with a double din touchscreen unit. I want one that has bluetooth, USB, Aux, CD/MP3 and is XM ready. Something that will work with my Iphone or my wife's Android. Something that is compatible with the Bose system, keeps my Onstar and my steering wheel controls and that won't interfere with the chime and warning systes. My local installer wants almost $800 bucks to put int a $300 unit. Seems a little steep. So, I want to do it myself. I'm a very capable mechanic and electirician but i've not had alot of experience with stero systems. So what i'm looking for is advice on what type of equipment i should be looking at. Maybe brand or model suggestions. Even a handy dandy how to guide would be nice. So. Any experts out there willing to let me bend their ear?

    dash kit: 99-2003 $12.99
    harness: GMOS-04 $99.99
    antenna adapter: 40-gm10 $10.99
    Steering wheel control: ASWC $53.99
    TOTAL: $180.96
    INDASH DVD LABOR: $99.99
    STEERING WHEEL CONTROL LABOR: $59.99
    TOTAL W/INSTALLATION: $340.94
    add in your 300 dollar radio and you are at $640.94 before tax, saving your $160 compared to your local installer. 
    those are the parts that you are looking at to complete that installation without losing any of your safety chimes for your vehicle.  unfortunately since we offer the service here in our stores no-one will be able to give you any information on how to do the installation, or tips/tricks. iour workmanship is covered for the lifetime of the vehicle along with a timely installation taking around 2 hours, and peace of mind knowing that if anything were to go wrong than any best buy in the NATION will be able to assist you.   Hope this helps you out,  if you have any further questions please do not hesitate to let me know! thanks for the question and welcome to the community!
    I am a CAR Geek Squad installer tech lead, but my views that i post are my own and not that of best buy. if you like my posts give me some kudos, if you need further help contact your local Geek Squad installation bay!
    Please read my posts with a smile, cause thats how I write them.Although i have a cool avatar by my name, I am just a member of the community that works for Best Buy.
    ***KNOW THAT I CANNOT ISSUE OFFICIAL RESPONSES AND THAT MY POSTS ARE ONLY HERE TO HELP BEFORE A OFFICAL RESPONSE IS MADE BY A MODERATOR.***

  • VS 2010 app looking for CR Runtime v 11.5.3700

    Someone at my company developed a piece of simple C# console app code (below) to create .rpt files in a folder to be emailed later.
    They did this work on a machine with Visual Studio 2010 and Crystal Reports v 11.5. The created application will be installed on our client's Windows Server 2008 R2 machine.
    ReportDocument doc = new ReportDocument();
    doc.Load(DOC_PATH);
    CrystalReportExtensions.ApplyCredentialsFromConnectionString(doc, Con);
    CrystalReportExtensions.ApplyCustomParameter(doc, string.Format("[Table Name].DOC_ID={0}", DOC_ID));
    doc.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, EXPORT_FILE);
    When I run the application on the Windows 2008 R2 Server, it doesn't work because it cannot find the correct version of the Crystal Reports Engine, so it throws that error. In fact, when I look under C:\Windows\Assembly on the server, I see that it does not have any version of Crystal assemblies installed.
    So, I tried to find the correct runtime to install so that the application could create the .rpt files and everything would work, but I cannot find the correct version. I have found 10.2, 10.5, 13.0, and many other things that wouldn't even begin to install. The phone support for Crystal is not equipped to handle these types of questions. They can only provide general knowledge and links to downloads for runtimes, which are often incorrect or not useful.
    What do I need to do to get this to work?
    1. Is there indeed a CR runtime for v 11.5.3700?
    2. If not, then what can I do to install another runtime and reset the VS references to that version?

    The use of the version 11.5 runtime with VS 2013 is NOT supported.  Here's what needs to happen:
    1.  The developer needs to download the latest version of the Crystal for VS install executable here:  http://scn.sap.com/docs/DOC-7824.  You'll also need one of the runtime installs from this page for the machine where the application will be deployed.
    2.  The application needs to be set to reference the version 13.x Crystal assemblies instead of the 11.5.x version.  Then it needs to be recompiled.
    3.  The appropriate version of one of the Crystal for VS runtime installs needs to be installed on the machine where the application will run.
    -Dell

  • Looking for guidance to fix my VERY SLOW imac/osx mavericks

    I installed Mavericks many months ago and was disappointed in how it just crippled my system. To date I've just muddled through.   I've tried cleaning out some programs, but I'm not sure what I should keep and what I should ditch. I'm not also sure how much space I have or need for the programs I run.  I just started using Adobe Creative Suite and those programs are very very difficult to work with - in any kind of timely manner. (which I need to do for my work) so I'm default to working on a PC (where I also have it installed)
    I ran the etracheck that's been recommended in other discussions:  Below is the result.  Any  help would be much appreciated. Thanks.
    EtreCheck version: 1.9.15 (52)
    Report generated September 4, 2014 at 6:37:19 PM EDT
    Hardware Information: ?
      iMac (27-inch, Mid 2010) (Verified)
      iMac - model: iMac11,3
      1 3.2 GHz Intel Core i3 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      ATI Radeon HD 5670 - VRAM: 512 MB
      iMac 2560 x 1440
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 4 days 8:31:25
    Disk Information: ?
      APPLE HDD HUA722010CLA330 disk0 : (1 TB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 999.35 GB (318.14 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      OPTIARC DVD RW AD-5680H
      S.M.A.R.T. Status: Verified
    USB Information: ?
      Apple Internal Memory Card Reader
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Western Digital My Passport 0746 1 TB
      S.M.A.R.T. Status: Verified
      disk2s1 (disk2s1) <not mounted>: 32 KB
      disk2s2 (disk2s2) <not mounted>: 29 KB
      disk2s3 (disk2s3) <not mounted>: 29 KB
      disk2s4 (disk2s4) <not mounted>: 29 KB
      disk2s5 (disk2s5) <not mounted>: 29 KB
      disk2s6 (disk2s6) <not mounted>: 262 KB
      disk2s7 (disk2s7) <not mounted>: 262 KB
      disk2s8 (disk2s8) <not mounted>: 262 KB
      HD1_Lora (disk2s10) /Volumes/HD1_Lora: 1 TB (467.04 GB free)
      Apple Computer, Inc. IR Receiver
      Apple Inc. Built-in iSight
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.Belcarra.iokit.USBLAN_netpart (2.0.2) Support
      [not loaded] com.Belcarra.iokit.USBLAN_usbpart (2.0.2) Support
      [not loaded] com.RemoteControl.USBLAN.panther (1.6.1) Support
      [not loaded] com.RemoteControl.USBLAN.usbpart (2.0.6) Support
      [not loaded] com.belcarra.iokit.netpart.panther (1.6.1) Support
      [not loaded] com.belcarra.iokit.usbpart.panther (1.6.1) Support
      [loaded] com.sophos.kext.sav (9.0.61 - SDK 10.7) Support
      [loaded] com.sophos.nke.swi (9.0.53 - SDK 10.8) Support
      [loaded] com.techsmith.TACC (1.0.2 - SDK 10.8) Support
      [not loaded] com.wacom.kext.wacomtablet (6.1.5) Support
      [not loaded] com.wdc.driver.1394HP (1.0.11 - SDK 10.4) Support
      [not loaded] com.wdc.driver.1394_64HP (1.0.1 - SDK 10.6) Support
      [not loaded] com.wdc.driver.USBHP (1.0.11) Support
      [loaded] com.wdc.driver.USB_64HP (1.0.0 - SDK 10.6) Support
    Startup Items: ?
      HP IO: Path: /Library/StartupItems/HP IO
    Problem System Launch Daemons: ?
      [failed] com.apple.wdhelper.plist
    Launch Daemons: ?
      [running] com.adobe.ARM.[...].plist Support
      [loaded] com.adobe.fpsaud.plist Support
      [not loaded] com.adobe.SwitchBoard.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
      [invalid] com.oracle.java.Helper-Tool.plist
      [running] com.sophos.autoupdate.plist Support
      [running] com.sophos.configuration.plist Support
      [running] com.sophos.intercheck.plist Support
      [running] com.sophos.notification.plist Support
      [running] com.sophos.scan.plist Support
      [running] com.sophos.sxld.plist Support
      [running] com.sophos.webd.plist Support
      [failed] com.vmware.launchd.vmware.plist Support
    Launch Agents: ?
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.adobe.AdobeCreativeCloud.plist Support
      [loaded] com.adobe.CS5ServiceManager.plist Support
      [loaded] com.hp.messagecenter.launcher.plist Support
      [invalid] com.oracle.java.Java-Updater.plist
      [running] com.sophos.uiserver.plist Support
      [running] com.wacom.wacomtablet.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.akamai.single-user-client.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
      [running] com.spotify.webhelper.plist Support
    User Login Items: ?
      Garmin Express Service
      Monotype SkyFonts
      Dropbox
      HP Scheduler
    Internet Plug-ins: ?
      WacomNetscape: Version: 1.1.0-5 Support
      Google Earth Web Plug-in: Version: 6.0 Support
      Default Browser: Version: 537 - SDK 10.9
      OfficeLiveBrowserPlugin: Version: 12.3.6 Support
      WacomSafari: Version: 1.1.0-5 Support
      AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 Support
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
      QuickTime Plugin: Version: 7.7.3
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
      GarminGpsControl: Version: 4.1.0.0 Release - SDK 10.7 Support
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    Safari Extensions: ?
      iSkyDeluxe
      Searchme
      Amazon Shopping Assistant
      Ebay Shopping Assistant
      Slick Savings
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins ?
      Picasa: Version: 1.0 - SDK 10.4 Support
      Google Earth Web Plug-in: Version: 7.1 Support
    3rd Party Preference Panes: ?
      Akamai NetSession Preferences  Support
      Flash Player  Support
      Growl  Support
      MacFUSE  Support
      WacomTablet  Support
    Time Machine: ?
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Macintosh HD: Disk size: 930.71 GB Disk used: 634.42 GB
      Destinations:
      My Passport for Mac [Network] (Last used)
      Total size: 2 TB
      Total number of backups: 53
      Oldest backup: 2013-10-29 03:57:03 +0000
      Last backup: 2014-04-22 09:31:43 +0000
      Size of backup disk: Too small
      Backup size 2 TB < (Disk used 634.42 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU: ?
          2% WindowServer
          0% Core Sync
          0% Creative Cloud
          0% InterCheck
          0% Garmin Express
    Top Processes by Memory: ?
      147 MB Finder
      139 MB Mail
      102 MB Google Chrome
      98 MB InterCheck
      98 MB WindowServer
    Virtual Memory Information: ?
      126 MB Free RAM
      1.00 GB Active RAM
      872 MB Inactive RAM
      629 MB Wired RAM
      17.78 GB Page-ins
      645 MB Page-outs

    You need to completely uninstall everything Sophos. It is not needed on OS X and can negatively impact proper OS X operation and performance
    http://www.sophos.com/en-us/support/knowledgebase/119182.aspx
    You also need to completely unistall CleanMyMac2. Macpaw's uninstaller is garbage. Search for and Download and install an app called FindAnyFile and use this to search for a delete files with the names CleanMyMac2 and MacPaw to completely rid yourself of the piece of paid "garbageware".
    FIndAnyFile
    http://apps.tempel.org/FindAnyFile/
    Apps like MacKeeper or any other maintenance apps like CleanMyMac 1 or 2, TuneUpMyMac, MacCleanse or anything like these apps, installed on your Mac, while they appear to be helpful, can do too good a job of data "cleanup" causing the potential to do serious data corruption or data deletion and render a perfectly running OS completely dead and useless leaving you with a frozen, non-functional Mac.
    Plus, these type of apps aren't really necessary OR needed. They really aren't.
    There are manual methods to clear off unnecessary data off of your Mac that are safer and you have complete control over your Mac and not just leave a piece of auto cleaning software in charge of clearing off data off of your Mac. Their potential of causing OS X issues outweighs the implied good and benefits these types of hard drive or memory "cleaning" apps are written to do.
    These types of  system 'cleaning" apps are very poorly written and are really a scam to rob newbie and novice Mac users of their hard earned cash for a poorly written maintenance program that will do much more harm to a perfectly normal running OS X system than the good that the app developers purport these types of apps will do.
    Plus, the software companies that write these apps make it hard to easily uninstall these apps if something DOES go wrong and these apps work in a way where you have no recovery or revert function to return your Mac back to its former, working state in the event something does go wrong.
    It is best to never, EVER download and install these types of apps.
    The risk to your system and important data is too great a risk!
    Here are some general tips to keep your Mac's hard drive trim and slim as possible
    You should never, EVER let a conputer hard drive get completely full, EVER!
    With Macs and OS X, you shouldn't let the hard drive get below 15 GBs or less of free data space.
    If it does, it's time for some hard drive housecleaning.
    Follow some of my tips for cleaning out, deleting and archiving data from your Mac's internal hard drive.
    Have you emptied your Mac's Trash icon in the Dock?
    If you use iPhoto or Aperture, both have its own trash that needs to be emptied, also.
    If you store images in other locations other than iPhoto, then you will have to weed through these to determine what to archive and what to delete.
    If you are an iMovie or Final Cut user, both have its own individual Trash location that needs to be emptied, too!
    If you use Apple Mail app, Apple Mail also has its own trash area that needs to be emptied, too!
    Delete any old or no longer needed emails and/or archive to disc, flash drives or external hard drive, older emails you want to save.
    Look through your other Mailboxes and other Mail categories to see If there is other mail you can archive and/or delete.
    STAY AWAY FROM DELETING ANY FILES FROM OS X SYSTEM FOLDER!
    Look through your Documents folder and delete any type of old useless type files like "Read Me" type files.
    Again, archive to disc, flash drives, ext. hard drives or delete any old documents you no longer use or immediately need.
    Look in your Applications folder, if you have applications you haven't used in a long time, if the app doesn't have a dedicated uninstaller, then you can simply drag it into the OS X Trash icon. IF the application has an uninstaller app, then use it to completely delete the app from your Mac.
    To find other large files, download an app called Omni Disk Sweeper.
    http://www.omnigroup.com/more
    Download an app called OnyX for your version of OS X.
    http://www.titanium.free.fr/downloadonyx.php
    When you install and launch it, let it do its initial automatic tests, then go to the cleaning and maintenance tabs and run the maintenance tabs that let OnyX clean out all web browser cache files, web browser histories, system cache files, delete old error log files.
    Typically, iTunes and iPhoto libraries are the biggest users of HD space.
    move these files/data off of your internal drive to the external hard drive and deleted off of the internal hard drive.
    If you have any other large folders of personal data or projects, these should be archived or moved, also, to the optical discs, flash drives or external hard drive and then either archived to disc and/or deleted off your internal hard drive.
    Moving iTunes library
    http://support.apple.com/kb/HT1449
    Moving iPhoto library
    http://support.apple.com/kb/PH2506
    Moving iMovie projects folder
    http://support.apple.com/kb/ph2289
    Good Luck!

  • My ipod touch 3rd gen freezes when using the itunes app looking for podcasts

    When looking at podcasts with my Ipod touch's itunes app, when i attempt to download podcasts from the nerdist podcast, the itunes app freezes and shuts me out for a minute or two. This only happens on some podcasts but not all.

    Okay so, with some patience and some tinkering... It appears to be a problem with the most popular podcasts.  Maybe something to do with so many people downloading it at the same time?  Anyway, I've found you just have to wait it out.  Keep your itouch active and from going to sleep and eventually it will load the podcasts and you will be able to download them.  On average it takes me anywhere from 2 to 8 minutes to get my most popular podcasts, I just keep it on the screen and keep it from going to sleep

  • Looking For Guidance: Best Practices for Source Control of Database Assets

    Database Version: 11.2.0.3
    OS: RHEL 6.2
    Source Control: subversion
    This is a general question aimed at database professionals, however, it is not specific to any oracle version, etc.  Its a leadership question for other Oracle shops regarding source control.
    The current trunk, in my client's source control, is the implementation of a previous employee who used ER Studio.  After walking the batch scripts and subordinate files , it was determined that there would be no formal or elegant way to recreate the current version of the database from our source control - the engineers who have contributed to these assets are no longer employed or available for consulting.  The batch scripts are stale, if you will.
    To clean this up and to leverage best practices, I need some guidance on whether or not to baseline the current repository and how to move forward with additions of assets; tables, procs, pkgs, etc.  I'm really interested in how larger oracle shops organize their repository - what directories do you use, how are they labeled...are they labeled with respect to version?
    Assumptions:
    1. repository (database assets only) needs to be baselined (?)
    2. I have approval to change this database directory under the trunk to support best practices and get the client steered straight in terms of recovery and
    Knowns:
    1. the current application version in the database is 5.11.0 (that's my client's application version)
    2. this is for one schema/user of a database (other schemas under the database belong to different trunks)
    This is the layout that we currently have and for the privacy of the
    client I've made this rather generic.  I'd love to have a fresh
    start...how do I go about doing that...initially, I like using
    SqlDeveloper's ability to create sql scripts from a connected target. 
    product_name
      |_trunk
         |_database
           |_config
           |_data
           |_database
           |_integration
           |_patch
           |   |_5.2A.2
           |   |_5.2A.4
           |   |_5.3.0
           |   |_5.3.1
           |
           |_scripts
           |   |_config
           |   |_logs
           |
           |_server
    Thank you in advance.

    HiWe are using Data ONTAP 8.2.3p3 on our FAS8020 in 7-mode and we have 2 aggregates, a SATA and SAS aggregate. I want to decommission the SATA aggregate as I want to move that tray to another site. If I have a flexvol containing 3 qtrees CIFS shares can I use data motion (vol copy) to move the flex vol on the same controller but to a different aggregate without major downtime? I know this article is old and it says here that CIFS are not supported however I am reading mix message that on the version of data ONTAP we are now on does support CIFS and data motion however there will be a small downtime with the CIFS share terminating. Is this correct? Thanks

  • Free Apps looking for VPP in Apple Config

    We have a small cart of iPads that were managed by iTunes in the past (creating a master/back up) but now we have Apple Configurator (AC).  Our media specialist dowloaded apps that were free back then but as of today are paid apps.  When he tries adding them to AC it is prompting him for VPP codes. He is using the same Apple ID that he used before.  Any way around this? 

    Unfortunately I don't think there is a way around this I saw a post a few days ago from gyrhead who said this: Configurator communicates with the store in regards to paid apps and VPP codes.  Even if you were able to deploy them on the day they were free the next time you went through a preparation or supervision cycle they would not install.

  • I signed into facetime on my ipad but it says it cant verify my email... i looked for the verifing email but it wasnt in my mail box

    i signed into facetime on my ipad but it says it cant verify my email... it said that they sent a message to my email but it wasnt in my mailbox

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
     Cheers, Tom

  • I am trying to set up icloud on my new device. However it keeps showing hte message account not verified, check your email. I have tried looking for email there is nothing. How do I set this up?

    I am trying to set up icloud on my new device. However it keeps showing the message - account not verified, check your email. I have looked for email and there is nothing. How do I set this up?

    Welcome to the Apple Community.
    Put in a request for another verification e-mail to be sent to you.
    Start here, change your country if necessary and go to manage your account.
    Also check your Mail rules and filtering, the verification mail may be going to a junk folder or even being deleted altogether. You may also wish to contact your mail provider to see if their spam filters are removing the email before it gets to you.

  • Hi, all.  I am looking for a piece of music on the iTunes store but cannot find it at all!

    Hi, its called Gassenhaur (i think lol) by Carl Orff, heres a youtube link to the piece of music im looking for
    http://www.youtube.com/watch?v=K7PotgU3Yms
    Oh, and i dont want the version from True Romance, I already have that ;0)

    Not all music is available in iTunes, Apple can only sell in a particular country what the record companies have granted them licenses to sell. If it's not in your country's store then is it available on other music purchase download sites that you have access to ?

  • IPad music app: album count incorrect/too large in artist view

    Hello,
    My problem isn't critical, but it is really annoying. My third generation iPad is showing incorrect album counts for artists under artist view in the Apple music app.
    For example, I have just one Coldplay album (Viva La Vida) uploaded to my iPad, but the music app reads the following under the album/artwork in artist view: "10 songs, 15 albums".
    I have turned the iPad on and off. I have done a hard reset (by holding home and power button down until iPad shuts off and then tirns on again). I have restored the iPad from a back up through iTunes. I have restored it to factory settings through iTunes and set it up as a new iPad. I have erased the iPad using the iPad "settings/general/reset/erase all contents and settings" option. I have synced the iPad with iTunes and utilized the music tab to replace the music on the iPad. I have uploaded the albums through the iTunes store. I have synced them from my computer.
    NONE of these options have worked. They all result in incorrect album counts.
    This seems to be a problem which surfaced after I upgraded to iOS6, but I am not sure if that is what caused the issue.
    Thanks in advance for any help.
    Cubulous

    This is some sort of issue with iOS6. There are several threads (and theories) as to why this is happening. But the bottom line is, Apple needs to correct the problem.
    One person indicated that the actual number of albums (by a particular artist) in his iTunes Library was the number of albums indicated on the iPad, regardless of the number of albums he chose to sync. In other words, if I have 10 albums by artist "ABC" in my iTunes Library, but chose to sync only 5 of them, the iPad would still indicate 10 albums by "ABC" (because it's looking to the iTunes Library for the album count instead of the number of actual albums that were synched to the iPad). While that theory makes sense, I found it to be somewhat untrue, at least in my case.
    What I discovered is, if you rename or make a change to any of the metadata associated with a track from a particular album, then that album is duplicated when you sync, displaying the original album tracks (sans the one or two you changed) under the album name and a second version is created (using the exact same album name) but displaying only the track or tracks you modified. This in turn, increases your album count by one. So instead of showing the entry as just one album, the count now reads two for the same title. To make things even more confusing, if you go back and modify both versions of the album, successully combining the two back into one, so to speak (this can be done by renaming the artist to some other name, synching, then renaming it back to the correct artist), the album will then display correctly (just one "vesrion" showing on the iPad), but the album count remains unchanged (still indicating two). Basically, the count isn't reset, but remains incorrect.
    Hopefully, I didn't confuse everyone. But it's difficult to explain. From everything I've read, it appears to be a combination of things; Album count and display, as well as creating additional album "instances" if any tracks are modified.
    In any event, I hope they fix it soon. Because if you have a large music library like mine, it takes no time to really screw things up!

Maybe you are looking for

  • I-tunes will not open-have tried solutions from other posts

    Hello all My i-tunes 6 will not open on my computer. A few times at one point it flashed the user agreement and then died. It does appear in my windows task manager but only for a few seconds. I know some peopple have suggested a malware problem. I h

  • Plsssss help me.....

    Hi, Pls solve this issue... I'm getting output without using ALV .... but if i use ALV im getting error... pls correct the code...(alv part) REPORT  ZPAYABLES_AGING_TRAIL no standard page heading line-count 65(30) line-size 150. type-pools : slis. ta

  • Error: Transaction IDX1: Port SAPRP1, client ,RFC destination contain error

    Hi All,   I am faceing the problem while executing the XI ,   <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> - <!--  Call Adapter   --> - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/env

  • Indesign cs5 - search and change

    Hi there. I would like to get an information about how to change first word in new paragraph. I have a text (catalogue) where only the first word starts with capital letters. What i need to do is to change the character style of this first word to bo

  • SENDING TO MULTIPLE BURNERS

    There are days when I need to burn many different DVD projects using iDVD from my computer. 1. Is there a way to have more than one active iDVD window open, like in iMovie? 2. Can you select external burners in iDVD? 3. Is it feasible to have multipl