Anyone Want to Help me?(10 Duke dollars to best answer)

i need help figuring out in this code how to ask "Would You Like To Continue Shopping". Well i know how to ask but i dont know how to end and give subtotal if the answer is no and if the answer is yes i dont know how to have my program repeat
import TerminalIO.KeyboardReader;
public class Grocery
public static void main (String [] args)
KeyboardReader reader = new KeyboardReader();
double item;
double quantity;
double totalcost;
System.out.print("Apple is 1; Bread is 2; Milk is 3");
reader.pause();
System.out.print("Enter Item: ");
item = reader.readDouble();
System.out.print("Enter Quantity: ");
quantity = reader.readDouble();
if (item == 1){item = .5;}
if (item == 2){item = 1.0;}
if (item == 3){item = 2.5;}
totalcost = item * quantity;
System.out.print("Total is: ");
System.out.println(totalcost);
reader.pause();
someone help please!
-Joker-

I don't have TerminalIO, so I've changed that part of the code, perhaps you can incorporate part of this
import java.io.*;
public class Grocery
  public static void main (String [] args)
    BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
    double items[] = {.5,1.0,2.5};
    String item, quantity;
    double totalcost;
    String continueShopping = "Y";
    while(continueShopping.toUpperCase().equals("Y"))
      try
        System.out.print("Apple is 1; Bread is 2; Milk is 3\nEnter Item: ");
        item = stdin.readLine();
        System.out.print("\nEnter Quantity: ");
        quantity = stdin.readLine();
        totalcost = items[Integer.parseInt(item)-1] * Integer.parseInt(quantity);
        System.out.println("Total is: " + totalcost);
        System.out.print("\nContinue shopping? (y/n)");
        continueShopping = stdin.readLine();
      catch(Exception e)
        System.out.println("Error - invalid data, terminating");
    System.exit(0);
}

