Make itunes8 more intelligent

In iTunes 7 there was a feature that asked me if i import a folder with musicfiles which already are in my library.
since iTunes 8 this is not working no more!!
as much as i drop the folder on the playlist i want the files to be in....as much duplicates i got
but only in the playlist (better than in entire library).
is there a workarround? cause is is really annoying me....makes itunes useless for those who are managaing mp3s with itunes in apps like Serato or Traktor cause it just messes up all playlists badly
Message was edited by: DJ CanDee

Using yaourt -Syua:
==> Package upgrade only (new release):
extra/libgnome-keyring 3.6.0-1 1 -> 2
extra/mesa 9.1-2 2 -> 3
==> Software upgrade (new version) :
core/filesystem 2013.01-3 -> 2013.03-2
core/iptables 1.4.16.3-1 -> 1.4.18-1
core/iproute2 3.7.0-1 -> 3.8.0-1
core/libffi 3.0.11-1 -> 3.0.12-1
core/systemd 197-4 -> 198-1
core/systemd-sysvcompat 197-4 -> 198-1
core/tzdata 2013a-1 -> 2013b-1
extra/dbus-glib 0.100-1 -> 0.100.2-1
extra/gconf 3.2.5-3 -> 3.2.6-1
extra/git 1.8.1.5-1 -> 1.8.2-1
aur/google-chrome 25.0.1364.160-1 -> 25.0.1364.172-1
==> Continue upgrade ? [Y/n]
==> [V]iew package detail [M]anually select packages
==> --------------------------------------------------
Also if there's any new package installed as a dependency to some other package, you are also acknowledged about it.

