DVI to HMDI - how to make it look better?

I am hooking up my MBP to a Sony 46" Bravia Z LCD through the HMDI connection -
how can you make the external LCD look a little bit better? Seems the MBP picks up the signal and recognizes the Sony screen - but the colors don't look like my MBP screen - you know what I mean?
I suppose this is as good as it gets? Is this how it always looks when connected to a normal TV LCD?
Thanks

Yeah I understand the bit about the ratios, that's not a problem, I am able to tweak it to whatever I want it to fit onto the 16x9 screen -
it's the way it "looks" on the TV compared to what it looks like on my MBP. I'm assuming it's as good it gets on the TV since it is a "TV" and thus is not going to look exactly the same as my MBP, as the TV has its own set of colors and such?
Thanks

Similar Messages

  • I subscribed for itunes imatch - it works perfectly on my i-pad and iPhone - however on my macbook - my iTunes can no longer find my songs - i don't know how to make it look to the cloud to play my music

    i subscribed for itunes imatch - it works perfectly on my i-pad and iPhone - however on my macbook - my iTunes can no longer find my songs - i don't know how to make it look to the cloud to play my music - i think it keeps trying to find on the external harddrive where i used to keep my music

    Of course iTunes is looking for the music on the external HDD. Enabling iTunes Match does not magically change the location of the iTunes library to the cloud.
    To play the music either plug the external HDD back into your computer or create a new, empty library to use for streaming the iTM content. The latter can be accomplished by holding down the Option key when launching iTunes, choosing "create library" then enabling iTunes Match on the new library. DO NOT have iTunes scan your HDD for music.

  • How to make website look correct in Safari, Firefox, and Chrome?

    Hello there. I'm working on a website which was inherited to me by someone who died. So I am left with all of his coding which is about 4 years old. Now I'm working on positioning of the website and i've found that the only browser the website looks like it's supposed to is Safari and I can't for the life of me figure out how to make it look right in all the browsers and on a phone or tablet. It might be easier if I started from scratch but unfortunately I don't get that luxury. Please help me.
    Here's a link...MuseumOfNaturalistory.com

    I dont understand what some of these errors are asking of me. For instance, this one...
    if (xmlhttp.readyState==4 && xmlhttp.status==200)

    This message may appear in several cases:
    You tried to include the "<" character in your page: you should escape it as "&lt;"
    You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    Another possibility is that you forgot to close quotes in a previous tag.
    That's the way the code has to be in order to function. What does it want from me?
    And then here....
    Line 71, Column 5: an attribute value must be a literal unless it contains only name characters   </div>✉You have used a character that is not considered a "name character" in an attribute value. Which characters are considered "name characters" varies between the different document types, but a good rule of thumb is that unless the value contains only lower or upper case letters in the range a-z you must put quotation marks around the value. In fact, unless you have extreme file size requirements it is a very very good idea to always put quote marks around your attribute values. It is never wrong to do so, and very often it is absolutely necessary.
    Line 71, Column 5: character "<" is not allowed in the value of attribute "id"   </div>✉It is possible that you violated the naming convention for this attribute. For example, id and name attributes must begin with a letter, not a digit.
    I have absolutely no clue what it is asking of me. Doesn't it have to be that way? Also why when I go to "Line 71" that isn't where this actual code is? Is there some special way to decipher this?

  • How to make HD look like 4K

    I found this article rather interesting. If I had to try and make a silk purse out of a sow's ear, I would read this one again.
    RedShark News - How to make HD look like 4K

    I'd forgotten about RedShark in general ... thanks for the heads-up.
    And the point about the "impression" being at times more important than the reality (especially if not well handled) is well taken. Working professional stills for many years now ... I've had large prints that even at close inspection looked much cleaner, sharper, and less noisy than other photog's made who had "larger" sensors ... but did their post not as righteously as I did. How you set up & shoot the image/s in the first place matters ... as does how you handle your post & output.
    Craft matters ...  

  • Suggestions on how to make this coding better?

    Hey everyone, I was just wondering if anyone had any suggestions on how to make my code better. It's for a project and I want to get a good grade on it. It works fine but I just want to see what everyone thought before I hand it in.
    import java.io.*;
    import java.util.StringTokenizer;
         This class process the input expressions containing rational expressions and proecesses them and then outputs the results.
         @author *****
         @version 1.0
    public class Proj1
         private static String buffer = null; //User input
         private static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
         private static PrintWriter outfile = null;
         private static int totCount = 0, goodCount = 0, badCount = 0; //Total, Valid, and Invalid counts
         private static boolean fileInput = false; //File to read data
         private static boolean fileOutput = false; //Output for the data
         private static boolean screenOutput = false; //Output so the user can view it
         private static String outFile = null; //File for output
         private static String inFile = null; //File for input
              Main method
         public static void main (String[] args) throws Exception
              Proj1 proj1 = new Proj1();
              proj1(args);
              runs the program
         private static void proj1(String [] args) throws Exception
              if (args.length == 0)
                   printBanner();
                   System.out.println("\n" + "\n" + "Please enter an expression, or type quit");
                   do
                        screenOutput=true;
                        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
                        processData();
                   }while(!buffer.equals("quit"));//exits if quit is entered
              if (args[0].charAt(0) != '-')
                   badOption("Invalid Option Specified ");
              for(int i=1; i<args[0].length(); i++)
                   switch(args[0].charAt(i))
                        case 'f': fileInput = true;
                                    break;
                        case 'o': fileOutput = true;
                                    break;
                        case 'b': fileOutput = true;
                                    screenOutput = true;
                                    break;
                        default:  printBanner();
                                    invalidOption("Proj1: Invalid Option Found: " + args[0].charAt(i));
              if(fileInput && args[0].length() == 2)
                   screenOutput = true;
              if(fileInput && !fileOutput)
                   if(args.length == 1)
                        badOption("No Input File Specified.");
                   else
                        File inFile = new File(args[1]);
                        if(!inFile.exists())
                             nonExist("Input File " + args[1] + " not found");
                   br = new BufferedReader(new FileReader(args[1]));
                   printBanner();
                   processData();
                   closeFiles();
              if(fileOutput && fileInput)
                   printBanner();
                   if(args.length > 2)
                        outFile = args[2];
                   else
                        if(args.length > 1)
                             outFile = "proj1.dat";
                             noOut("No output file specified , defaulting to proj1.dat");
                   inFile = args[1];
                   br = new BufferedReader(new FileReader(inFile));
                   processData();
                   closeFiles();
              if(fileOutput && screenOutput)
                   printBanner();
                   if(args.length == 1)
                        outFile = "proj1.dat";
                        noOut("No output file specified, defaulting to proj1.dat");
                        System.out.println("\n" + "\n" + "Please enter an expression, or type quit");
                        BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
                        processData();
                        closeFiles();
                   else
                        outFile=args[1];
                        System.out.println("\n" + "\n" + "Please enter an expression, or type quit");
                        br = new BufferedReader(new InputStreamReader(System.in));
                        processData();
                        closeFiles();
         Processes the input data by the user by doing the specified operations and then displays the output
         private static void processData() throws Exception
              if(fileOutput)
                   outfile = new PrintWriter(new FileOutputStream(outFile), true);
              else if(fileOutput && screenOutput)
                   outfile = new PrintWriter(new FileOutputStream(outFile), true);
              buffer = br.readLine();
              while(!buffer.equals(""))
                   StringTokenizer reader = new StringTokenizer(buffer);
                   int count = 0;
                   String number1 = null;
                   String number2 = null;
                   String op = null;
                   boolean valid = true;
                   boolean secondNumber = true;
                   while (reader.hasMoreTokens())
                        switch(count)
                             case 1: number1 = reader.nextToken();
                                       break;
                             case 2: op = reader.nextToken();
                                       break;
                             case 3: number2 = reader.nextToken();
                                       break;
                        count++;
                   if(number1 == null || number1.equals("quit"))
                        printSummary(goodCount, badCount, totCount);
                        closeFiles();
                   if(number2 == null)
                        secondNumber = false;
                   char character;
                   int position = 0;
                   String s = "0123456789/-";
                   for(int i = 0; i < number1.length(); i++)
                        character = number1.charAt(i);
                        position = s.indexOf(character);
                        if(position == -1)
                             valid = false;
                   if(secondNumber)
                        for(int i = 0; i < number2.length(); i++)
                             character = number2.charAt(i);
                             position = s.indexOf(character);
                             if(position == -1)
                                  valid=false;
                   int denomin2 = 0;
                   int numer2 = 0;
                   String n1 = null;
                   String d1 = null;
                   int izerCount = 0;
                   StringTokenizer st2 = new StringTokenizer(number1,"/");
                   while(st2.hasMoreTokens())
                        switch(izerCount)
                             case 1: n1 = st2.nextToken();
                                       d1 = "1";
                                       break;
                             case 2: d1 = st2.nextToken();
                        izerCount++;
                   int numer1;
                   int denomin1;
                   int tokenCount = 0;
                   if(valid)
                        numer1 = Integer.parseInt(n1);
                        denomin1 = Integer.parseInt(d1);
                        String n2 = null;
                        String d2 = null;
                        if(secondNumber)
                             StringTokenizer st3 = new StringTokenizer(number2, "/");
                             while(st3.hasMoreTokens())
                                  switch(tokenCount)
                                       case 1: n2 = st3.nextToken();
                                                 d2 = "1";
                                                 break;
                                       case 2: d2 = st3.nextToken();
                                  tokenCount++;
                             numer2 = Integer.parseInt(n2);
                             denomin2 = Integer.parseInt(d2);
                             RationalNumber z1 = new RationalNumber(numer2, denomin2);
                        RationalNumber z = new RationalNumber(numer1,denomin1);
                        RationalNumber z1 = new RationalNumber(numer2,denomin2);
                        boolean lt = true; //whether the first number is less than the second
                        boolean gt = true; //whether the first number is greater than the second
                        boolean eq = true; //whether the first number is equal to the second
                        boolean le = true; //whether the first number is less or equal to the second
                        boolean ge = true; //whether the first number is greater than or equal to the second
                        boolean zeroDenom = true; //whether the denominator is zero
                        if(denomin1 == 0 || denomin2 == 0)
                             zeroDenom = true;
                             badCount++;
                        else
                             zeroDenom = false;
                        if(!zeroDenom && secondNumber)
                             if(op.equals("+"))
                                  RationalNumber z2 = z.add(z1);
                                  if(screenOutput)
                                       System.out.println(buffer + " = " + z2.getNumerator()+ "/" +z2.getDenominator());
                                  if(fileOutput || fileOutput && screenOutput)
                                       outfile.println(buffer + " = " + z2.getNumerator()+ "/" +z2.getDenominator());
                                  goodCount++;
                             else if(op.equals("-"))
                                  RationalNumber z3 = z.sub(z1);
                                  if(screenOutput)
                                       System.out.println(buffer + " = " + z3.getNumerator()+ "/" +z3.getDenominator());
                                  if(fileOutput || fileOutput && screenOutput)
                                       outfile.println(buffer + " = " + z3.getNumerator()+ "/" +z3.getDenominator());
                                  goodCount++;
                             else if(op.equals("*"))
                                  RationalNumber z4 = z.mlt(z1);
                                  if(screenOutput)
                                       System.out.println(buffer + " = " + z4.getNumerator()+ "/" +z4.getDenominator());
                                  if(fileOutput || fileOutput && screenOutput)
                                       outfile.println(buffer + " = " + z4.getNumerator()+ "/" +z4.getDenominator());
                                  goodCount++;
                             else if(op.equals("/"))
                                  RationalNumber z5 = z.div(z1);
                                  if(screenOutput)
                                       System.out.println(buffer + " = " + z5.getNumerator()+ "/" +z5.getDenominator());
                                  if(fileOutput || fileOutput && screenOutput)
                                       outfile.println(buffer + " = " + z5.getNumerator()+ "/" +z5.getDenominator());
                                  goodCount++;
                             else if(op.equals("<"))
                                  lt=z.lt(z1);
                                  if(screenOutput)
                                       System.out.println(buffer + " is " + lt);
                                  if(fileOutput || fileOutput && screenOutput)
                                       outfile.println(buffer + " is " + lt);
                                  goodCount++;
                             else if(op.equals(">"))
                                  gt=z.gt(z1);
                                  if(screenOutput)
                                       System.out.println(buffer + " is " + gt);
                                  if(fileOutput || fileOutput && screenOutput)
                                       outfile.println(buffer + " is " + gt);
                                  goodCount++;
                             else if(op.equals("="))
                                  eq=z.eq(z1);
                                  if(screenOutput)
                                       System.out.println(buffer + " is " +  eq);
                                  if(fileOutput || fileOutput && screenOutput)
                                       outfile.println(buffer + " is " +  eq);
                                  goodCount++;
                             else if(op.equals("<="))
                                  le=z.le(z1);
                                  if(screenOutput)
                                       System.out.println(buffer + " is " + le);
                                  if(fileOutput || fileOutput && screenOutput)
                                       outfile.println(buffer + " is " + le);
                                  goodCount++;
                             else if(op.equals(">="))
                                  ge=z.ge(z1);
                                  if(screenOutput)
                                       System.out.println(buffer + " is " + ge);
                                  if(fileOutput || fileOutput && screenOutput)
                                       outfile.println(buffer + " is " + ge);
                                  goodCount++;
                             else
                                  if(op==null)
                                       if(screenOutput)
                                            System.out.println("Invalid expression: " + buffer);
                                       if(fileOutput || fileOutput && screenOutput)
                                            outfile.println("Invalid Expression: " + buffer);
                                       badCount++;
                             else
                                  if(screenOutput)
                                       System.out.println("Invalid expression: " + buffer );
                                  if(fileOutput || fileOutput && screenOutput)
                                       outfile.println("Invalid expression: " + buffer);
                                  badCount++;
                        else
                             if(screenOutput)
                                  System.out.println("Invalid operand: " + buffer);
                             if(fileOutput || fileOutput && screenOutput)
                                  outfile.println("Invalid operand: " + buffer);
                   else
                        if(screenOutput)
                             System.out.println("Invalid operand: " + buffer);
                        if(fileOutput || fileOutput && screenOutput)
                             outfile.println("Invalid operand: " + buffer);
                        badCount++;
                   buffer = br.readLine();
         Prints the banner for the program
         private static void printBanner()
              System.out.println("+++++++++++++++++++++++++++++++++++++++++"+"\n"+"+Welcome to the expression connection   +"+"\n"+"+++++++++++++++++++++++++++++++++++++++++");
         Prints the total number of expressions, total number of valid expressions, and total number of bad expressions.
         private static void printSummary(int goodCount, int badCount, int totCount)
              totCount = goodCount + badCount;
              System.out.println("\n");
              System.out.println("+++++++++++++++++++++++++++++++++++++++++");
              System.out.println("+ Total Expressions:        "+totCount);
              System.out.println("+ Total Valid Expressions   "+goodCount);
              System.out.println("+ Total Bad Expressions     "+badCount);
              System.out.println("+++++++++++++++++++++++++++++++++++++++++");
         Prints the error message if there is no output file specified
         private static void noOut(String errorString)
              System.out.println("\n");
              System.out.println("Proj1: " + errorString);
         Prints the error message if there is an invalid option input by the user
         private static void invalidOption(String errorString)
              System.out.println("\n");
              System.out.println("Proj1: " + errorString);
              System.out.println("Proj1: Usage is: java proj1 [-fob] [input] [output]");
              System.exit(0);
         Prints the error message if there is a bad option input by the user
         private static void badOption(String errorString)
              System.out.println("\n");
              System.out.println("Proj1: " + errorString);
              System.out.println("Proj1: Usage is: java proj1 [-fob] [input] [output]");
              System.exit(0);
         Prints the error message if the input file does not exist
         private static void nonExist(String errorString)
              System.out.println("\n");
              System.out.println("Proj1: " +errorString);
              System.out.println("Proj1: Usage is: java proj1 [-fob] [input] [output]");
              System.exit(0);
         Closes the files used by the user
         private static void closeFiles( )
              if(fileOutput && !screenOutput)
                   outfile.close();
              System.exit(0);
    }

    Well working is good...
    The code itself is less than spectacular I'm afraid. There is very little
    OOness to this. For your future reference when you complete a program
    and it consists of nothing but static methods you have done something
    incorrectly.
    As far as the code you do have goes some refactoring would be nice.
    The two main methods you have (proj1 but especially processData) are
    too long and unwieldy. processData seems to be a program in an of
    itself. It's complicated and hard to follow.
    My recommendation to you would be to read this http://java.sun.com/docs/books/tutorial/java/index.html
    Especially focus on the sections dealing with explanation of Object
    programming. These terms and concepts can certainly be confusing to
    new programmers so you may also want to consider finding yourself a
    tutor to help you get a better grasp of these concepts.
    In short if it works that's good. And it's also good to see that you put the
    effort and time in that you have. However if I was grading your project
    I'd give it a C- at best because this is a Java program in syntax only.

  • Simple motion animation - any way I can make this look better ?

    Hello All;
    I would like your thoughts and tips. I created a simple animation in AE CS3 that I am going to use in a video. I would like to know if there is anything you'd suggest I do to make it look better ? Would you suggest adding a horizontal blur during the motion portion and if so, what type of Blur in AE CS3 ? Thanks for any tips you can provide.
    Tim

    Commenting on just the motion, not the design I'd enable motion blur and maybe increase the shutter angle from the default of 180º to about 360º. I'd also put in an ease in and ease out. You could just select all the keyframes and press F9.
    On the design, I'd try a gradient for the background and work a little on the typography so that it's a little more readable.

  • Bridge: How to make PDF looking like this:

    I try to arrange my images in PDF document, which I'm making in Adobe Bridge CS5.
    I want to make this looking something like this:
    How to make it?

    Or get a decent program like Contact Sheet X.
    http://csx.riaforge.org/

  • How do experienced editors/colorists make video look better? Any tips?

    I am an amateur editor working on a documentary about WW II airplanes.
    The footage was shot on a Cannon HV30 in HDV with the 30p mode. The footage looks great (with some needing color correction), but still looks "videoish" when played on a standard TV.
    I was just curious about what more experienced and artistic editors use to make their material look better.
    I'm not talking about drastic changes like one might make to a dramatic film, but slight stylistic changes/additions to take the edge off of the video.
    For example I've read about adding a very slight channel blur, reducing the contrast a bit, etc.
    Any tips would be appreciated.
    BTW, I've stayed in HDV for the edit and will follow these instructions for finally ending up on a SD DVD: http://www.kenstone.net/fcphomepage/hdv_timeline_to_sddvd.html

    It really depends on the tools that you have. It sounds like your are using a consumer grade camera to shoot a documentary, which makes color grading in post that much more important. Obviously the better the camera and lighting the better your video/film is going to look. Because your working with a HV30 you're going to have to take a few extra steps to make your footage shine in post. I'm not a huge fan of Magic Bullet. If your under a deadline, and you want to impress a client, sweet use it, but if you take pride in your work as a digital artist, and want to understand how color grading works with video I would recommend getting to know these programs: After Effects, Photoshop, Color, and Final Cut Pro. Each of those programs has the following effects/parameters that you can use for color grading: Saturation, Levels, Curves, Contrast/Brightness, and Composite Modes in FCP, PS, and AE. Do not get too comfortable using 3rd party plugins otherwise you'll become dependent on them.
    Peace
    GC

  • How to make a look & feel

    I want make a look and feel like available in the pic. In the Below Link
    http://ddsuresh.150m.com/controls.jpg
    Anybody can give a idea.

    I went through that website. But still i did not the look and feel what I need.
    http://ddsuresh.150m.com/index.html
    Once again visit the above website and give ur ideas. How to make look and feel.

  • How to make it look like the actors are watching TV

    Hi,
    I am looking to add an effect in Adobe Premiere Pro CC to make it look like the actors are watching TV in the dark. Just a soft pulsating, bluish-white light that may vary throughout. Does anyone know how to do this? I've tried scouring the internet but haven't found much. I'm a beginner for sure, but trying to learn!
    Thanks so much,
    -Andy

    In the effects panel type "light" in the search box. This will bring up all the lighting effects in Pr. Adjusr/Lighting or Stylize/Strobe might work for you. There are a lot of adjustments you can key in until you find what suits your needs.

  • How to make it look like the camera is following a zig zagging line

    I have an animated video where a person clicks a button and an arrow appears coming out of the right side of the computer. I would like to make it look like the camera follows the arrow as it zooms along a zig zag path and eventually ends at another computer.  Does anyone know of any good tutorials for this? 
    Thanks,
    Paul

    This is just a matter of keyframes for camera position and point of interest.You are probably not going to find a tutorial that exactly matches your project. Try this:
    Open up 2 views, one active camera, one top view.
    Set a position keyframe for the camera where you want the movement to start.
    Drag the point of interest to point at your subject (animated arrow)
    Using the top view and setting the CTI (current time indicator) to the end point of the camera move, move the camera's point of interest  to the same position as the animated arrow
    Still in the top view, move the camera to it's final position
    Using the pen tool (keyboard shortcut g) add points to the camera position path and drag them into a zig zag shape using the top view
    Selecting the Point of interest in the timeline, adjust the position of the point of interest to follow the arrow as it animates across the screen by moving the CTI and setting new positions.
    Another thing you could do would be just to use a lookAt expression for point of interest. This would keep the camera pointed at the arrow.
    Hope this helps. Animating a camera is one of the most basic skills an AE artist should have. It takes a bit of practice but it's not hard.

  • How to make it look like you never bought a movie.

    Ok....so....I accidentally bought a really inappropriate movie on iTunes and REALLY need to make it look like I never bought it.........like TOTALLY delete it from my purchase history...I don't care about the money, its just I don't want the movie to be in the cloud anymore! PLEASE HELP! I am freaking out!!!! I want to make it look like I never bough the movie ever! SURELY there is a way to do this.....THANKS!

    Make a new account and use that, you will lose your entire history and will need to authorize the new account to play things from the old.
    Drastic, but I know of no other way.

  • Quick, easy ways to make images look better?

    What are the best ways to make images look a bit better? I shot my footage using a pretty bad camera, so quality already isn't the greatest, but what is the best way to make images look a bit more "movie-like"? The 3way color correstion is nothing for me, it's too hard to make images look good, they'll quickly turn too yellow or red, etc... Something to improve contrast maybe? Using Image Control: Brightness and contrast (bezier) doesn't seem to help much.

    Okay, I took a couple of screenshots:
    http://www.majhost.com/gallery/TheDarkBrickX/Random/film/afbeelding_1.png
    http://www.majhost.com/gallery/TheDarkBrickX/Random/film/afbeelding_2.png
    http://www.majhost.com/gallery/TheDarkBrickX/Random/film/afbeelding_3.png
    http://www.majhost.com/gallery/TheDarkBrickX/Random/film/afbeelding_4.png
    Now I don't know alot about image quality or color, but I think there is not enough contrast? It all looks very cold. Luckily, image quality isn't the most important thing in this project, but it would be nice to be able to touch it up a little bit.

  • Advice on how to make this look up?

    Hello everyone.
    I was wondering if anyone can give me advice on how to do this to make it the last complex.
    I thought up some complex solutions that will work but seem messy in some ways.
    I need to create a look up, I'm parsing a file and transforming it based on its field name and field value. If a certain field name and field value is found, I need to create specific subfields. An example is:
    say I read in a file and I come across
    A class named interface
    with a data field DisplayStatus and field type: INTEGER INIT(132)
    DisplayStatus INTEGER INIT(132)
    Then I need to create a file that looks like this:
    DisplayStatus INTEGER INIT(132);
    OP 'interface'.'DisplayStatus'
    HAS_SUBFIELD NOTIFY;
    OP 'interface'.'DisplayStatus'
    HAS_SUBFIELD TIMESTAMP;
    OP 'interface'.'DisplayStatus'
    HAS_SUBFIELD CHANGE;
    OP 'interface'..'DisplayStatus'.CHANGE
    SUBFIELD_HAS_VALUE (METHODSPEC) (DUIFCRDC) ;
    OP 'interface'.'DisplayStatus'
    On the other hand, if I run across a field name:
    CommandIndicator CHARVAR;
    Then I need to create the following in a file:
    CommandIndicator CHARVAR;
    OP 'interface'.'CommandIndicator'
    HAS_SUBFIELD NOTIFY;
    So you can see, based on a specific field name, and data type, they have unique data types.
    My solution was going to store a text file that contained all the field names, data types and subfields, and just create a map, so based on the field name, it will look up the value which wil be the subfields, but you can see the sub fields can either be 1 line long, or it can be multiple lines long, thats where I'm running into issues.
    What type of data structure would I use? a Map<String, List<String>> ? or is that making it more complicated than it ahs to be?

    To make sure I understood you correctly:
    You have a file like
    class classname
    fieldname1 DATATYPE1 constraint
    fieldname2 DATATYPE2 constraintyou want
    OP 'classname'.'fieldname1'.some optional string
    some line defined by DATATYPE1
    ...How would you store "some optional string" in a Map<String, List<String>>?
    Do you just replace a special char sequence with 'interface'..'DisplayStatus'?
    If so, why not just store the lines in one String including the line breaks, making the list dispensable?
    Regarding XML:
    I guess he meant that if you had both your source files in xml, you could do what you want via XSL transformation.
    But you'll have to google for that yourself. It has been a while since I worked with that.

  • [SOLVED] How to make URxvt look like default XTerm?

    I don't want to install terminus-font or something else. Just want to make XTerm and URxvt look equal.
    I prefer URxvt over XTerm for its performance, but default URxvt looks ugly comparing to default XTerm: for example default bitmap font (fixed) is broken whereas it looks beatiful on XTerm.
    Also colors in URxvt do not match to those in console and XTerm (which seem to be the same) - highlighted directories, executables, prompt, etc which seem to be darker.
    How do I fix it?
    Help is appreciated, as always.
    Thanks.
    Last edited by eruditorum (2012-12-07 09:35:23)

    I believe the default xterm fonts are listed in /usr/share/X11/app-defaults/XTerm.  I may be wrong but I think you want to specify the urxvt font as:
    -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso10646-1
    This will be incorrect if you do not have the xorg-fonts-75dpi package installed.  If you don't have that package installed, I'm not sure what font is used in its place by either emulator.
    WIthout specifying the terminal colors in my ~/.Xdefaults or ~/.Xresources file, I also found the two terminals' colors do not appear the same.  I have configured the colors so they are identical in both apps.  This excerpt from my .Xdefaults uses the asterisk, *, as a wild card so the colors I have chosen apply to both terminals.
    ! Colors
    *foreground: rgb:b2/b2/b2
    *background: rgb:08/08/08
    ! 0 black, 1 red, 2 green, 3 yellow, 4 blue, 5 magenta, 6 cyan, 7 white
    ! 8 black, 9 red, 10 green, 11 yellow, 12 blue, 13 magenta, 14 cyan, 15 white
    *color0: rgb:28/28/28
    *color1: rgb:ba/44/44
    *color2: rgb:50/94/43
    *color3: rgb:cd/a8/38
    *color4: rgb:52/76/a8
    *color5: rgb:c0/52/88
    *color6: rgb:44/ba/ae
    *color7: rgb:b2/b2/b2
    *color8: rgb:58/58/58
    *color9: rgb:ff/9d/80
    *color10: rgb:84/bd/79
    *color11: rgb:ff/e6/98
    *color12: rgb:82/a4/d3
    *color13: rgb:c6/84/a5
    *color14: rgb:a7/d8/d4
    *color15: rgb:e4/e4/e4

Maybe you are looking for

  • MacBook Pro 8,1 no OS to boot?

         OK, so here is the problem. When I boot up my Mac, it loads up rEFIt, but only has the 'Legacy OS' option, which points to no operating system. Before, I had the option for Windows 8, and OSX Mavericks. In essence, my Mac has absolutely no OS to

  • Printing with OS 9

    Help! i had to reinstall my system and lost all the settings for printing and am trying to print out of Classic onto an Epson R320. I can print out of OSX 3.7 but the printer doesn't show up when I go to the printer utility in 9 ( and try to set up p

  • Create a pdf from Webdynpro Java DC & save the file locally

    Hi I have a webdynpro application in which I want a functionality to create a PDF and save the PDF locally on the desktop. I want to create a button in the view which should trigger an action to generate a pdf automatically and should give an option

  • IPhoto 9.4.3 -not able to load image to view/edit

    I have iPhoto 9.4.3 and am running 10.7.5 OS.  I am able to see photo thumbnnails, zoom and see info on the image, however, I can not load the image to view or edit.  When I try to click on the image I get a black screen.

  • How to avoid failure to my downloads

    As a very frustrated person and with very little patience, i need easy help figuring out why my downloads wont finish, please n thank you