Creative is the best I love my totally problem free zen xtra 6

They are the best!!!!!!!!!
Imagine, i get to have a instrumente that teach me a lot of insane prgraming, hours and hours in front of the computer trying to come up with new ideeas how to get the player to work. Its so much fun, i could do it for days.
And how exiting it is when u get a new update, we are all sitting in front of the computer crossing our fingers, yes!!! i shout out, the computer does not regonice the player anymore.. more fun for lucky me...
Its also kinda cool to make bet on how many hours the player will go problem free, (bet with ur friends, u can make a lot of money, i usually go for 5min..)
Fun with the brilliant MediaSource is also included for free. fun game; "where is the nomad".
Also, i like traveling arond with lots of extra stuff, so Thank u very very much for not having a USB charge.. that is so not userfriendly.
But most of all, i love the Nomadexplorer. that sure is a fine pice of software, i hope the rocket engeneers who made it are heros of their home country, no wait, they should be made kings!!! And Creative should be the only company in the world...
Heil the kings of Creative, may u continue to produce all sorts of brilliant stuff for us...
Ohhhh.... I'm so full of love..

Okay...........

Similar Messages

  • My Iphoto libary is full and will not acept new photos, what is the best way to solve this problem without losing old photos

    Hi
    My Iphoto libary is full and wil not acept new photos what is the best way to solve this problem without losing the old photos?

    Here is a relevant discussion to your situation:
    https://discussions.apple.com/thread/2640787?start=0&tstart=0

  • The best solution to an ugly problem

    I am looking for the best way to put together a query on a table that has a partial construction like the following:
    Key loss
    1 arm
    2 leg
    3 eye
    4 leg/eye
    5 leg/eye/arm/foot
    6 foot/eye
    7 hand/foot
    (I know, I know. Don't shoot the messenger! this is the table I have to deal with.)
    I have to accept the value from an Apex shuttle object that returns selected values in a colon delimited string. Here are two examples of a potential query string:
    arm:leg
    eye
    I need to the records that meet all the minimum criteria. For example, if the request is:
    arm
    My query needs to return records 1 and 5. If the query is for
    arm:leg
    my query needs to return ONLY record five.
    As you can see the order does not matter, but all selected values must be contained in the loss column.
    Now here is the part that I am trying to discern: What is the best way to construct this query?
    Is there a clever way to use Oracle regular expressions to execute the query in one step? Or, do I need to construct some sort of union query?
    The database is 10.2
    Thanks in advance!

    Hi,
    You're right; this is an ugly problem.
    Vorlon1 wrote:
    I am looking for the best way to put together a query on a table that has a partial construction like the following:
    Key loss
    1 arm
    2 leg
    3 eye
    4 leg/eye
    5 leg/eye/arm/foot
    6 foot/eye
    7 hand/footThis is the ugliest part of the problem.
    Sometimes we have to accept delimited lists, like the colon-delimited parameter in this problem, but there is no excuse for storing such a list in the database. Each column should store one piece of information. This is something so basic to relational datbase design that it is called First Normal Form.
    (I know, I know. Don't shoot the messenger! this is the table I have to deal with.)Okay; pass it along to whoever is to blame.
    I have to accept the value from an Apex shuttle object that returns selected values in a colon delimited string. Here are two examples of a potential query string:
    arm:leg
    eye
    I need to the records that meet all the minimum criteria. For example, if the request is:
    arm
    My query needs to return records 1 and 5. If the query is for
    arm:leg
    my query needs to return ONLY record five.
    As you can see the order does not matter, but all selected values must be contained in the loss column.
    Now here is the part that I am trying to discern: What is the best way to construct this query?One way (shown below) is to split the colon-delimitd input string into individual items (one per row), join that result set to the table, GROUP BY the rows in the table, and only display the results if the total number of matches equals the total number of items in the input string:
    WITH      targets     AS
         SELECT     '%/' || REGEXP_SUBSTR ( :str
                                    , '[^:]+'
                                    , 1
                                    , LEVEL
                   || '/%'          AS target
         ,     target_cnt
         FROM     (
                  SELECT  LENGTH (         :str       || 'ab')
                        - LENGTH (REPLACE (:str, ':') || 'a')     AS target_cnt
                  FROM  dual
         CONNECT BY     LEVEL     <= target_cnt
    SELECT       l.key
    FROM       limbs        l
    JOIN       targets  t  ON   '/' || l.loss
                                  || '/'     LIKE t.target
    GROUP BY  l.key
    HAVING       COUNT (*)     = MIN (t.target_cnt)
    Is there a clever way to use Oracle regular expressions to execute the query in one step? Regular expressions can't do the whole job, but they sure help. The problem is that you might get input like 'arm:leg:eye', but the row in the table might have 'leg/arm/eye', or 'eye/leg/arm', or 4 other arrangements, so you can't just look for the input string as a whole.
    If you were using Oracle 11.1 (or higher) you could also use REGEXP_COUNT instead of LENGTH to comput target_cnt.
    Or, do I need to construct some sort of union query?UNIONs are often slow. Whenever you're tempted to use UNION, see if there's some way you can use aggregate or analytic functions instead. That will often be simpler and more efficient than UNION.
    Edited by: Frank Kulash on Jan 29, 2013 8:56 PM
    NSK2KSN wrote:
    ... even am also trying and waiting for better solutionI just saw your solution.
    This is basically the same approach, only instead of splitting both the parameter and the table strings into individual parts, it only splits the parameter, saving a somewhat messy CONNECT BY query.

  • What is the best design pattern for this problem?

    No code to go with the question. I am trying to settle on the best design pattern for the problem before I code. I want to use an Object Oriented approach.
    I have included a basic UML diagram of what I was thinking so far. 
    Stated simply, I have three devices; Module, Wired Modem, and Wireless Modem.
    In the Device Under Test parent class, I have put the attributes that are variable from device to device, but common to all of them.
    In the child classes, I have put the attributes that are not variable to each copy of that device. The attributes are common across device types. I was planning to use controls in the class definition that have the data set to a default value, since it doesn't change for each serial number of that device. For example, a Module will always have a Device Type ID of 1. These values are used to query the database.
    An example query would be [DHR].[GetDeviceActiveVersions] '39288', 1, '4/26/2012 12:18:52 PM'
    The '1' is the device type ID, the 39288 is the serial number, and the return would be "A000" or "S002", for example.
    So, I would be pulling the Serial Number and Device Type ID from the Device Under Test parent and child, and passing them to the Database using a SQL string stored in the control of the Active Versions child class of Database.
    The overall idea is that the same data is used to send multiple queries to the database and receiving back various data that I then evaluate for pass of fail, and for date order.
    What I can't settle on is the approach. Should it be a Strategy pattern, A Chain of Command pattern, a Decorator pattern or something else. 
    Ideas?

    elrathia wrote:
    Hi Ben,
    I haven't much idea of how override works and when you would use it and why. I'm the newest of the new here. 
    Good. At least you will not be smaking with a OPPer dOOPer hammer if I make some gramatical mistake.
    You may want to look at this thread in the BreakPoint where i trie to help Cory get a handle on Dynamic Dispatching with an example of two classes that inherit from a common parent and invoke Over-ride VIs to do the same thing but with wildly varying results.
    The example uses a Class of "Numeric"  and a sibling class "Text" and the both implement an Add method.
    It is dirt simple and Cory did a decent job of explaining it.
    It just be the motivation you are looking for.
    have fun!
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Unable to open or view: "For the best experience..." problem

    My system is Mac OS X (Browsers: Safari, Chrome, Firefox).
    I have been trying to browse Adobe's Interactive PDF Showcase for examples of professional output. Instead of the PDF opening up for viewing, I get, "For the best experience, open this PDF portfolio in Acrobat 9 or Adobe Reader 9, or later." or the same error with "...Acrobat X or Adobe Reader X, or later."  But my current reader version is Adobe Reader XI (11.0.09), which certainly qualifies as "later". What's going on?
    Thanks for any help.

    Have you tried accessing planning directly via 8300 port:
    http://<serverName>:8300/HyperionPlanning ? and see if the application is listed thr.
    Are you using admin Id to log in? if not then try using that one. If you dont have the access to that application you wont be able to see it via workspace.

  • Just got the micro today and having total problems

    i went to best buy today and got the zen micro, ever sence i turned it on i had problems
    songs wont transfer onto it, i've tried real player, the software that came with it and wmp (in witch i totaly hate windows so that didnt work)
    now, i turn on my micro and it gives me a screen that says "select music to PLAY from the music library" and i cannot do a thing about it besides going to recovery mode witch didnt help ether....someone help please!
    i added a test song on it but it still wont show up....

    upgrade the firmware to the non-beta 2.0 firmware, and use windows media player 0 to sync files.

  • Within last week I am unable to log on to Bank of America online banking. I have followed all suggested prior recommendations to the best of my ability but problem persists. BofA first told me it was a compatibility problem they were having with Mozilla

    I cannot log onto Bank of America website from Firefox. This problem started recently. At first BofA said they have a compatibility problem with new version of Firefox. Then they say no, it's a Firefox problem. I've tried the solutions listed in prior threads but none work. I have no problem logging onto BofA via IE.
    == URL of affected sites ==
    http://www.bankofamerica.com

    I got this problem when I upgraded to ver 3.6.12 from 3.6.11. I called BofA and after half an hour on phone, they told me to try using another browser. I used Intenet Explorer & they couldn't find the BofA site either. BofA had been told the problem was with any Firefoz version of 3 or higher. After I got off the phone with BofA, I downloaded an older version that I had been using without any problems & installed that.(3.5.15) That didn't work either.
    If the problem is with Firefox, why can't Internet Explored find the site either?

  • Which is the best way Applets or JSP

    Hi I am trying to develop a application to
    run on the internet .It involves few master detail table in each form and 10 Different functions.The forms needs to have LOVs and other validations.Which will be the best way to go.Total tables involved would be around
    40 and coulumns in these tables would be (15 - 40).
    Any suggestions
    jagan
    null

    I'll give you my input/opinion based on my own experience. Others may have additional considerations to add, or may want to disagree with some of my points:
    Benefits of JSPs:
    1. This is an evolving technology that a lot of people are now using. It is very powerful, and the performance is pretty good.
    2. It is much easier to deploy than an applet.
    3. It will continue to improve and be easier to work with, especially with our upcoming 3.2 release.
    4. Does not require a lot of Java experience.
    Drawbacks of JSPs:
    1. No GUI editor for laying out the user interface. You are using HTML code in a text editor, which is trickier to see how the UI will look as you go. Again, this will continue to improve over time, and our 3.2 release will make it a little easier to deal with the HTML and Java code.
    Benefits of Applets:
    1. There is a UI editor for designing the layout, but layout in Java can be tricky.
    Drawbacks of Applets:
    1. Deployment can be very error prone.
    2. Subject to security restrictions such as the database you connect to and the webserver the applet runs from must be on the same machine. You can work around this, but it complicates matters.
    3. Clients need to have the Java Plug-in installed with their browser.
    4. Performance is not great, especially for a lot of data going back and forth.
    5. Requires that the applet code is downloaded to the client, temporarily at least, at runtime. The more code you have in your applet, the longer it takes to download when the client invokes it.
    Bottom line is that Applets are fine for small tasks, and are preferable for 'intranet' use versus 'internet' use (outside).

  • Can't find my zen xtra in the Creative MediaSource Organi

    My Zen Xtra shows in "NOMAD Explorer" but when I try to use Creative MediaSource Organizer to transfer file from my computer to Zen xtra player, I can't found Zen xtra under "my computer"
    any help? My player has the latest firmware and also latest dri've was installed in my computer!!
    thanks for helping

    super80: Have a look here in the Zen FAQ at Nomadness.net on how to install MediaSource, which also makes reference to the required plugin.

  • What is the best way to resize a JPEG and store it in the Filesystem

    Hi All,
    I have developped a CMS System that renders JPEGs if it does not have the images available within the desired width already. Within my development setup (Dell Latitude D800 with ubuntu dapper drake) everything works fine and fast, as expected. Then I uploaded the application to my V20Z Server with 4gb RAM and the systems performance goes to its knees. I have hooked in a Java Profiler to see where the problem is, and it showed me that it is hanging wthin
    sun.java2d.SunGraphics2D.drawImage(Image, int, int, ImageObserver) which I use to draw my Image to a BufferedImage. Below is my complete source code That I am using. Plus the orofiling results
    Do not be confused as I am using the Turbine Framework, which gives me a RawScreen which gives me Access to the HttpServletResponse...
    package de.ellumination.carmen.modules.screens;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Locale;
    import javax.imageio.IIOImage;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageWriteParam;
    import javax.imageio.ImageWriter;
    import javax.imageio.plugins.jpeg.JPEGImageWriteParam;
    import javax.imageio.stream.ImageOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.log4j.Logger;
    import org.apache.turbine.modules.screens.RawScreen;
    import org.apache.turbine.util.RunData;
    import de.ellumination.carmen.om.ImagePeer;
    public class Image extends RawScreen
    public static final float DEFAULT_COMPRESSION_QUALITY = 1.0F;
    * Logger for this class
    private static final Logger log = Logger.getLogger(Image.class);
    @Override
    protected String getContentType(RunData data)
    return "image/jpeg";
    @Override
    protected void doOutput(RunData data) throws Exception
    int imageId = data.getParameters().getInt("id");
    int width = data.getParameters().getInt("width", -1);
    int height = data.getParameters().getInt("height", -1);
    HttpServletResponse response = data.getResponse();
    de.ellumination.carmen.om.Image image = ImagePeer.retrieveByPK(imageId);
    File imgFile = new File(image.getLocation());
    if(width > 0 || height > 0)
    outputScaledImage(imgFile, response, width, height);
    else
    outputImage(imgFile, response);
    private void outputScaledImage(File imageFile, HttpServletResponse response, int width, int height) throws Exception
    File scaledFile = new File(imageFile.getParent() + System.getProperty("file.separator") + width + "_" + imageFile.getName());
    if(scaledFile.exists())
    outputImage(scaledFile, response);
    else
    scaleImage(imageFile, scaledFile, width);
    outputImage(scaledFile, response);
    private void outputImage(File imageFile, HttpServletResponse response) throws Exception
    FileInputStream in = new FileInputStream(imageFile);
    response.setContentLength((int) imageFile.length());
    OutputStream out = response.getOutputStream();
    int bSize = 10240;
    byte[] buffer = new byte[bSize];
    int inBuffer = 0;
    while (inBuffer >= 0)
    inBuffer = in.read(buffer);
    if (inBuffer > 0)
    out.write(buffer, 0, inBuffer);
    * scales the image to its new size. while scaling the Image, the code first resizes the image using the new Width Parameter.
    * If the Image is to high after scaling, it then uses the Images height to determin the scaling Factor.
    * @param inputFile the original Image
    * @param outputFile the File to store the scaled image to
    * @param compressionQuality the compression Quality to use
    * @param newWidth the desired images width
    * @param newHeight the desired images height
    public static void scaleImage(File inputFile, File outputFile, float compressionQuality, int newWidth, int newHeight)
    try
    if (inputFile.exists())
    BufferedImage hiRes = ImageIO.read(inputFile);
    double scaleFactor = (double) newWidth / (double) hiRes.getWidth(null);
    int tempHeight = (int) (hiRes.getHeight(null) * scaleFactor);
    if (tempHeight > newHeight)
    scaleFactor = (double) newHeight / (double) hiRes.getHeight(null);
    int width = (int) (hiRes.getWidth(null) * scaleFactor);
    int height = (int) (hiRes.getHeight(null) * scaleFactor);
    scaleImage(outputFile, compressionQuality, hiRes, width, height);
    catch (IOException e)
    log.error("Unable to create the thumbnail " + outputFile.getAbsolutePath() + " from " + inputFile.getAbsolutePath() + " because of the following Reason.", e);
    * scales the image to its new size. while scaling the Image, the code first resizes the image using the new Width Parameter.
    * If the Image is to high after scaling, it then uses the Images height to determine the scaling Factor. This method uses the
    * default compression quality to store image data.
    * @param inputFile the original Image
    * @param outputFile the File to store the scaled image to
    * @param newWidth the desired images width
    * @param newHeight the desired images height
    public static void scaleImage(File inputFile, File outputFile, int newWidth, int newHeight)
    scaleImage(inputFile, outputFile, DEFAULT_COMPRESSION_QUALITY, newWidth, newHeight);
    * scales the image to its new size. while scaling the Image, the code first resizes the image using the new Width Parameter.
    * uses the highest image compression quality by default.
    * @param inputFile the original Image
    * @param outputFile the File to store the scaled image to
    * @param compressionQuality the compression Quality of the new Image
    * @param newWidth the desired images width
    public static void scaleImage(File inputFile, File outputFile, float compressionQuality, int newWidth)
    try
    if (inputFile.exists())
    BufferedImage hiRes = ImageIO.read(inputFile);
    double scaleFactor = (double) newWidth / (double) hiRes.getWidth(null);
    int width = (int) (hiRes.getWidth(null) * scaleFactor);
    int height = (int) (hiRes.getHeight(null) * scaleFactor);
    // draw original image to thumbnail image object and
    // scale it to the new size on-the-fly
    scaleImage(outputFile, compressionQuality, hiRes, width, height);
    else
    log.error("Unable to create the thumbnail " + outputFile.getAbsolutePath() + " from " + inputFile.getAbsolutePath() + " because inputFile not exists: " + inputFile.getName());
    catch (IOException e)
    log.error("Unable to create the thumbnail " + outputFile.getAbsolutePath() + " from " + inputFile.getAbsolutePath() + " because of the following Reason.", e);
    * scales the image to its new size. while scaling the Image, the code first resizes the image using the new Width Parameter.
    * uses the highest image compression quality by default.
    * @param inputFile the original Image
    * @param outputFile the File to store the scaled image to
    * @param newWidth the desired images width
    public static void scaleImage(File inputFile, File outputFile, int newWidth)
    scaleImage(inputFile, outputFile, DEFAULT_COMPRESSION_QUALITY, newWidth);
    * This private method actually scales the inputImage to the desired height, width and compression Quality
    * @param outputFile The File in which the Image should be stored.
    * @param compressionQuality The Compression Quality to be applied to the image
    * @param inputImage the original input Image
    * @param width the height of the new Image
    * @param height the width of the new Image
    * @throws IOException
    private static void scaleImage(File outputFile, float compressionQuality, BufferedImage inputImage, int width, int height) throws IOException
    BufferedImage lowRes = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    java.awt.Image image = inputImage.getScaledInstance(width, height, java.awt.Image.SCALE_SMOOTH);
    ImageWriter writer = null;
    Iterator iter = ImageIO.getImageWritersByFormatName("jpg");
    if (iter.hasNext()) writer = (ImageWriter) iter.next();
    File outputPath = outputFile.getParentFile();
    if (outputPath != null)
    if (!outputPath.exists()) outputPath.mkdirs();
    lowRes.getGraphics().drawImage(image, 0, 0, null);
    ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile);
    writer.setOutput(ios);
    ImageWriteParam iwparam = new JPEGImageWriteParam(Locale.getDefault());
    iwparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
    iwparam.setCompressionQuality(compressionQuality);
    // save thumbnail image to OUTFILE
    writer.write(null, new IIOImage(lowRes, null, null), iwparam);
    writer.dispose();
    ios.close();
    image.flush();
    inputImage.flush();
    lowRes.flush();
    * scales the image to its new size. while scaling the Image, the code first resizes the image using the new Width Parameter.
    * If the Image is to high after scaling, it then uses the Images height to determin the scaling Factor.
    * @param inputImage the original Image
    * @param outputFile the File to store the scaled image to
    * @param compressionQuality the compression Quality to use
    * @param newWidth the desired images width
    * @param newHeight the desired images height
    public static void scaleImage(BufferedImage inputImage, File outputFile, float compressionQuality, int newWidth, int newHeight)
    try
    double scaleFactor = (double) newWidth / (double) inputImage.getWidth(null);
    int tempHeight = (int) (inputImage.getHeight(null) * scaleFactor);
    if (tempHeight > newHeight)
    scaleFactor = (double) newHeight / (double) inputImage.getHeight(null);
    int width = (int) (inputImage.getWidth(null) * scaleFactor);
    int height = (int) (inputImage.getHeight(null) * scaleFactor);
    scaleImage(outputFile, compressionQuality, inputImage, width, height);
    catch (IOException e)
    log.error("Unable to create the thumbnail " + outputFile.getAbsolutePath() + " because of the following Reason.", e);
    All Threads     702.570     100 %
    java.lang.Thread.run()     551.322     78 %
    de.ellumination.carmen.modules.screens.Image.doOutput(RunData)     170.666     24 %
    de.ellumination.carmen.modules.screens.Image.outputScaledImage(File, HttpServletResponse, int, int)     170.108     24 %
                             de.ellumination.carmen.modules.screens.Image.scaleImage(File, File, int)     170.108     24 %
                                  de.ellumination.carmen.modules.screens.Image.scaleImage(File, File, float, int)     170.108     24 %
                                       de.ellumination.carmen.modules.screens.Image.scaleImage(File, float, BufferedImage, int, int)     165.787     24 %
                                            sun.java2d.SunGraphics2D.drawImage(Image, int, int, ImageObserver)     165.189     24 %
                                            com.sun.imageio.plugins.jpeg.JPEGImageWriter.write(IIOMetadata, IIOImage, ImageWriteParam)     397     0 %
                                            javax.imageio.ImageIO$ImageWriterIterator.next()     69     0 %
                                            javax.imageio.ImageIO.createImageOutputStream(Object)     47     0 %
                                            java.awt.image.BufferedImage.<init>(int, int, int)     36     0 %
                                            java.awt.Image.getScaledInstance(int, int, int)     23     0 %
                                            java.awt.image.BufferedImage.getGraphics()     21     0 %
                                       javax.imageio.ImageIO.read(File)     4.320     1 %
                        de.ellumination.carmen.om.BaseImagePeer.retrieveByPK(int)     557     0 %
                   de.ellumination.carmen.modules.screens.Index.doBuildTemplate(RunData, Context)     1.673     0 %
              org.apache.catalina.startup.Bootstrap.main(String[])     151.225     22 %
              org.quartz.core.QuartzSchedulerThread.run()     22     0 %
    Now I am looking for the Best way to solve my problem. Maybe I am wrong from the get go.
    Runtime Setup Java 1.5.0_04 Tomcat 5.5.12 V20z (AMD64 Opteron 4gb RAM)
    Any help is heighly appreciated
    Kind regards

    This is a bad thing to do with JPEGs. You're better off just reducing the 'q' if you want a smaller/faster/lower resolution image. That way you're throwing away resolution intelligently. Using scaling you're throwing resolution away unintelligently. I was on a project where 40,000 images were scaled when they should have been low-q'd. Don't do it.

  • What are the best alternatives to Mail on a Mac?i

    After all the problem with Maverick and Apple Mail I want to change to a nother mail application.
    Apple Mail keep on jamming my iMac System (yes I installed the so called fix), using up to 2,5 GB of memory, lossing mails or give older mails as a blanc page.
    Mozilla Thunderbird, Outlook or other?
    What are the best alternatives?

    Never had problems whit Apple Mail. Till I updated to Maverick.
    First problam was Gmail after updating to Mavericks, Apple mail went to download all my old mail's over 6800. Just delleted my Gmail account form the list to stop it.
    Second issuu memory.
    First dit not now what was te problem till I found out that Apple Maill took over al my memory. Try differened tip and trick of the Apple Forums. This one works the best. Other users had the same problem after Mavericks.
    I restore my Accounts.plist form before the Maverick update.
    Looked whit TextWrangler but what am i lookong for? Do not know how is supposed to look.
    Size of Accounts.plist on 11/18 1.7MB
    Size of Accounts.plist on 23/18 3.0MB
    Hoping for the best ....

  • " Why not Emacs Be the best editor for java"

    hai friends,
    iam using emacs editor for java. i think it is the best editor for java available
    for free of cost.
    we can easily customize it based on ur needs
    we can even customize the compilation and run option with single key stroke.
    and it has many interesting and useful features like shell, bsh, cvs customization,telnet
    and a lot more....
    many software concerns had made emacs as thier offical java editor
    i donot think anybody in this world who had used the emacs will go for some other editor
    and i do want to know from u all that whether i was wrong . and
    is there any other editor which can be better than emacs
    if so give me valid reasons
    get back to me if u are not aware of emacs features
    regards
    g.kamal

    I agree with you 100% on linux side, but in
    windows(tm) there are even better editors. I
    personally use MED in windows. After trying dozens of
    different editors in linux I ended up using emacs, it
    sure is the best editor in linux (for Java atleast).
    There are still some things bugging me, for an example
    I would like the "end" button to move the cursor to
    the end of the line instead of EOF.
    I donot understand why ur saying that the "end" button is not moving the cursor to the
    end of the line
    it works fine in my machine
    plz elaborate what more features u want, bcas it may be there in emacs , but u may not have that
    much awareness in it.
    regards
    kamal

  • What is the best method for moving iTune Libraries from Old to New Computer

    Hello,
    Thanks in advance for any assistance you may offer.
    My Sony Vaio Desktop recently died and untimely death, so I just purchased an HP Notebook. I was trying to wait out the release of the possible update of the Macbook line. However the old computer didn't agree. This HP will tie me over till a new release.
    I've been doing weekly backups for over 3 years with a backup drive from Western Digital. At this point I just want to transfer my music in iTunes and applications from the App store that are loaded on to my iPod Touch into the new computer and then reauthorize and sync.
    My question is what's the best method. Oh another problem I'm having includes the latest iPhone & iPod Touch software problem of 3rd party apps not working along with the vanishing of my music on the Touch.
    Any guidance would be much appreciated.

    Open up a fresh copy of iTunes. Point iTunes in the direction of your Western Digital Harddrive. Import Folders.
    1. New Copy
    2. Edit -> Preferences -> Advanced -> General -> Change -> <the address of the iTunes library on WD>
    3. File -> Add Folder to Library -> <Select iTunes folder on WD>
    Always keep a backup of your iTunes Library file and the iTunes XML Document. If you have those, then it might be just as simple as copying those to your iTunes file folder. If you are not sure where they are, then do a search for iTunes.xml.

  • The best of java pdf Viewer ?

    What is the best of java pdf Viewer with free license?
    Thanks

    About the only decent java PDF viewer is Multivalent. It's a bit quirky, but does a fairly good job. Unfortunately, it doesn't currently support printing.
    Adobe's java viewer is ancient, not worth wasting your time with.

  • I have CS3 web standard. What is the best way to add Photoshop CS 3/CS4

    CS3 web standard works perfect for me. I just misses Photoshop. Perhaps you know the best way to solve this problem.
    Because if I buy an upgrade, it'll be a Studio.
    Second qustion: What does a Studio mean and where can I buy a studio?
    Thanks!

    I thought Web Standard included Photoshop. In any event, you can't just upgrade one component of a suite you need to upgrade the entire thing.
    Even if you just wanted Photoshop CS5 you'd have to buy a full license for $699. PS Extended will run you $999.
    Upgrading to CS5 Web Premium (there is no standard) will cost you $795 http://amzn.to/92gG02.
    Before you go that route, however, you may want to consider Design Premium for $780: http://amzn.to/8XRD7M
    I have an article on my website explaining why I think it's the best choice: http://www.theindesignguy.com/purchase-advice.shtml
    Hope that helps,
    Bob

Maybe you are looking for

  • A/r invoice Row

    when i  punch A/R Invoice it shows me an error:- you can not add or update this document,row n row number is missing. please help me.

  • Number of records in Cube and in report

    Hi, Is it possible to have less number of records visible in InfoCube and in reporting report has to show all the records?i.e., if cube contains 100000 records while using InfoCube--->manage and checking the data it has to show only 90000 records,whi

  • HT4623 my messages wont send

    ok so on my ipodtouch i click the "messages" app and i try to send my message but it will never send. The send button always stays grey and not blue.Somebody please help me. Thank you.

  • Autofill feature not working for playlists

    I'm running iTunes 8.1.1 on an 1.83GHz iMac G5 with a 4th Gen 8GB Nano. I have two AAC copies of every song in my iTunes library one at a high bitrate for the computer and the other encoded at 128kbps. I used a Smart Playlist to isolate just the 128k

  • How to reset a the contents of a JPanel

    I was just wondering the different ways one could go about resetting a JPanel. That is to clear everything then reload it. AKA a game of chess where the pieces have already been moved...then on the click of a button the pieces go back to their origin