Similar Messages

  • Conducting a little experiment.  Anyone want to help?

    I want to conduct a little experiment. And let me say from the outset that I have no connection whatsoever with any manufacturer of any product.
    I covered my MBP with one of those adhesive skins. It's about 1/3mm thick, clear, flexible, extremely tough skin that has an adhesive on it. You apply it to your MBP with a little water/soap lubricant. The top, bottom, and sides of my MBP are covered, as well as the palm rests and the track-pad. It's a product made specifically for the MBP. (www.bestskinsever.com). +but nobody seems to know if it will cause the MBP to build up more heat inside than normal.+
    So, I have one of those thermometer guns (i.e. with the little laser that lets you target a spot, pull the trigger, and measure the temperature at that particular spot).
    I will leave my MBP on an animated screen saver of some sort--i.e. something that requires some graphics processing during the process.
    I plan on taking measurements at 15 minutes, 30 minutes, 1 hour, and 2 hours.
    ...and...
    I plan on taking temperature measurements at the following locations: 1. middle of the screen, 2. middle of the keyboard (i.e. the "H" key), 3. middle of the undertray, and 4. inside one of the USB ports.
    If any of you who have an uncovered MBP would like to take the same measurements on your uncovered computers, let me know!
    These protective skins really are fantastic products. I've covered my iPhones with them and they really work well. If we find from this experiment that they don't cause added heat build-up, then perhaps more people would be comfortable using them and protecting their MBPs.

    Dina,
    There are really two companies out there selling these products:
    Best Skins Ever (www.bestskinsever.com) and Zagg (www.zagg.com).
    For the Zagg Invisible Shield cover:
    http://www.zagg.com/invisibleshield/apple-macbook-13-inch-2nd-gen-cases-covers-s kins-shields.php
    For the Best Skins Ever cover:
    http://www.bestskinsever.com/apple-products/macbook/macbook-13-inch-2008-aluminu m-model-1.html
    The products are very similar. That is, they use the same plastic material and the same adhesive, but the Best Skins Ever cover for the MBP comes with stripes to protect the sides and corners of the computer, while the Invisible Shield product doesn't. I have the Best Skins Ever product on my MBP now.
    I've used the Best Skins Ever and the Invisible Shield on different iPhones, an I've had a slightly better experience with the Best Skins Ever. Fewer smaller pieces to stick to your phone.
    Moreover, the Zagg product, while being packaged a little nicer and including a squeegie and lubricant spray bottle, is significantly more expensive. To cover an iPhone, the Best Skins Ever is about $8.00, while the Zagg is $25 if I'm not mistaken. For a Macbook Pro, the Best Skins Ever is $28.00 and the Zagg is $54.00.
    The Best Skins Ever comes to you "bare-bones". Just the plastic pieces. No squeegie to push out air bubbles, and no spray lubricant. This is not a problem for me, because 1. the squeegie that Zagg includes wasn't particularly useful for me, and 2. the lubricant is easy to make!! A cup of water with a few drops of dish-soap. And you can use a credit card or simply your thumb-nail to push out air bubbles.
    So, for me, the Zagg is a far better deal.

  • Using WAIT to repeatedly check a file !!Duke dollars!!

    I have created this method, it is supposed to read a text file when a button is pressed after i have allocated an amount of time to check the text file. the text file must be checked every 2mins or so to see if there have been any changes!
    i have some code here but 'wait(10000)' doesnt seem to have any effect!
    can anybody help
    theres 15 duke dollars in it for the best solution
    cheers everyone
    private void polling()
    try {
    wait(10000);
    } catch (Exception e){
    try {
    Stack male = new Stack();
              Stack female = new Stack();
              File esbian = new File("02May2002_Test_Facts.txt");
              FileReader ond = new FileReader(esbian);
              BufferedReader hecker = new BufferedReader(ond);
    int ef;
    String incident = "INCIDENT" ;
              while (true)
                   String lum = new String();
                   String umber = "";
                   String olyfeck = hecker.readLine();
                   if (olyfeck == null)
                        break;
                   StringTokenizer tarman = new StringTokenizer(olyfeck);
                   while (tarman.hasMoreTokens())
    umber = tarman.nextToken();
                        for( ef=0; ef < 1; ef++)
    umber = umber.replace('\u0028' , '\u0020');
    umber = umber.replace('\u0029' , '\u0020');
                        umber = umber.trim().toUpperCase();
    if (umber.equals("INCIDENT" ) || umber.equals("EVENT") ||umber.equals("ALARM") || umber.equals("FAULTRECORD") || umber.equals("INTERPRETEDFAULTRECORD"))
    lum = umber;
                             agentout.append("subscription succeeded: " + umber + "\r\n");
              hecker.close();
    catch(IOException efe)
         System.err.println("ERROR: " + efe) ;
    } // end of method polling

    I have created this method, it is supposed to read a text file when a button is pressed after i have allocated an amount of time to check the text file. the text file must be checked every 2mins or so to see if there have been any changes!
    i have some code here but 'wait(10000)' doesnt seem to have any effect!
    can anybody help
    theres 15 duke dollars in it for the best solution
    cheers everyone
    private void polling()
    try {
    wait(10000);
    } catch (Exception e){
    try {
    Stack male = new Stack();
              Stack female = new Stack();
              File esbian = new File("02May2002_Test_Facts.txt");
              FileReader ond = new FileReader(esbian);
              BufferedReader hecker = new BufferedReader(ond);
    int ef;
    String incident = "INCIDENT" ;
              while (true)
                   String lum = new String();
                   String umber = "";
                   String olyfeck = hecker.readLine();
                   if (olyfeck == null)
                        break;
                   StringTokenizer tarman = new StringTokenizer(olyfeck);
                   while (tarman.hasMoreTokens())
    umber = tarman.nextToken();
                        for( ef=0; ef < 1; ef++)
    umber = umber.replace('\u0028' , '\u0020');
    umber = umber.replace('\u0029' , '\u0020');
                        umber = umber.trim().toUpperCase();
    if (umber.equals("INCIDENT" ) || umber.equals("EVENT") ||umber.equals("ALARM") || umber.equals("FAULTRECORD") || umber.equals("INTERPRETEDFAULTRECORD"))
    lum = umber;
                             agentout.append("subscription succeeded: " + umber + "\r\n");
              hecker.close();
    catch(IOException efe)
         System.err.println("ERROR: " + efe) ;
    } // end of method polling

  • Anyone want to be my java penpal

    hi i am a java not know it all!! does anyone want to help me please!!
    you all are so clever!!
    please be my penpal

    Give a Java newbie some babble, he can program for a day. Teach him to read the APIs, he will program for a lifetime.

  • Anyone know how to stop the "activate" box from blocking usage of a perfectly legal copy of Ilisten? I want to help my dyslexic grandson and this box, including the activation code, keeps popping up, keeping me from using the software. I activated the pro

    Anyone know how to stop the "activate" box from blocking usage of a perfectly legal copy of Ilisten? I want to help my dyslexic grandson and this box, including the activation code, keeps popping up, keeping me from using the software. I activated the program and did a few profile building sessions, now it pops up each time I start the program, blocking me from using it. Help sure would be appreciated.
    Jay

    I looked at your post this morning and did not know enough to respond, other than to find out that links to iListen now go to newer, renamed software. Considering it's been nine hours with no response, I'm suspecting few people here have experience with that software. You could contact the current copmany that used to sell that package and see if they have any archived support info.
    BTW: please check you entry for "Mac OS" in your profile. It says iOS, which cannot run on an iMac. iOS is the system for phone and iPads but can't run on Mac computers. Do "About this Mac" from the Apple menu and see what it says about the OS version. Should look like this:
    If the "Processor" line says "Intel," you have a newer Mac than the old modles this forum covers; Intel iMac have their very own forum here:
    iMac (Intel)

  • My question is to anyone that can help..I downloaded 2-300 photos on my iPad and want to reload a few hundred more. The last time I did this I lost the first batch of photos I loaded a week before. How do I just add without losing what is already on iPad?

    My question is to anyone that can help..I downloaded 2-300 photos on my iPad and want to reload a few hundred more. The last time I did this I lost the first batch of photos I loaded a week before. How do I just add without losing what is already on iPad?

    You need to add the new photos to the ones that are currently on the iPad and (re-)sync them all - only the most recent photo sync remains on the iPad, not including photos in a subsequent sync is how you delete them from the iPad (as you've found out).
    You can use third-party apps such as Simple Transfer which can copy photos to the Photos app via your wifi network, but they will only go into the Saved Photos/Camera Roll album, and not into a 'proper' album.

  • 10 Duke Dollars if you help me set up tutorial

    After several posts to this forum w/o any success, I am now offering 10 Duke Dollars to get this problem fixed:
    I am trying to work through the j2ee tutorial on a Windows XP platform, specifically the servlets section which requires me to build the bookstore1 example (chapter 11). I am having problems with using asant to compile and package the project. I have been at a complete standstill for about a week now because I cant get the example to run - Im tearing my hair out, so plese help me!!!
    The command I am using is asant create-bookstore-war. This throws about 80 compilation errors because classes referenced within the source files are not found . I therefore know that the compiler cant find the classes (suggesting CLASSPATH problems), but I dont know what settings Im supposed to be using.
    Some info for you:
    I tried adding JAVA_HOME and J2EE_HOME to the environemt variables, pointing to the java sdk (inside the app server) and J2EE application server installation location respectively. This didnt work. Initially I had JAVA_HOME pointing to a seperate installation of the SE SDK I had, but since discovering the SDK inside the appserver, I uninstalled J2EE, J2SE SDK, and re-installed J2EE, using the enclosed sdk as JAVA_HOME. None of this solved my problem.
    I think I know now that the environment variables are not anything to do with the tutorial - this is just for the locations of the J2EE and J2SE SDK command path files - is this correct? In which case, using J2EE_HOME and JAVA_HOME is just for shorthand declarations in the environemtn/system variables?
    (As you can probably guess by now I have spent a lot of time trying out different things!!!).
    I also tried setting the j2ee.home and j2ee.tutorial.home attributes in the build.propoperties file located in <INSTALL>/j2eetutorial14/examples/common. This didnt work. I also tried setting the admin username property in this file, and the corresponding password in the password file (cant remember offhand what its called). Again, no luck.
    In another post, somebody asked for the following oputput from my system:
    D:\J2EE\j2eetutorial14\examples\web\bookstore1>asant listprops
    Buildfile: build.xml
    listprops:
         [echo] Path information
         [echo] j2ee.home = C:\Sun\AppServer
         [echo] env.Path = C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C
    :\BORLAND\BCC55\BIN;C:\Sun\AppServer\jdk\bin;C:\Sun\AppServer\bin;
         [echo] env.PATH = ${env.PATH}
         [echo] Classpath information
         [echo] classpath = .;D:\Packages;
         [echo] Admin information
         [echo] admin.password = ${admin.password}
         [echo] admin.host = localhost
         [echo] admin.user = admin
         [echo] admin.port = 4848
         [echo] https.port = 8181
         [echo] Domain information
         [echo] domain.resources = "domain.resources"
         [echo] domain.resources.port = 8080
         [echo] Database information
         [echo] db.root = C:\Sun\AppServer/pointbase
         [echo] db.driver = com.pointbase.jdbc.jdbcUniversalDriver
         [echo] db.host = localhost
         [echo] db.port = 9092
         [echo] db.sid = sun-appserv-samples
         [echo] db.url = jdbc:pointbase:server://localhost:9092/sun-appserv-samples
         [echo] db.user = pbpublic
         [echo] db.pwd = pbpublic
         [echo] url.prop = DatabaseName
         [echo] ds.class = com.pointbase.jdbc.jdbcDataSource
         [echo] db.jvmargs = -ms16m -mx32m
    BUILD SUCCESSFUL
    Total time: 1 second
    D:\J2EE\j2eetutorial14\examples\web\bookstore1>There must be somebody out there who has set this tutorial set up on Windows XP - please can you give me a dump of your system and environment variables, and any other settings I need (build.properties etc.).
    Many thanks

    Heres the last couple of errors on running asant creat-bookstore-war. All errors are cannot resolve symbol, so im sure its a classpath problem.
    I only have PATH properties set in the environment variables, and the set CLASSPATH only points to my own J2SE packages.
        [javac] D:\J2EE\j2eetutorial14\examples\web\bookstore1\src\servlets\ShowCart
    Servlet.java:147: cannot resolve symbol
        [javac] symbol  : class ShoppingCartItem
        [javac] location: class servlets.ShowCartServlet
        [javac]                 ShoppingCartItem item = (ShoppingCartItem) i.next();
        [javac]                                          ^
        [javac] D:\J2EE\j2eetutorial14\examples\web\bookstore1\src\servlets\ShowCart
    Servlet.java:148: cannot resolve symbol
        [javac] symbol  : class BookDetails
        [javac] location: class servlets.ShowCartServlet
        [javac]                 bd = (BookDetails) item.getItem();
        [javac]                       ^
        [javac] 68 errors
    BUILD FAILED
    file:D:/J2EE/j2eetutorial14/examples/web/bookstore1/build.xml:56: Compile failed
    ; see the compiler error output for details.
    Total time: 8 seconds
    D:\J2EE\j2eetutorial14\examples\web\bookstore1> and heres the build.properties file:
    j2ee.home=C:\\Sun\\AppServer
    j2ee.tutorial.home=D:\\J2EE\\j2eetutorial14
    sunone.home=${j2ee.home}
    admin.password.file=${j2ee.tutorial.home}/examples/common/admin-password.txt
    admin.host=localhost
    admin.user=colr
    admin.port=4848
    https.port=8181
    domain.resources="domain.resources"
    domain.resources.port=8080
    db.root=${j2ee.home}/pointbase
    db.driver=com.pointbase.jdbc.jdbcUniversalDriver
    db.host=localhost
    db.port=9092
    db.sid=sun-appserv-samples
    db.url=jdbc:pointbase:server://${db.host}:${db.port}/${db.sid}
    db.user=pbpublic
    db.pwd=pbpublic
    url.prop=DatabaseName
    ds.class=com.pointbase.jdbc.jdbcDataSource
    db.jvmargs=-ms16m -mx32m Thanks.

  • InetAddress Timeout (Duke Dollars Available)

    Hi people, am making a program that needs to change IP Addresses to domain names, in most cases this code works fine
    InetAddress temp = InetAddress.getByName(ipAddress);
                    try {
                        domainName= temp.getHostName();
                    catch(UnknownHostException ex)
                    { System.out.println("Could not find "+domainName);
                }However, many of the ip addresses will not find a domain name. it will take 5 seconds to discover this where as it will take no time at all to discover a correct domain name if one can be found. is there any way that i can timeout this action if it takes over 20 milliseconds to find a name.
    Thank you for your help.
    code to correct this will lead to ten duke dollars.

    for a java help forum, why does nobody want to be at
    all helpful, i am really stuck and would be really
    greatful of some helpUm, hardly any time has passed yet. Don't start copping an attitude just yet...
    But as alluded to, the duke dollars are utterly worthless. If I wanted 10 more dukes to add to my pile, I could (but wouldn't) just create another login ID, post a fake "question", answer myself with this ID, and award them to "myself".
    Do you actually have a question, other than "will someone do my work/thinking for me"?

  • I'm not being given new Duke Dollars

    Hey all,
    I read through the FAQs and they say I'm supposed to get 10 Duke Dollars each month as long as I login at least once a month. I've been logging in and helping others with the little bit of knowledge I have (I'm still a beginner).. but I'm not getting any new Duke Dollars..
    Is anyone else having the same problem?
    Kenny

    Oh Great, I wish I had known that before I gave all of
    mine away... sigh how are newbies supposed to get
    questions answered? I certainly can't answer other
    people's questions to get dollars... I'm a fricking
    newbie!I never answer questions based on dukes. I don't believe most people do either. So it shouldn't matter.
    And even as a newbie it might be possible for you to answer some questions.

  • My hard drive crashed on my macbook pro and I had a new one installed and they were unable to get my pictures off of it. Is there anyone who could help? I'm going to lose all my memories of my kids! I got my old hard drive

    My hard drive crashed on my macbook pro so i had a new one installed and they couldn't get my pictures off. I dont want to lose all my memories! They gave me back my old hard drive. Is there anyone that could help me?

    I think how you understand the value of having backups. All you can do is:
    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten by using recovery software such as MAC Data Recovery, Data Rescue II, File Salvage or TechTool Pro.  Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.  Two free alternatives are Disk Drill and TestDisk.  Look for them and demos at MacUpdate or CNET Downloads. Recovery software usually provide trial versions that enable you to determine if the software would help before actually paying for it. Beyond this or if the drive has completely failed, then you would need to send the drive to a recovery service which is very expensive.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.
    You will need an external enclosure for the old drive so you can connect it to the computer in order to try the recovery software before you buy it. But if they don't work then you will need to send the drive to a recovery service such as Drive Savers.

  • Assigning duke dollars

    How do I award Duke dollars to the best respondent to my question?

    After you post a question, there will be a hyperlink like "assign duke dollar" in the page of your post. Follow it to assign the duke dollar to your question. To reward the duke dollar to the response, you have to log in first, open your post, then you can see a icon in front of every repsponse, you can click the one you want to reward.

  • I wanna assign you ALL my Duke Dollars....

    ...for a new question i have BUT b4 I can do that I need to retrive back the duke dollars from my earlier messages that haven't been answered and have my dollars gathering dust...how on earth do i do that?

    Silkm I have no issues with assigning you all my dukes from all those earlier questions...just go there, type anything and I will assign them to you if u can solve my query...
    It's gotta do with setting the classpath...and yes, i have already been thru google and forums here...
    This is what i do:
    - Start>Control Panel>System>Advanced>Environment Variables
    - Click on Path in the System Variables section
    - Click Edit and add C:\Program Files\Java\j2re1.4.1_01\bin AFTER %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;c:\Program Files\Common Files\Adaptec Shared\System;
    - Next I go to DOS and get my C prompt to C:\Program Files\Java\j2re1.4.1_01\bin
    - I type javac helloworld.java and ENTER
    - I get "javac is not recognised as an internal or external command, operable program or batch file"
    So then I go back to Start>Control Panel>System>Advanced>Environment Variables
    - This time I click on New in the "User Variables for Gaurav" section(that's me) - after all i am logged in as Gaurav on my XP machine!
    - I type Path in Variable Name and C:\Program Files\Java\j2re1.4.1_01\bin in Variable Value
    - Save
    - goto DOS
    - type helloworld.java and get "javac is not recognised as an internal or external command, operable program or batch file"
    BTW i have installed j2re-1_4_1_01-windows-i586 on a XP machine
    HELP!

  • Next/previous links?  Duke dollars...

    I am offering Duke Dollars for help in creating next/previous links here:
    http://forum.java.sun.com/thread.jsp?forum=45&thread=183010
    I was told that I should ask here as there may be more help here...

    Actually I think that respondant was suggesting that you search the JDBC forum - they had already posted some information in here.

  • Tech Support Does Not Want To Help

    OK, Does anyone know if Technical Support reads these threads or is anyone who reads these in Tech Support?
    I was told by Tech Support 9 days ago that I was being escalated to the next level to figure out why I could not install the Creative Suites 4 Web Premium SE software.  And that was the end of Tech Support's help.  Their answer when you call back is wait longer.  What the heck is that???
    I used to think Dell had the worst Tech Support, NOT ANY MORE.  Adobe is by far the worst and the least knowledgeable and/or least trained!!!!!
    Seriously, if you want to help me install CS4 software, YOU NEED TO BE TALKING TO ME!!!!!  You need to be looking at what my computer is saying in response to what is being tried.
    I am an average user, not a computer expert.  I can not get this software to install on my own.  So Tech Support, if you are out there, HELP ME!!!
    Days trying to install: 12   -   Hours I will never get back:  56
    Sorry, but Thanks for listening.

    Bob,
    I am running:
       Windows Vista SP2 Home Premium Ed. as 32-bit,
       I have:  a 2.2GHZ processor, 2.0GB of RAM and about 15GB  of free Space.
    What more would be helpful to know?
    See my whole story in the "Also can't install CS4...Help!" forum  thread.
    I have also since reinstalled Adobe Reader 8.1.2  (I'm in school and I 
    need to be able to read pdf's)
    I have also installed PC Tools AntiVirus software (choosing not to 
    reinstall McAfee, there are issues with their software too).
    And I have installed MicroSoft Visual Studio 2008 for school.
    I know I bought the whole Wed Design Suite, but what I need at the moment 
    is Photoshop Extended for one of my classes.
    I hate to keep complaining about Adobe, but they are like a Black  Box with
    no time concerns.
    Thanks for your time and any help you can send my way.
    Terry

  • SDN Forum points vs Sun Forum Duke Dollars

    I believe that a points system is a great way to encourage participation by the community in problem solving.
    With the points system in SDN, however, there is room for abuse, for example, by having people you know award points to you on threads.
    I personally like the points reward system (Duke Dollars) on Sun's Developer Forums. In this scheme, you work with credits. Every user is given a certain amount of points (Duke Dollars) when they join. When you post a question, you can assign a number of Duke Dollars up front from your available credit as a reward to entice responses. You can also accumulate more Dollars by answering threads which have Dollars assigned.
    Every month, Sun gives a gift to the user who has accumulated the most points.
    I'm not sure that this solves the problem of users not assigning points for valid help, but, because users are working with limited credit, it does force them to be careful when assigning points, and prevents abuse as that mentioned above.
    I would like to hear what other people think about this scheme. Perhaps there are aspects I have not considered.
    Regards,
    Martin

    Would a moderator make it more positive? 
    Actually Craig went into each of the forums and published a "rules of engagement".  Maybe that kind of a "sticky note" post would be the place to remind people about the inappropriateness of redundant questions (across various forums) and the confusion and poor sporting behavior associated with "copied" answers.  I can ping Craig with that suggestion to add text if you think it makes sense to "remind" people in each of the respective forums.
    Or..to be a little more provocative, we could suggest that community members who have a good track record of participation, collaboration, and exemplary attitude be given the moderator rights in forums where the activity volume might be too overwhelming for an SAP moderator alone to manage and given the rights to move content to a more appropriate thread.
    This is what I meant about "self-policing".  Also, perhaps the moderators (internal as well as SAP) could identify themselves in a sticky post and invite participants in those designated threads to track "abuses" or issues, thus identifying them and hopefully resolving them publically.
    Strange, it reminds me that in old, Puritanical, America, of the 17th century community culprits were subjected to a public dunking or stocks when they broke the law.  The purpose being that public condemnation sent a clear message to other "would be" misbehavers.... and thus deterred further bad conduct.
    While a rather radical and unpleasant method it was an open way of dealing with abuses to the system.
    Perhaps others can offer less extreme and more effective suggestions here
    Marilyn

Maybe you are looking for

  • My iphone wont let me send imessages it keeps saying my password is wrong but ive reset it twice

    my iphone wont let me send imessages it keeps saying my password is wrong but ive reset it twice

  • Why Can I Not Change My Menus?

    I'm trying to alter my menus in dreeamweaver using the menus.xml file as I was directed. I can change it, rename it, delete it, break it, everything. Nothing does ANYTHING to dreamweaver. Even with system restarts. I've tried renaming the file to for

  • Checking for a file in a dir + all subdir's

    i'm checking if a file exists in C:/, and all sub directories of C:/. It's easy enough to scan for it in the parent directory, but how would i go about checking all the sub directories also? I couldn't get a system of using the boolean isDirectory wo

  • Verizon NHL Gamecenter App

    I downloaded the NHL Gamecenter app, and i thought the problem was on Verizon's end, and they said it was on apple's end. When I press for the upgrade, it prompts me to input apple password for purchase. I am an avid hockey fan, and one of the reason

  • Music player with high dpi support?

    I usually use Clementine as music player. Unfortunately, it does not have any hidpi support (3200x1800 resolution on a 13.3'' display). So do you know any good music player with hidpi support?