Similar Messages

  • Make pacman more verbose?

    Is there a way to make pacman more verbose in showing what packages are being installed or updated?
    For example, when doing a system update, you get a long list of packages that will be downloaded and installed. Most of them are packages you already have, but some may be new packages, pulled in as a new dependency of something else. I would like to more easily see if a package is a new install or an update, and what is causing the new packages to be installed.
    I used to use FreeBSD, and it's ports system did this. You do a system update, and it would list all of the packages to be installed, one per line. Each line indicated whether it was an update or a new install, if it was an update it showed the old -> new version numbers, and if it was a new install it showed what package depended on it.
    I haven't been able to find a way to make pacman do this, though I would be happy to be proven wrong. I've toyed with the idea of getting my hands dirty and writing some pacman patches to add this as an option, but I'd like to see if there are other solutions other people know about.

    Using yaourt -Syua:
    ==> Package upgrade only (new release):
    extra/libgnome-keyring 3.6.0-1 1 -> 2
    extra/mesa 9.1-2 2 -> 3
    ==> Software upgrade (new version) :
    core/filesystem 2013.01-3 -> 2013.03-2
    core/iptables 1.4.16.3-1 -> 1.4.18-1
    core/iproute2 3.7.0-1 -> 3.8.0-1
    core/libffi 3.0.11-1 -> 3.0.12-1
    core/systemd 197-4 -> 198-1
    core/systemd-sysvcompat 197-4 -> 198-1
    core/tzdata 2013a-1 -> 2013b-1
    extra/dbus-glib 0.100-1 -> 0.100.2-1
    extra/gconf 3.2.5-3 -> 3.2.6-1
    extra/git 1.8.1.5-1 -> 1.8.2-1
    aur/google-chrome 25.0.1364.160-1 -> 25.0.1364.172-1
    ==> Continue upgrade ? [Y/n]
    ==> [V]iew package detail [M]anually select packages
    ==> --------------------------------------------------
    Also if there's any new package installed as a dependency to some other package, you are also acknowledged about it.

  • Hello, I have Windows 7, and I have now to install Windows 8 on my Computer, and since, I cannot make any more of update of Apple of itune in Windows 8. Nor to download  the software recent of itune... That have to I make???

    Hello, I have Windows 7, and I have now to install Windows 8 on my Computer, and since, I cannot make any more of update of Apple of itune in Windows 8. Nor to download  the software recent of itune... That have to I make???

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • How to increase the size of orders in photoshop to make it more enjoyable to use the software

    how to increase the size of orders in photoshop to make it more enjoyable to use the software

    EDIT:  I noticed that you already posted the question in the appropriate forum..
    Message Edited by JoeLabView on 10-22-2007 07:56 AM

  • I downloaded a handwritten doc that is illegible, can I make it more clear to read?

    The document is an old birth certificate. I can't read the names of the mother and father. I wonder if thebirth certificate department will help me?
    In the meantime, does any one know of a tool that makes writing more legible? (I've seen such a thing on television crime movies.

    What kind of document is that and how bad does it look?
    Is it a PDF file or an image file (JPG, PNG, TIFF) or something else?
    If you can extract it as an image then you can try to improve the contrast or gamma with an image editor or use other filters in such a program. It may not be possible to do much about this if the quality is really bad.

  • Make Code More Efficient

    I got this code to play some audio clips and it works alright. The only issue is that when I call the play method it lags the rest of my game pretty badly. Is there anything in the play method you guys think could be moved to the constructor to make it more efficient?
    package main;
    import java.io.*;
    import javax.sound.sampled.*;
    public class Sound
         private AudioFormat format;
        private byte[] samples;
        private String name;
         public Sound(String filename)
              name=filename;
              try
                AudioInputStream stream =AudioSystem.getAudioInputStream(new File("sounds/"+filename));
                format = stream.getFormat();
                samples = getSamples(stream);
            }catch (Exception e){System.out.println(e);}
         public byte[] getSamples()
            return samples;
        private byte[] getSamples(AudioInputStream audioStream)
            int length=(int)(audioStream.getFrameLength()*format.getFrameSize());
            byte[] samples = new byte[length];
            DataInputStream is = new DataInputStream(audioStream);
            try
                is.readFully(samples);
            }catch (Exception e){System.out.println(e);}
            return samples;
        public void play()
             InputStream stream =new ByteArrayInputStream(getSamples());
            int bufferSize = format.getFrameSize()*Math.round(format.getSampleRate() / 10);
            byte[] buffer = new byte[bufferSize];
            SourceDataLine line;
            try
                DataLine.Info info=new DataLine.Info(SourceDataLine.class, format);
                line=(SourceDataLine)AudioSystem.getLine(info);
                line.open(format, bufferSize);
            }catch (Exception e){System.out.println(e);return;}
            line.start();
            try
                int numBytesRead = 0;
                while (numBytesRead != -1)
                    numBytesRead =
                        stream.read(buffer, 0, buffer.length);
                    if (numBytesRead != -1)
                       line.write(buffer, 0, numBytesRead);
            }catch (Exception e){System.out.println(e);}
            line.drain();
            line.close();
        public String getName()
             return name;
    }

    I don't know much about the guts of flex, but I assume it's
    based on Java's design etc.
    Storing event.target.selectedItem in an objet should not be
    anymore efficient than calling event.target.selectedItem. The objet
    will simply be a pointer of sorts to event.target.selectedItem. At
    no point in the event.target.selectedItem call are you doing a
    search or something, so storing the result will not result in any
    big savings.
    Now, if you were doing something like
    array.findItem(something) 4 times, then yes, it would be to your
    advantage to store the data.
    Keep in mind that storing event.target.selectedItem in an
    object will probably break bindings....that may or may not be a
    problem. Objet doesn't support binding. There is a subclass of
    Object that does, but I forget which.
    Just a suggestion based on my knowledge of how data is stored
    in an object oriented language...this may not be the case in
    flex.

  • Make sizes more accurate?

    This script should make a rectangle the same size as the artboard.
    However if the artboard is 210mm wide the rectangle ends up being 210.002mm, is there any way to make this more precise?
    #target illustrator
    var docRef = app.activeDocument;
    var artboardRef = docRef.artboards;
    var activeAB = docRef.artboards[docRef.artboards.getActiveArtboardIndex()]; // get active AB
    //get artboard size
    var left = activeAB.artboardRect[0];
    var top = activeAB.artboardRect[1] ;
    var width = activeAB.artboardRect[2]-activeAB.artboardRect[0];
    var height = activeAB.artboardRect[1]-activeAB.artboardRect[3];
    //create box
    var box = docRef.pathItems.rectangle (top, left, width, height);
    box.fillColor = box.strokeColor = new NoColor();

    In regards to the artboard size, if I create a new docment with with the width of 595.276pt (displays as 595.28pt) the artboardRect gives: 595.2802734375
    If I then go to the artboard options and re-enter the 595.276pt the artboardRect gives the same as above.
    But then...
    If I use the artboard options to make the width 100pt  (The artboardRect gives 100.00048828125) and then go back again to 595.276pt the artboardRect gives the almost accurate result 595.27587890625
    Theres something weird going on there
    1) Why is the artboardRect not accurate to the Art Board size?
    2) Why does going to 100pt then 595.276pt give a more accurate rect than entering 595.276 on its own?

  • How to make it more efficient

    Hi,
    I am working on AQ where I am just sending and receiving simple messages. But the performance is very poor. It takes around 35 seconds to send (enqueue) just 100 messages which is not acceptable for our project. Can someone help me how to make it more efficient. I am using JMS for sending and receiving messages.
    Thanks,
    Sateesh

    Bhagath,
    Thanks for your help.
    Oracle server we are using is 8.1.7. We are using JDBC client that ships with Oracle client (classes12.zip).
    Right now we are working on point to point messages.
    I am just wondering whether I need to do any tuning on server.
    Your help is greately appreciated.
    Here I am pasting sample code that I wrote which may help in finding the problem.
    Thank you so much once again for your help.
    -Sateesh
    import java.sql.*;
    import javax.jms.*;
    import java.io.*;
    import java.util.Properties;
    import oracle.AQ.*;
    import oracle.jms.*;
    public class CDRQueueSender {
    private final String DB_CONNECTION = "jdbc:oracle:thin:@dev1:1521:dev";
    protected final String DB_AQ_ADMIN_NAME = "dev78";
    private final String DB_AQ_ADMIN_PASSWORD = "dev78";
    /** DB AQ user agent name and password */
    private final String DB_AQ_USER_NAME = "dev78";
    private final String DB_AQ_USER_PASSWORD = "dev78";
    private QueueConnectionFactory queueConnectionFactory = null;
    private QueueConnection connection = null;
    private QueueSession session = null;
    private Queue sendQueue;
    private QueueSender qSender;
    public CDRQueueSender() {
    try {
    Properties info = new Properties();
    info.put(DB_AQ_USER_NAME, DB_AQ_USER_PASSWORD);
    queueConnectionFactory = AQjmsFactory
    .getQueueConnectionFactory(DB_CONNECTION, info);
    connection = queueConnectionFactory.
    createQueueConnection(DB_AQ_USER_NAME,
    DB_AQ_USER_PASSWORD);
    session = connection.createQueueSession(
    true, Session.AUTO_ACKNOWLEDGE);
    connection.start();
    sendQueue = ((AQjmsSession) session).getQueue (DB_AQ_ADMIN_NAME,"CDR_QUEUE");
    qSender = session.createSender(sendQueue);
    catch (Exception ex) {
    ex.printStackTrace();
    public boolean sendCDRMessage(CDRMessage messageData)
    throws JMSException, SQLException {
    ObjectMessage objectMessage = session.createObjectMessage(messageData);
    try {
    qSender.send(objectMessage);
    session.commit();
    catch (Exception e) {
    System.out.println(e.getMessage());
    e.printStackTrace();
    return true;
    public void close() throws JMSException {
    session.close();
    connection.close();
    public static void main(String[] args) throws SQLException, JMSException {
    int count = 0;
    CDRQueueSender qSender = new CDRQueueSender();
    long startTime = System.currentTimeMillis();
    long endTime;
    CDRMessage message;
    while(count < 100) {
    message = new CDRMessage("filename", 20, "This is testing", count);
    qSender.sendCDRMessage(message);
    count++;
    //qSender.sessionCommit();
    endTime = System.currentTimeMillis();
    System.out.println("time taken to process 100 records is " +
    ((endTime - startTime)/1000) + " seconds");
    qSender.close();

  • Make Website More Visible To Search Engines

    A friend of mine has provided the following feedback on my homepage;
    'The Blog page I visited was presented as graphical images, rather than as text. That means you have exact control over the appearance, but has several disadvantages. Among them are that people can't copy & paste what you've written, and search engines may not find it. (I say may not, because there seems to be some kind of text-based version that loads momentarily and then gets overwritten by the graphical image. Very strange! Search engines may be able to find the text-based version.)
    I have tried to find my website on Google without success. How do I make it more visible to search engines? Is there some preference in iWeb that would help?

    I wouldn't worry too much about the whole text-to-graphic conversion issue. iWeb does this for your benefit so that what is rendered is exactly what you expected. It is my belief that the negative effect of this on search engine results is also overblown.
    Anyhow, the least that you can do to get your site indexed by Google eventually is to go to Google directly and register, verify, and provide a sitemap for your site. I have put down a set of directions here for everyone's benefit...
    http://discussions.apple.com/thread.jspa?threadID=679200&tstart=0

  • How can I change the margin settings in the pages inspector to make them more specific for label templates. I need margins that can be set to hundreths of a centimetre not just tenths.

    How can I change the margin settings in the pages inspector to make them more specific for label templates. I need margins that can be set to hundreths of a centimetre not just tenths.

    I doubt you need hundreths as you would not even be able to measure that and the printer doesn't hold the paper to those tolerances.
    fruhulda is right. Pages accepts higher measure but rounds it in the measure field.
    If you want absolute accuarcy you need to set your measures to points. Everything else is being recalculated.
    Peter

  • [svn:fx-trunk] 11806: Update GradientEntry ASDoc comment to make it more consistent with the Graphics beginFill ASDoc .

    Revision: 11806
    Revision: 11806
    Author:   [email protected]
    Date:     2009-11-13 15:59:03 -0800 (Fri, 13 Nov 2009)
    Log Message:
    Update GradientEntry ASDoc comment to make it more consistent with the Graphics beginFill ASDoc.
    QE notes: None
    Doc notes: We should revisit gradients and gradient entry AsDoc comments and clarify coordinate spaces, interpolation, etc.
    Bugs: None
    Reviewer: Hans
    Tests run: None
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/GradientEntry.as

  • Should I update OS X 10.6.8 to make install more apps?

    Should I update OS X 10.6.8 to make install more apps?

    That's up to you.  One thing to remember, many Apps are not compatible with 10.7 and later that were before.  See this tip:
    https://discussions.apple.com/docs/DOC-6271

  • Being deaf, I rely on the vibrate mode to alert me to incoming messages. I recently obtained an iPhone 4 and I find its vibrate mode wimpy, causing me to miss calls. Is there any way to make it more robust?

    Being deaf, I rely on the vibrate mode to alert me to incoming messages or reminders. I haven't had problems with my previous PDAs such as Blackberry and Motorola, but since I obtained an iPhone 4, I`ve discovered that its vibrate mode is more of a whimper than anything else. I`ve missed many calls as its vibes are indiscernible when it`s in the holster on my belt. Is there any way to make the vibes more robust? I`ve amped up the ring volume control to no avail.

    No, there is no adjustment for the vibrating mode.

  • Little things that make Linux more secure

    So after reading a post about rm -rf /home mishap I've decided to make my Arch a bit more safer and share it with you.
    So if you have some useful things that make your Arch safer as it is share it here.
    So first thing I've did I've decided to add this to my bashrc as alias:
    alias rm='echo "last chance before screwing things up 10s..." && sleep 10s && rm'
    10 seconds is maybe a bit too much, but it gives you enough time to prevent things from screwing up (at least if you're doing it as normal user...)
    The other thing I've done was to prevent Forkbombs to take down the system. I've found this when I tried to reduce swappiness of my Arch.
    Sorry can't find the link anymore but what I did was this:
    ulimit -u 30
    It limits the number of processes on 30, so forkbomb has no effect; but the site said that this could prevent you from compiling things and similar stuff.
    So I'm not sure how good is for you.
    Do you have any good advice what to do to make it safer.
    Something maybe in likes of SELinux or iptables (I have no idea how to set them )
    please share.

    karol wrote:
    Well, it's your system, but let me tell you that 30 processes is "a bit" too low. Did you test this setup w/ a running X?
    There are many definitions of "safe":
    - hacker/cracker-proof,
    - PEBKAC/fool-proof,
    - backups etc. in case your hardware dies.
    - etc.
    I'm the only user on my computer and I trust myself not to do really dumb things.
    Actually I did. I have KDEmod an "whatnot" running. I was surprised myself still don't really know how it's actually possible.
    I've tried the forkbomb it won't work, but I can start new apps, have X and KDE with all it's bells and wisthels runnign and still don't get any errosr which I would expect.
    @Xyne:
    Well I personally think that hitting y for every subfolder of certain folder I wish to remove is waste of time. But agreed 10s is too much. I'll reduce it to 3-4.
    I know I am cautious to some extent. But I decided to start this thread so thredas like my borther / sister / I ve rm -rf-ed my / /home or something else.
    I do kind of trust myslef even if I only skim through AUR PKGBUILD files and haven't touch iptables (yet).
    I've also don't have SSH on my install as I don't need it.
    But to be truthful I do have the weakest password for my root, so that's probably bad (have to think of another password).
    I know that most archers know how to take care for their computer, but I was still curious what you do. And if what I did made my computer safer.
    What do I have to add to my PS1 so that my root will be red?

  • Make image more prominent

    I'd like to make the profile pic on this FB account: http://www.facebook.com/VcallWebcasting to stand out more (the top left photo). Don't want the size (dimensions) to be bigger, just logo and table etc to be bigger so you can see them more.  Friend told me I can do it in 2 seconds but I don't know what to do??  Ideally, good judge of size would be that logo would fit width-wise in the thumbnail.
    Thanks so much in advance!

    I do.  I have a jpg and ended up cropping it.  You're saying I should use the scale tool to make it bigger?  The profile pic up there now is the one I cropped so I can start from original if that's indeed what you're saying I should do. Thanks :-).

Maybe you are looking for