DVD-R vs DVD+R/ Whats the Difference & What should i use w Macbook

i have the latest macbook. been using dvd-r and was always curious. can i use DVD+ ?
whats the difference?
thanks

http://www.dvd-supply.com/whisdvdvdvan.html
Your MacBook will burn both.
-Bmer
Mac Owners Support Group
Join Us @ MacOSG.com
YouTube.MacOSG.com
iTunes: MacOSG Podcast
 An Apple User Group 

Similar Messages

  • The software update to 7.1 on my iphone 5 is 214 mb, while via itunes it's 1.27 gb. what's the difference, which should i use?

    the software update to ios 7.1 on my iphone 5 is 214 mb (settings>>general>>software update), while the update via itunes it's 1.27 gb. what's the difference, and which should i use?

    My preferred method is to do the Update using iTunes on my Computer.
    You will Prompted to Transfer any Content from the Device.
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch
    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download
    Note:
    Always Backup before you update
    How to BackUp  >  http://support.apple.com/kb/ht1766
    What gets Backed Up
    iTunes http://support.apple.com/kb/ht4946
    iCloud http://support.apple.com/kb/PH2584

  • Data plan!  why???  whats the difference of me using Wifi or being charged for a data plan?

    Feature phones iterally suck, even the internet pro reviews on the phones are very low and most of the feature phones that are  reviewed  the reviewer gives  their  last comment as "don't buy" .
    I do not need a data plan, ( I carry either a Verizon netbook or a notebook for all my internet needs) nor am I comfortable with the charge of a data plan being necessary or is this simply another way for a large company with a large profit margin to stick it to the consumer knowing we have to maintain a cell phone in this day and age?.
    I had settled on the KinTwo, the reviews are not glowing but .... r not that horrible either.  It is also the only phone which gives the owner WiFi accessibility.  (which makes me wonder if this is the reason Verizon has pulled it off the market).  From my extensive research the KinTwo is the only feature phone choice.  But..... When I went back to the site to order it was gone, and the VW stores do not carry it.
    UGH>  I am so discouraged by the data plans and the extremely high price.  Would someone please tell me what the difference is in my using my Netbook, laptop (notebook) on WiFi and not being charged a data fee?  Or why I can bring Wireless Internet into my home and have all my WiFi accessible electronics connect through my main ISP with an additional fee for each WiFi user????   But I am not able to use a Smartphone this way???
    I am serious about these data plans  are they necessary????

    once upon a time verizon did not require data plans
    many users were happy
    but t h is did not last for users started having problems with thier hands
    they would often hit the wrong buttons and use data
    sometims as little as a mb, sometimes many mb
    verizon forums and customer service started recieving phone calls to get credits for this usage
    after all its not the users fault is it? i mean are they responsible if they had the phone to a 2 year old to play with and the kid brings up the browser?
    so verizon decided it was in its best interest to protect its users.  they started requireing data plans so you wouldnt get hit with huge bills for being an idiot.
    So if you wanna cry about data plans blame all those people out there that complained

  • Whats the difference to a macbook and a iMac

    Whats the difference to a iMac and a Macbook Air?

    In what respect?
    The iMac is a desktop computer, the Air is a laptop.
    http://www.apple.com/imac/
    http://www.apple.com/macbookair/

  • Why am igetting an update for photshop CC AND Photoshop cc (2014)  whats the difference?

    so whats the difference and should I update both?

    May I suggest reading through the other threads on the first page of this forum.
    Here's one in particular with some pertinent info...  New Software Available via your Creative Cloud Application
    -Noel

  • Whats the difference between an i pad2 / macbook air or pro

    whats the difference between an i pad2 / macbook air or pro .im considering buying an ipad2 for school !!

    abraham from san antonio wrote:
    whats the difference between an i pad2 / macbook air or pro .im considering buying an ipad2 for school !!
    A iPad is a touchbased tablet, it has a poor Atom level dual core processor that can do some things, but not a whole lot. The storage isn't so great on them and it needs a computer to operate. Can only run software from the App Store.
    The MacBook Air is a lightweight laptop with a real keyboard, but limited other features like no cd/dvd drive, it's the best for ultimate portability and lightweight uses with good features. Can run a lot of third party software no problem.
    The MacBook Pro 13" is a mid range laptop with cd/dvd drive, but poor integrated graphics. (little 3D gaming)
    The MacBook Pro 2.0Ghz is slightly above that, it has both a integrated graphics and a dedicated graphics card with about the same performance. (not good for 3D gaming)
    The 2.2, 2.3 Ghz 15" and 17" MacBook Pro's are professional level laptops and 3D gamers machines with very powerful graphics cards, these are the crown jewel machines in Apple's lineup.

  • What the difference and use between   of  TABLES and SY-REPID?

    Hi,
    Experts,
    I have came accross 2 cases that i can't able understand
    EX1:
    TABLES: VBAP   -
    >( Here also Appplication Server(AS) creates Wrokarea of Structure VBAP but, by 
    data: v_vbeln like vbap-vbeln.    double clicking on variable v_vbeln AS taking me to DDIC VBAP table VBELN field then what the using declaring tables. )
    ( and ) 
    DATA: VBAP TYPE VBAP -->( Here also Appplication Server(AS) creates Wrokarea of Structure VBAP data: v_vbeln like vbap-vbeln.    but,double clicking on variable v_vbeln AS taking me to user declared VBAP
                                                  i.e., above DATA declaration statement )
    Then Which one is better in Functionality wise as well as Performance wise or when we have to go for TABLES and when we have to go for DATA declaration of DDIC objects.
    EX2:
    what the difference between
    I know that SY_REPID is not a system variable. And also that
    Data: vrepid type SY_REPID.--> Predefined data type in ABAP
    and
    Data: vrepid like SY_REPID.-> Predefined Constatnt in ABAP( it is a constant it allowing with out VALUE                                                                               
    attribute)
    what difference between them and when we have to go Data: vrepid type SY_REPID and when we have to go Data: vrepid like SY_REPID.
    Thank U,
    Shabeer Ahmed.

    Hi Ahmed,
    TABLES:
      VBAP.   " DDIC
    DATA:
      v_vbeln like vbap-vbeln.
    *Here you are using the DDIC VBAP
    DATA:
      VBAP TYPE VBAP.
    DATA:
      vbeln like vbap-vbeln.
    *Here you are using the local data object as your data type so it will always
    * take you to user declared VBAP which is declared by you.
    DATA:
      T_VBAP TYPE VBAP.
    DATA:
      vbeln like vbap-vbeln.
    * here its using T_VBAP not DDIC VBAP
    And for performance always the second option is better, use Data instead of tables, declare your own local structure.
    Data:
      vrepid type SY_REPID.  thereis nop redefined data type in ABAP as SY_REPID
    * its SY-REPID which is a system variable.
    Data:
      vrepid type SY-REPID.
    Also refer to the links:
    Difference between tables statement and by using type statement
    for type and like:
    Re: LIKE and Type in abap statements
    With luck,
    Pritam.

  • Whats the difference between arrayCollection = null and arrayCollection.removeAll()?

    Whats the difference between arrayCollection = null and
    arrayCollection.removeAll()?

    In arrayCollection = null; statement you're setting this
    reference to null and potentially making it available for garbage
    collection. I say 'this reference' and potentially because, as you
    may know, there might be other references to this array collection
    object that won't be affected by this statement and hence it won't
    be GC'ed.
    arrayCollection.removeAll() says that I want to empty this
    array collection for all the reference that we pointing to it. That
    is, remove all the objects from the collection -- and of course
    make them 'potentially' available for the GC -- the size of the
    array collection would be reduced down to zero and all the
    references would be pointing to a valid but empty collection.
    Hope this helps.
    ATTA

  • Whats the difference between list and lov ?

    Whats the difference between list and lov ?
    i can do the same things with a list what an lov can do .
    infact a list is more better. cause the list doesnt hold/show a range of values, and only has the items value iteself.
    while the lov can get all the values of items depending on the query.
    like
    select ename, job, sal from emp
    will show all the three items values in lov?

    Also, if you're looking in the US store, the prices are:
    - Airport Express (small, no ac) $99 - Has audio out for speaker connection using Airplay. Can share a USB printer only.
    - Airport Extreme (larger, ac) $199 - No audio out, can share a USB printer or hard drive.
    - Time Capsules (2TB, 3TB at $299, $399) - have ac wireless and a backup hard drive for Time Machine which the other Airports do not have.
    Matt

  • What the difference between u0093Valuate GL Account Open Itemsu0094 and u0093Valuate G/

    hi gurus
    What the difference between “Valuate GL Account Open Items” and “Valuate G/L Account Balances”?
    We found out that when we perform valuate GL account Open items there will be reversal done at the same time whereas when we perform Valuate G/L Account Balances there is NO reversal posting even though we hv entered the reversal posting date and Period.
    Pls advise which one we should perform?

    “Valuate GL Account Open Items” are for open item managed accounts including vendor/customer accounts. The valuation is performed for each (open) line items on key date specified.
    "“Valuate GL Balance" is for account NOT managed on Open Item basis but managed in foreign currency. The period balance of key date in foreign currency is valuated. Reversal document can be created by selecting 'Reverse postings' in "Postings" tab.
    Kyoko

  • Whats the difference between these two queries ? - for tuning purpose

    Whats the difference between these two queries ?
    I have huge amount of data for each table. its takeing such a long time (>5-6hrs).
    here whice one is fast / do we have any other option there apart from listed here....
    QUERY 1: 
      SELECT  --<< USING INDEX >>
          field1, field2, field3, sum( case when field4 in (1,2) then 1 when field4 in (3,4) then -1 else 0 end)
        FROM
          tab1 inner join tab2 on condition1 inner join tab3 on condition2 inner join tab4 on conditon3
        WHERE
         condition4..10 and
        GROUP BY
          field1, field2,field3
        HAVING
          sum( case when field4 in (1,2) then 1 when field4 in (3,4) then -1 else 0 end) <> 0;
    QUERY 2:
       SELECT  --<< USING INDEX >>
          field1, field2, field3, sum( decode(field4, 1, 1, 2, 1, 3, -1, 4, -1 ,0))
        FROM
          tab1, tab2, tab3, tab4
        WHERE
         condition1 and
         condition2 and
         condition3 and
         condition4..10
        GROUP BY
          field1, field2,field3
        HAVING
          sum( decode(field4, 1, 1, 2, 1, 3, -1, 4, -1 ,0)) <> 0;
    [pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    My feeling here is that simply changing join syntax and case vs decode issues is not going to give any significant improvement in performance, and as Tubby points out, there is not a lot to go on. I think you are going to have to investigate things along the line of parallel query and index vs full table scans as well any number of performance tuning methods before you will see any significant gains. I would start with the Performance Manual as a start and then follow that up with the hard yards of query plans and stats.
    Alternatively, you could just set the gofast parameter to TRUE and everything will be all right.
    Andre

  • Whats the difference between Fatal1ty and Fatal1ty USB heads

    Whats the difference between Fatal1ty and Fatal1ty USB headset? What is the $30 price difference for other than a USB connection?
    Also, what is the advantage to using the USB port?
    Still trying to decide on which headset to buy. I will be using these mainly for gaming and some music. Although i'm not real picky when it comes to music quality. Even considered the HS-1200 wireless. Which headset of these 3 has the best sound quality and better quality?
    Message Edited by iowabucks on 10-20-2008 07:54 AM
    Message Edited by iowabucks on 10-20-2008 08:10 AM

    Any USB sound related item is going to use system resources instead of the non usb version. The non usb version uses the resources of the sound card and not system resources. So you should get cleaner sound with the non usb version.
    But, be aware creatives tech support is not the best in the world. Keep that in mind when buying a product from them.

  • Whats the difference between and Album and a Smart Album

    OK, just upgraded.... So, whats the difference between an Album and a Smart Album?  
    Also, I like to organise my stuff, so if I create a folder for each year, and then a project within that year, why is it that the photos are always in both - and then again if I chose to create an album specific to a project, they are there again.
    So it might look:
              Folder (2012 Equine Photography)
                   Project - Specific Events
                        Album - Big Barn Dressage May
    Does this mean the individual photo is stored 3 times and using 3 times the space?
    Thanks guys!

    Mrsthebraggster wrote:
    So it might look:
              Folder (2012 Equine Photography)
                   Project - Specific Events
                        Album - Big Barn Dressage May
    Does this mean the individual photo is stored 3 times and using 3 times the space?
    No. Conceptually the Master only lives lives in the single (time based) Project you import it into. Albums are just collections of pointers that point to  images in various Projects.
    "Big Barn Dressage May" could be a Project, but only if it is only one day and a limited number of image files; otherwise an Album. "2012 Equine Photography" should be an album or a Folder of Albums. "Specific Events" could be an Album or a Folder of Albums.
    A Project should not be used as a Folder.
    From an earlier post of mine:
    Folders are indeed flexible organizational tools but IMO often overused. Folders can effectively hide contents from view and therefore require users to remember how folders are nested and what is inside them. Folders were the only way to deal with single-original film, but are IMO limiting to image database thinking.
    The way I look at it conceptually:
    Aperture is a database (DB), and each image file lives in one Project.
    Albums are just collections of Pointers that point to individual image files living in one or more Projects. Since they just contain pointers, albums can be created or deleted at will without affecting image files. Very powerful. And Albums of pointers take up almost zero space, so they are fast and do not make the Library size grow.
    Keywords can be applied to every image separately or in batches. Keywords are hugely powerful and largely obviate the need for folders. Not that we should never use folders, just that we should use folders only when useful organizationally - - after first determining that using keywords and albums is not a better approach.
    As one example imagine the keyword "flowers."  Every image of a 100,000 images Library that has some flowers in it has the keyword flowers. Then say we want to put flowers in an ad, or as background for a show of some kind, or to print pix for a party, or even just to look for an image for some other reason. We can find every flower image in a 100k-image database in 2 seconds, and in another few seconds create an Album called "Flowers" that points to all of those individual images.
    Similarly all family pix can have a keyword "family" and all work pix can have a key word "work." Each individual pic may have any number of keywords. Such pic characteristics (work, family, flowers, etc.) should not be organized via folders.
    So by using keywords and albums we can have instant access to every image everywhere, very cool. And keywords and albums essentially take up no space in the database.
    Another approach is to use a folder "Family" for family pix, a folder "Flowers" for flowers pix and another folder "Work" for work pix. IMO such folders usage is a very poor approach to using an images database (probably stemming from old paper or film work practices). Note that one cannot put an image with family in a field of flowers at a work picnic in all three folders; but it is instant with keywords.
    HTH
    -Allen

  • Whats the difference between an iPhone 5s and a iPhone 5c

    Whats the difference between the iphone 5s and the iphone 5c???

    Rider11 wrote:
    The 5c has plastic backs with different colors just for fun other then that nothing is different.
    You'd better look up the above linked comparison as well if you believe you are correct....

  • Whats the difference between an INTERFACE and a CLASS?

    Whats the difference between an INTERFACE and a CLASS?
    Please help.
    Thanx.

    http://search.java.sun.com/search/java/index.jsp?col=javaforums&qp=%2Bforum%3A31&qt=Difference+between+interface+and+class

Maybe you are looking for

  • Calculation on Interactive reporting

    I have no knowledge on interactive reporting, all Italy IR consultant are on holiday and I need an answer concerning solution feasibility as soon as possible, so if you can help me I will be very gratefull to you On a planning application using note

  • S205: Display Auto Dimming - How to turn off?

    Hey, I must admit that I am in a real rage right now. I recently updated the AMD Vision Center, but now I am facing my display dimming itself when there is a black background somewhere. On the other hand it turns up the brightness, when there is a wh

  • Jdeveloper 10g UI not starting.

    Hi All, I'm a new user of jdeveloper and using 10g. This is the problem which is happening everytime I start it second time after fresh installation. It works fine for the first time and shows problem and never loads in the subsequent attempts. I hav

  • PO Referring PR,not allowed to change Qty & Price once PO Created

    Hi All Qauntity and Price of Material Should not be Changed in PR  after PO creation,But before PO creation it should allow to change Qunaty and Price. Is ther any field control for this? Thanks in Advance. Raju

  • USB printer not showing up in airport utility

    Hey guys, I am trying to set up my father-in-law's new Time Machine with an HP Deskjet 5850 printer. It is a simple USB connection, however I cannot get it to work, even though I had the printer working on my AEBS in my apartment a few days ago (I ga