Having a few difficulties with charAt...

Hello,
I am a beginner to Java. I know most of the basics and I am still in a learning process. I am trying to write a program that lets a user enter in any word and prints out the number of vowels and consonants (and any other character) in the word. My first problem is understanding the concept of what I am supposed to do. I am extremely confused. How am I suppose to know to know what word a user would write? I won't know which character positions to use unless I know the word, which is the hard part. Does anyone know how to write this program, and if so, how? I appreciate all help. Thank you!

import java.io.*;
public class test{
public static void main(String[] args) {
try{
     BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
// in is the object that allows things to be read from the user
     System.out.print("Please enter a string: ");
     String str = in.readLine(); // tells the system to accept user input
     System.out.println("This is the string typed by the user: "+str);
// loop and char check is put into here
}catch(Exception e){}
this would read the user input and allow u to start ur program off wat you wan to do then is probably use the string.charAt() method in a for loop to cycle through all the letters in the given input and check wat type of char it is.. then print out ur results.
so the program will like this:
import java.io.*;
public class test{
public static void main(String[] args) {
try{
     BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
     System.out.print("Please enter a string: ");
     String str = in.readLine();
     System.out.println("This is the string typed by the user: "+str);
     int vowel = 0;
     int consta = 0;
     for(int i = 0;i < str.length(); i++){
     char c = str.charAt(i);
     if((c=='a')||(c=='e')||(c=='i')||(c=='o')||(c=='u')) vowel++;
     // checks for vowels and increments counter.
     else if(!(c=='a')&&!(c=='e')&&!(c=='i')&&!(c=='o')&&!(c=='u')) consta++;
     // this conditions shud be true if not any vowel so must be constanent
     System.out.println("there were "+vowel+" Vowels and "+consta+" Constanents.");
}catch(Exception e){}
this should work for u... its a very simple example and you can use other things to check the chars but its a good place to start. you will need the change the if statements though if you want to check for more detail on the strings.

Similar Messages

  • Hi Apple! I am having a few problems with my 6 month old iPad mini (ios 7.1.1). I am using my iPad and then some time later it just restars! Don't know why and it just keeps doing it! Please fix or if I restore my iPad will it do any good? Thank you

    Hi Apple! I am having a few problems with my 6 month old iPad mini (ios 7.1.1). I am using my iPad and then some time later it just restars! Don't know why and it just keeps doing it! Please fix or if I restore my iPad will it do any good? Thank you

    Plug your iPad into your computer, open iTunes, and click Restore. This will reset your iPad to factory settings, so make sure everything important is stored safely. Once the restore is complete, do NOT restore from your backup.
    If you still have problems, take the iPad to the Apple Store or another AASP (Apple Authorised Service Provider). If you're still within warranty, any service will be of no cost. Check your serial number here or find your receipt.
    Hope I've helped!
    PS: This is a peer-to-peer forum. Apple generally doesn't pay attention here.

  • I'm having a few issues with Safari, can anyone help?

    Hello, all,
    I'm having a few annoying little issues with Safari at the moment, hopefully someone can help and it'll be an easy fix, but I'm stumped at the moment.
    1. Every time I close and quit Safari it freezes and I have to 'force quit' the app. Not the biggest of problems but it's a little annoying.
    2. Once I open Safari back up it reloads with whatever window was open when I quit, even if my Mac has been turned off.
    3. Safari is eating up a lot of my RAM at the moment. 'Activity Monitor' is telling me it's taking up between 2-6GB of Memory.
    Anybody have any ideas?
    Thanks in advance.

    Try a basic Safari reset.
    Safari/Preferences/Advanced - enable the Develop menu, then go there and Empty Caches. Quit/reopen Safari and test. Then try Safari/History/Show History and delete all history items.  Quit/reopen Safari and test. You can also try try Safari/Clear History and Web Site Data. The down side is it clears all cookies.Doing this may cause some sites to no longer recognize your computer as one that has visited the web site.

  • Having a few issues with several programs (tor / mpd / ccm..)

    Hey everybody,
    I'll arrange this post in 3 parts since I have 3 different kinds of "major" problems or questions .
    1st ( tor - privoxy - polipo - iptables )
    I somehow found this article in your wiki and therefore tried to get tor and privoxy up and running on my desktop machine, as this didn't work as I hoped it would I searched farther in the wiki and installed and configured (as far as I've thought of) polipo and iptables.
    Now I've put all 4 of them in my rc.conf, but somehow some of my http connections don't seem to work in chromium while iptables is running (https works fine though [e.g. archwiki works, youtube doesn't]).
    I did everything as suggested in the polipo wiki entry, meaning I changed my /etc/iptables/iptables.rules to
    *nat
    :PREROUTING ACCEPT [0:0]
    :POSTROUTING ACCEPT [0:0]
    :OUTPUT ACCEPT [0:0]
    -A OUTPUT -p tcp --dport 80 -m owner --uid-owner polipo -j ACCEPT
    -A OUTPUT -p tcp --dport 80 -j REDIRECT --to-ports 8123
    COMMIT
    and removed all proxy settings from my browser - meaning all corresponding flags in the startcommand. I also added "forward / localhost:8123" to the privoxy config and changed the polipo configuration according to the wiki in order to work with tor (the socksParentProxy, socksProxyType part).
    now the next problem - that might probably be related to the first - is that my privoxy doesn't load in daemon mode anymore.
    I think it's since I've installed polipo that privoxy began to refuse starting together with the other daemons
    [usR@machine ~]$ privoxy
    Apr 23 00:20:56.459 b75086c0 Fatal error: can't check configuration file '/home/usR/config': No such file or directory
    this is the output I get when I try to start privoxy in normal user mode from the terminal, when I try starting the daemon manually (/etc/rc.d/privoxy start) it says
    touch: cannot touch `/var/log/privoxy/logfile': Permission denied
    chgrp: cannot access `/var/log/privoxy/logfile': Permission denied
    chmod: cannot access `/var/log/privoxy/logfile': Permission denied
    touch: cannot touch `/var/log/privoxy/jarfile': Permission denied
    chgrp: cannot access `/var/log/privoxy/jarfile': Permission denied
    chmod: cannot access `/var/log/privoxy/jarfile': Permission denied
    Apr 23 00:22:34.490 b76396c0 Fatal error: Cannot setgid(): Insufficient permissions.
    [/var/log/privoxy belongs to privoxy:adm]
    when I do the same in sudo mode it just fails without displaying an error message..
    I added this code to the /etc/rc.d/privoxy executable but I still get this owner conflict error and I have no idea what might be causing it.
    if [ ! -d /var/log/privoxy ]
    then
    mkdir /var/log/privoxy
    touch /var/log/privoxy/errorfile
    touch /var/log/privoxy/logfile
    chown -R privoxy:adm /var/log/privoxy
    fi
    If the order of the daemons in rc.conf is of any real importance here a copy of my setup
    ( @polipo @privoxy @syslog-ng !set-hw-addr !iptables @network netfs hddtemp @crond hal dbus @alsa @slim @tor )
    2nd ( mpd & mpc )
    I'm just wondering if there's a way to output the position of a track in the current playlist combined with a search. since mpc search <type> <query> only prints out full file path and name, but not the position in the playlist so that you could play it with mpc play. I thought of a method to print out the whole list with mpc playlist and pipe this output into a listing program, than grep out the song I'm looking for all that in a little bash script, to replace mpc search.
    Is there an integrated mpc search function that works the way I imageine it and my idea therefore redundant, or if not, is it realizable the way I picture it; does such a listing program exist?
    3rd ( cairo-compmgr )
    Since I'm already posting here I thought I'd mention my older problem which I  still couldn't solve.
    1st) I need to start cairo-compmgr(-git) in sudo mode to be able to edit any settings or activate the gui in any way. how do I automatically start the program on startup in sudo mode? I tried editing ~/.fluxbox/startup & ~/.fluxbox/init, even tried adding it in /etc/rc.d/ and /etc/rc.conf in order to start it as a daemon (lol, noob) but none of that worked properly obviously Any ideas? I don't want to start it manually and "waste" a terminal window for that every time I boot.
    2nd) I can change opacity (transparency) in both versions only per hotkey, and when I do so the settings don't get saved, they even get reset to normal opacity as soon as another window gets selected. does anybody know if there's a config file or any way to save opacity settings for certain windows & programs, so that they automatically get loaded when cairo starts and stay applied until it gets closed?
    [or generally: how do I configure the Plugins? ]
    the last "problem" which occurs only with cairo-compmgr-git:
    When I rightclick the ccm icon in the task bar and disable the composite desktop, the whole program kills itself oO
    In the old version the option "Composite desktop"'s box just got un-checked and I could easily restart ccm by rightclicking the logo again and re-enabling the "Composite desktop" option.
    Any clues on that by any chance?
    I'm using Fluxbox by the way, if that's of any importance for any of the problems. hope I didn't forget any important information if so please remind me
    Would be thankful for any kind of help
    have a nice weekend
    deF
    //edit:
    concernig the tor / privoxy problem, I managed getting all the daemons to start up at bootup again, my iptables situation remains the same though.
    I went through all the config files again and played around with chown and chmod a little and for now the system is stable, everytime I reboot all the daemons start without any problems.
    but when i start chromium with --proxy-server=localhost:8118 now, I get the following error message
    The following error occurred while trying to access http://torcheck.xenobite.eu/index.php?:
    504 Connect to torcheck.xenobite.eu:80 failed: SOCKS error: network unreachable
    Generated Sat, 23 Apr 2011 04:49:08 CEST by Polipo on archzor.localdomain:8118.
    notably with all programs running now, tor, polipo, privoxy (and by now dansguardian as well)..
    I'm tired so I'll go asleep now, maybe I'll find something tomorrow in the logfiles or whatever, so far:
    every kind of help is still very appreciated
    ²
    /var/log/polipo/polipo.log
    Disabling disk cache: No such file or directory
    Couldn't bind: Address already in use
    Couldn't establish listening socket: Address already in use
    Couldn't bind: Address already in use
    Last edited by deF291 (2011-04-23 03:13:48)

    okay I've finally been able to get tor and all the other programs to work according to my plan the only thing that's still making problems is that iptables doesn't work as I want it to, when I start chromium without proxy settings privoxy doesn't seem to forward the information to polipo.. do I need to add another rule to iptables.rules in order for the program to know it has to reroute the information again or how can I get this to work? and is there any way to run rtorrent with proxy support?
    anyway, problem 2 and 3 are still to be solved.
    and does anybody know where i can get a good dansguardian blacklist that was not designed for 6 year old children and for which I don't need to subscribe? I'm still getting these partypoker popups -.-
    //e: with iptables it's the same thing as described in the first post. https works, http doesnt. I get the output "Invalid header received from client." on http sites. still no idea why though.. (and the https-version of torcheck.xenubite says i'm tor unprotected while starting the browser with iptables)
    Last edited by deF291 (2011-04-23 16:16:31)

  • I recently bought an Apple TV and I am having a few difficulties

    1. I cannot seem to get home sharing working - I have entered the Apple ID and ativated Home Sharing on my iPad mini but I cannot see anything when I go into "computer" on my Apple TV main menu - Do I need to have itunes running on my laptop at the same time with sharing activated?
    2. Is there any way of showing non-purchased itunes items, music etc in your Apple TV - for example the ones you have loaded from a CD
    Thanks in advance for any help.
    Dale.

    Not all the sound docks accept both analogue and optical on the auxillary input - I don't think the portable ones does but may be wrong - check the user manual.
    As I said earlier all the mini optical (min Toslink) adapter does it make the optical connector fit a smaller socket, it does not convert digital audio to analogue for an analogue only auxillary input.
    AC

  • Having a few issues with my Satellite M105-S3004. Help please!

    1)Ok I've had my laptop for about 3 1/2 years. For a few weeks now everytime I turn on my computer I get this message:
    RegSvr32
    loadlibrary ("C:\Documents and Settings\All users\Application Data\dubstefu.dll") failed-The specified module could not be found
    2)I also have been trying to re-install the sims3 and when I put the disc in sometimes it will read and sometimes it won't. When it does begin to install it stops and gives me one of two messages:
    Feature transfer error-I/O device error
    or
    Data error-cyclic redundancy check
    Music CDs play, DVDs play, other games work, and the disc works in other computers.
    Please Please Please respond if you have any idea what I need to do to fix this. I'm very good at following instructions.

    Satellite M105-S3004
    1) I don't recognize what's trying to load. You can track it down this way. Open the System Configuration Utility (msconfig.exe), uncheck all the items on the Startup tab, and reboot. If the message does not appear, then one of the items we have stopped is the culprit. It's a matter of rechecking half the items, rebooting, and so forth.
    More (probably too much) about that utility here.
       How to configure Windows XP to start in a "clean boot" state
    You can safely ignore the nag message. Check it's Don't show box.
    2) Since you get a CRC error only on this drive, it's probably just slightly misaligned for that particular disc. You should be able to solve it by copying this disc to another blank using the drive in question.
    Let's see what the folks over here have to say. You should tell them you have Windows XP.
    -Jerry

  • I've recently got a replacement iPod and I'm having a few problems with it.

    I've just got a replacement iPod nano 6th generation for my iPod nano 1st generation and I've also jus updated to the latest version of iTunes and basically, I spent a while making sure all the songs I had, had their correct artwork and then I synced my iPod and found that on some of the songs that it was missing? Is there anyway to fix this as it's still there on iTunes. Also there are a few songs that don't play; say I've got the iPod on shuffle, a song will finish and a new one will appear on the screen for less than a second and then straight after a new song will play? Any help please?
    (btw my iPod still well within the 90 day warranty)

    Hello clarehatescats,
    Congratulations on your new iPod nano!  Thank you for providing the all details regarding the album artwork and song skipping issue you are experiencing.
    From what you described, it sounds like all the content did not transfer over when you synced your iPod nano.  I first recommend trying to sync your iPod nano again.  You can find the steps to do this in the following article:
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/PH12313
    If you are still experiencing the same issue after syncing again, I recommend following the steps in this article (the title of the article refers to songs, but many of the steps will apply to the album artwork issue as well):
    Troubleshooting songs that skip
    http://support.apple.com/kb/TS3217
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Having a few problems with the codes for this program.

    i type in the code. in notepad, then compile it to java, but i always seem to get 3 errors. if anyone can help, id really appreciate it.
    using java:
    Calculate the salary at the end of two weeks. You know that:
    ? For the first 40 hours worked in a week the pay rate is $10/hour and after that
    initial 40 hours the pay rate is $15/hour.
    ? If the total salary (week1+week2) is less than $500, the employee will receive 10%
    bonus. If the salary is between $500 and $1000, the employee will receive 5%
    bonus. If the salary is between $1000 and $2000, the employee will receive 1%
    bonus.

    Well, maybe if you showed your code and the complete and exact "messages", we could help you.

  • Help - Difficulties with transate()

    Hi, I am having some weird difficulties with the translate method. I am trying to reposition one of layers by using X and Y values from a CSV file. I tried to access the variables various ways. One was using part[5], (with 'part' as the variable'). Then tried setting variables for each value (as shown below). The dubber doesn't report any errors. The weird thing about it is that the code is supposedly executed, but the translate function is somehow 'ignored'. When I stop the script, I can see that it exists in the history panel. I get no errors during run time either. Can someone please help. I have no idea what is going on with this strange problem.
    Also: I am working two documents. In my script I have it open an image that has a dpi of 266. The script duplicates the single layer of that file into a 72 dpi document and repositions the layer according to the x and y values defined in my CSV file. I tried setting both to 72 dpi, however nothing different happens. The only time something changes is if I put a constant number for x and y. By doing that, it doesn't even move to the spot it is suppose to. It repositions, but it is placed so far off the canvas.
    //Duplicate unprocessed mugshot in its proper layer level, all-in-one step
    app.documents[2].layers[0].duplicate(documents[1].layerSets[0].layerSets[part[3]].layerSet s[part[4]].artLayers[0], ElementPlacement.PLACEAFTER);
    //Close unprocessed mugshot after duplicating
    app.documents[2].close();
    //Resize mugshot layer using a percentage
    app.documents[1].layerSets[0].layerSets[part[3]].layerSets[part[4]].artLayers[1].resize(70 .7, 70.7, AnchorPosition.MIDDLECENTER);
    //Reposition the image according to x and y values defined in CSV file
    var x = part[5];
    var y = part[6];
    app.preferences.rulerUnits = Units.PIXELS;
    app.documents[1].layerSets[0].layerSets[part[3]].layerSets[part[4]].artLayers[1].translate (x, y);
    //Create mask clipping from mugshot layer
    var desc3 = new ActionDescriptor();
    var ref2 = new ActionReference();
    ref2.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
    desc3.putReference( charIDToTypeID('null'), ref2 );
    executeAction( charIDToTypeID('GrpL'), desc3, DialogModes.NO );

    I've reworked your code a bit to use intermediate variables. This makes it
    easier to read (for me, at least) and also perform better.
    The translate() function is really a 'moveRelative' not a 'moveAbsolute'
    function. The x and y parameters are deltas from the layers current location, so
    that has to be taken into account as I've done below. BTW, I may have the terms
    reversed where I compute x and y. I normally make an ActionManager-type call to
    Transform to do the resize and move in one step.
    -X
    var doc1 = app.documents[1]
    var doc2 = app.documents[2];
    var ls0 = doc1.layerSets[0];
    var ls3 = ls0.layerSets[part[3]];
    var ls4 = ls3.layerSets[part[4]];
    //Duplicate unprocessed mugshot in its proper layer level, all-in-one step
    doc2.layers[0].duplicate(ls4.artLayers[0], ElementPlacement.PLACEAFTER);
    //Close unprocessed mugshot after duplicating
    doc2.close();
    var layer = ls4.artLayers[1];
    //Resize mugshot layer using a percentage
    layer.resize(70.7, 70.7, AnchorPosition.MIDDLECENTER);
    var bnds = layer.bounds;
    //Reposition the image according to x and y values defined in CSV file
    var x = part[5] - bnds[0].value;
    var y = part[6] - bnds[1].value;
    app.preferences.rulerUnits = Units.PIXELS;
    layer.translate (x, y);
    //Create mask clipping from mugshot layer
    var desc3 = new ActionDescriptor();
    var ref2 = new ActionReference();
    ref2.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'),
    charIDToTypeID('Trgt') );
    desc3.putReference( charIDToTypeID('null'), ref2 );
    executeAction( charIDToTypeID('GrpL'), desc3, DialogModes.NO );

  • A few problems with Gnome

    Ive installed gnome on a fresh arch install.
    Ive got gnome and GDM working now but im having a few problems with some of the apps in gnome.
    The first problem ive noticed is when i attempt to open "Apperance Preferances" the bug report is:
    Distribution: Unknown
    Gnome Release: 2.22.3 2008-07-02 (Archlinux)
    BugBuddy Version: 2.22.0
    System: Linux 2.6.26-ARCH #1 SMP PREEMPT Tue Aug 26 21:15:43 UTC 2008 i686
    X Vendor: The X.Org Foundation
    X Vendor Release: 10402000
    Selinux: No
    Accessibility: Disabled
    GTK+ Theme: Clearlooks
    Icon Theme: gnome
    Memory status: size: 0 vsize: 0 resident: 0 share: 0 rss: 0 rss_rlim: 0
    CPU usage: start_time: 0 rtime: 0 utime: 0 stime: 0 cutime:0 cstime: 0 timeout: 0 it_real_value: 0 frequency: 0
    ----------- .xsession-errors ---------------------
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    the next error is when i open the preferances for the file browser
    Distribution: Unknown
    Gnome Release: 2.22.3 2008-07-02 (Archlinux)
    BugBuddy Version: 2.22.0
    System: Linux 2.6.26-ARCH #1 SMP PREEMPT Tue Aug 26 21:15:43 UTC 2008 i686
    X Vendor: The X.Org Foundation
    X Vendor Release: 10402000
    Selinux: No
    Accessibility: Disabled
    GTK+ Theme: Clearlooks
    Icon Theme: gnome
    Memory status: size: 0 vsize: 0 resident: 0 share: 0 rss: 0 rss_rlim: 0
    CPU usage: start_time: 0 rtime: 0 utime: 0 stime: 0 cutime:0 cstime: 0 timeout: 0 it_real_value: 0 frequency: 0
    ----------- .xsession-errors ---------------------
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    ** Eel:ERROR:(eel-preferences.c:116):preferences_gconf_value_get_string: assertion failed: (value->type == GCONF_VALUE_STRING)
    seahorse nautilus module initialized
    ** (nautilus:3623): WARNING **: Unable to add monitor: Not supported
    ** Eel:ERROR:(eel-preferences.c:116):preferences_gconf_value_get_string: assertion failed: (value->type == GCONF_VALUE_STRING)

    Ive installed gnome on a fresh arch install.
    Ive got gnome and GDM working now but im having a few problems with some of the apps in gnome.
    The first problem ive noticed is when i attempt to open "Apperance Preferances" the bug report is:
    Distribution: Unknown
    Gnome Release: 2.22.3 2008-07-02 (Archlinux)
    BugBuddy Version: 2.22.0
    System: Linux 2.6.26-ARCH #1 SMP PREEMPT Tue Aug 26 21:15:43 UTC 2008 i686
    X Vendor: The X.Org Foundation
    X Vendor Release: 10402000
    Selinux: No
    Accessibility: Disabled
    GTK+ Theme: Clearlooks
    Icon Theme: gnome
    Memory status: size: 0 vsize: 0 resident: 0 share: 0 rss: 0 rss_rlim: 0
    CPU usage: start_time: 0 rtime: 0 utime: 0 stime: 0 cutime:0 cstime: 0 timeout: 0 it_real_value: 0 frequency: 0
    ----------- .xsession-errors ---------------------
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    the next error is when i open the preferances for the file browser
    Distribution: Unknown
    Gnome Release: 2.22.3 2008-07-02 (Archlinux)
    BugBuddy Version: 2.22.0
    System: Linux 2.6.26-ARCH #1 SMP PREEMPT Tue Aug 26 21:15:43 UTC 2008 i686
    X Vendor: The X.Org Foundation
    X Vendor Release: 10402000
    Selinux: No
    Accessibility: Disabled
    GTK+ Theme: Clearlooks
    Icon Theme: gnome
    Memory status: size: 0 vsize: 0 resident: 0 share: 0 rss: 0 rss_rlim: 0
    CPU usage: start_time: 0 rtime: 0 utime: 0 stime: 0 cutime:0 cstime: 0 timeout: 0 it_real_value: 0 frequency: 0
    ----------- .xsession-errors ---------------------
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    (gnome-appearance-properties:3609): Pango-CRITICAL **: pango_color_parse: assertion `spec != NULL' failed
    ** Eel:ERROR:(eel-preferences.c:116):preferences_gconf_value_get_string: assertion failed: (value->type == GCONF_VALUE_STRING)
    seahorse nautilus module initialized
    ** (nautilus:3623): WARNING **: Unable to add monitor: Not supported
    ** Eel:ERROR:(eel-preferences.c:116):preferences_gconf_value_get_string: assertion failed: (value->type == GCONF_VALUE_STRING)

  • I am having a very difficult time publishing my website, it is very frustrating! It comes up with a few different excuses

    I am having a really difficult and frustrating time publishing my website. The responses are:make sure you are connected, server is busy… Help?

    Kristine ~ Welcome to the Support Communities. If you're publishing to MobileMe, this Apple doc may help:
    MobileMe: Troubleshooting iWeb publishing issues
    But if no luck with that, MobileMe live chat support is now 24/7 — see this announcement.

  • HT204406 I am having a very difficult time with accessing my music from the cloud.  I need to have itunes open on my laptop in order for it to work.  And as soon as I close out itunes on my laptop, it gives me a warning that all users will be logged out. 

    I am having a very difficult time with accessing my music from the cloud.  I need to have itunes open on my laptop in order for it to work.  And as soon as I close out itunes on my laptop, it gives me a warning that all users will be logged out.  Help!!!

    Where are iTunes files located?
    No, I do not mean just the music.  Copying just the media/music files or the media folder creates problems.

  • Over the weekend i downloaded the new ios6, but since doing so i have had a few conflicts with the apps that are on my ipod touch - is anyone else having any issues and is there a patch, remedy or even anyway of having the other version previous ?

    Is anybody else having a few issues since the new IOS6 download for their Ipod Touch ?????

    I'm having the exact same problem with Firefox 3.6. I'm running windows Vista 64bit.

  • I am having difficulties with distributing a PDF Form. Acrobat X pro

    I am having difficulties with distributing a PDF Form. When I click the distribute button I choose the "Manually collect responses in my email inbox option" then press next, I select the "Save a local copy and manually send it later and then I specify it's location, then press next. I then press finish. Then a little black box pops up that says creating response file and nothing is happening. Can anyone help me?

    [discussion moved to PDF Forms forum]

  • I am having difficulties with distributing a PDF Form.

    I am having difficulties with distributing a PDF Form. When I click the distribute button I choose the "Manually collect responses in my email inbox option" then press next, I select the "Save a local copy and manually send it later and then I specify it's location, then press next. I then press finish. Then little black box pups up that says creating response file and nothing is happening. Can anyone help me?

    [discussion moved to PDF Forms forum]

Maybe you are looking for

  • Cumulative customer balance per item

    Hello everybody, I am looking for displaying a cumulative balance per item in a open item report. In the report, my customer want to see in a new column the cumulative balance per item. I searched in the standard report but I did not see how to calcu

  • Replication of a data source from multiple logical systems

    Hi experts, In our ERP wie run many different clients with correspondong logical systems. When I'm changing a data source in ERP, then I have to replicate this datasource for each single logical system. My question : Is there a way to replicate a dat

  • Is an Apple Cinema Display (ca 2005) Compatible with Mac Mini?

    I have a 2005 Power Mac Dual G5/2.3 I took off-line last year. It used an Apple Cinema Display 20" that has it's own power supply "brick" and a cord with the monitor connection, a USB connection, and a FireWire connection. Is this display compatible

  • Struck with Homeland security virus - not able to recover via safe mode nor by command prompt

    my laptop hp 64bit windows 7home prem the homeland security virus has blocked my laptop m not able to anything.... for all safe mode, safe mode with networking and command prompt .. d laptop restarts and gets locked in normal mode plz advice

  • 4 port switch to 8 port 1GB, iMac loses ethernet cable

    We are getting prepped for an upgrade from our 10MB internet service to 1GB fiber.  We were trying to do the easy things first, but have run into an unexpected problem. We use a 4 port switch to distribute our current DSL signal to several locations