Double with only 4 decimals???

Hi, this is really a simple question.
I am trying to list a price list of a few items.
Each item has an individual price in double primitive type, (for example the
price of item1 is 2.45).
When I calculate the total of each item in a list and add all together to get
the lists total I sometimes get a total value with a lot of decimals, like this
for example 24,00000000003.
Now how can I make it with only 4 digits, like this for example, 24,00.
Below is an example of an item , just to give you an idea.
Also, a list has many items.
Thanks!
public class Item{
  private int quantity;
  private double total;
  private double price;
  public Item(){
public double getTotal(){
   total = price * quantity;
   return total;
}

sorry, check out java.text.DecimalFormat
http://java.sun.com/j2se/1.4.2/docs/api/java/text/DecimalFormat.html

Similar Messages

  • Double with only 2 number after point

    hi,
    I have a double with a few number after the poin, I need have only 2 number after the point...
    in past I have asked in this forum and receive a good answer...
    NumberFormat formatter = new DecimalFormat("00.00");
    String Average=formatter.format(Media1);
    Now the problem is that Average is a String while I need a double, exists a way to return a double rather than a String...
    thanks in advance...

    hi,
    I have a double with a few number after the poin, I
    need have only 2 number after the point...
    in past I have asked in this forum and receive a good
    answer...
    NumberFormat formatter = new DecimalFormat("00.00");
    String Average=formatter.format(Media1);
    Now the problem is that Average is a String while I
    need a double, exists a way to return a double rather
    than a String...
    thanks in advance...You are confusing a double's value with its representation. The representation (as a string of characters - digits, decimal point, and more digits) is what shows 2 decimal places. That is what DecimalFormat is for.

  • Double to String with 2 characters decimals

    How to a get a String from a Double with only 2 characters after the dot/comma ?
    chmurb

    double aDbl = XXXXX;
    DecimalFormat fmt = new DecimalFormat( "0.00;-0.00"
    String stringVal = fmt.format( aDbl );^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    a better answer than mine :)

  • I have been sent a secure CD of zip folders but double clicking only comes up with the message unable to unarchive, error 1 - operation not permitted, any ideas please?

    I have been sent a secure CD of zip folders but double clicking only comes up with the message unable to unarchive, error 1 - operation not permitted, any ideas please?

    First thing coming to mind:
    do you double-click on the zip files on the CD ?
    Maybe the "unzip" tries to write in-place to the CD which of course is not possible.
    Have you tried to copy one of them to your OSX volume/harddisk and thhen double-click the copy ?
    Stefan

  • Double with no decimals

    Hi,
    I'm calculating with a double (not for the decimals, but for the large numbers), but I don't want do display the decimals.
    The output of the variable 'total' is now for example: '12345.0' and I just want '12345'.
    I've looked around in the documentation but can't seem to find this...
    Can anyone point me to the function in the documentation (or tell me how to do this)?
    T.I.A.
    Quasibobo
    (Newbie in JAVA)

    You can use the DecimalFormat class in java.text to do that ... but using double just for big numbers sounds suspicious. Maybe you want to be using BigInteger instead?
    Floating point types are inherently impresice, try for instance this: System.out.println((long) 9223372036854775296D
                            - 9223372036854775296L);You might expect that the result is 0, but no ... the difference between the numbers is 511.

  • I have a macbook pro with only 128gb of hard drive. I have lightroom installed and all my photos on an external hard drive. Can I store my lightroom library on the external hard drive too?

    I have a macbook pro with only 128gb of hard drive. I have lightroom installed and all my photos on an external hard drive. Can I store my lightroom library on the external hard drive too?

    Yes. Find the LR catalog file by looking in Edit/Catalog Settings/General. Close LR and navigate to that spot. The catalog file is the one that ends in .lrcat - move it to wherever you want. Next to the .lrcat file is a subfolder called Previews.lrdata. You can move that over as well, but if you don't LR will generate new previews. Double-click on the .lrcat file in its new home and LR will open with that catalog. Set Preferences to When Starting Up Use Most Recent Catalog.

  • Just updated my Ipad operating system and one of my apps starts but then the screen turns white, with only the advertisment at the top showing

    Just updated my Ipad operating system and one of my apps starts but then the screen turns white, with only the advertisment at the top showing

    The normal suggestions.
    Close the app,off fully.  Double tap the home screen then touch and hold any of the icons on the task bar until they jiggle, then close them all off by touching the - sign.
    Then reboot the pad and try the spp again.  If same issue, delete the app, then reload it.  ( no charge). You may just have a bad copy.  If continues, write to the developer, they may need to do an update.  I have an older version of the same app and it works fine.
    Since yours is the ad supported version, they are maing real sure you see the ad.  Is it as simple as you need to click thru the ad to get to the game?

  • How do I get System.out.format to print out doubles with the same precision

    Using the System.out.format, how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println.
    For example, take the following code:
    double d = 12.48564734342343;       
    System.out.format("d as format: %f\n", d);
    System.out.println("d as   sout: " + d);Running the code, I get:
    <font face="courier">
    d as format: 12.485647
    d as sout: 12.48564734342343
    </font>
    The precision of d has been lost.
    I could bump up the precision as follows:
    double d = 12.48564734342343;
    System.out.format("d as format: %.14f\n", d);
    System.out.println("d as   sout: " + d);That appears to work, I get:
    <font face="courier">
    d as format: 12.48564734342343
    d as sout: 12.48564734342343
    </font>
    However, that solution fails if d has a different precision, say 12.48. In that case I get:
    <font face="courier">
    d as format: 12.48000000000000
    d as sout: 12.48
    </font>
    So how do I get System.out.format to print out doubles with the same precision as System.out.println?
    Thanks..

    YoungWinston wrote:
    Schmoe wrote:
    Interesting, but this is not what I am looking for...Your original question was "how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println", and you've been told how to do that (although the pattern given by sabre may be a bit excessive - you should only need 15 '#'s).The initial phrase from my question was "Using the System.out.format, how do I..".
    It's worth remembering that, unlike the Format hierarchy, 'format()' is NOT native to Java. It's a convenience implementation of the 'printf()' and 'sprintf()' methods provided in C, and first appeared in Java 1.5. Those methods were designed to produced fixed-format output; 'println()' was not.Perhaps it is the case that this can't be done.
    Furthermore, Double.toString(), which is what is used by println() does not produce the same format in all cases; format("%.14f\n", d) does. TrySystem.out.println(1.8236473845783d);
    System.out.println(1823647384.5783d);and you'll see what I mean.I am fine with that. It still displays all the precision.
    I am simply looking for a way to quickly print out multiple variables on a sysout while debugging. I want it as syntactically sweet as possible. System.out.println can be a pain when outputting multiple variables like the following:
    "System.out.println("a: " + a + "; b:" + b + "; c: " + c);"
    For some reason, my fingers always typo the plus key.
    I was hoping that System.out.format would be easier,along the lines of:
    "System.out.format("a: %f, b: %f, c: %f\n", a, b, c);"
    From a syntactical sweetness point of view, it is easier. However, the %f on doubles truncates the precision. I figured there must be a way to get the full precision.
    DecimalFormat is syntactically sour for this purpose, as you need to instantiate the DecimalFormat.
    fwiw I have enjoyed reading the suggestions in this thread...

  • I can watch my custom DVD in iDVD 7 preview but burnt dvd plays back black with only the audio

    I can watch my custom created DVD in iDVD 7 preview but once the disc is burnt and I play it back in DVD Player, the screen is black with only the audio playing back. I have tried using three different blank DVD manufactures.

    Hi
    Most probably depends on what movie codec You feed iDVD. May be You find any clue here.
    DVD quality
    1. iDVD 08, 09 & 11 has three levels of qualities. (version 7.0.1, 7,0.4 & 7.1.1) and iDVD 6 has the two last ones
    • Professional Quality
    (movies + menus up to 120 min.) - BEST (but not always for short movies e.g. up to 45 minutes in total)
    • Best Performances
    (movies + menus  less than 60 min.) - High quality on final DVD (Can be best for short movies)
    • High Quality (in iDVD08 or 09) / Best Quality (in iDVD6)
    (movies + menus up to 120 min.) - slightly lower quality than above
    About double on DL DVDs.
    2. Video from
    • FCE/P - Export out as full quality QuickTime.mov (not self-containing, no conversion)
    • iMovie x-6 - Don't use ”Share/Export to iDVD” = destructive even to movie project and especially so
    when the movie includes photos and the Ken Burns effect NOT is used. Instead just drop or import the iMovie movie project icon (with a Star on it) into iDVD theme window.
    • iMovie’08 or 09 or 11 are not meant to go to iDVD. Go via Media Browser or rather use iMovie HD 6 from start.
    3. I use Roxio Toast™ to make an as slow burn as possibly e.g. x4 or x1 (in iDVD’08 or 09  this can also be set)
    This can also be done with Apple’s Disk Utilities application when burning from a DiskImage.
    4. There has to be about or more than 25Gb free space on internal (start-up) hard disk. iDVD can't
    use an external one as scratch disk (if it is not start-up disc). For SD-Video - if HD-material is used I guess that 4 to 5 times more would do.
    5. I use Verbatim ( also recommended by many - Taiyo Yuden DVDs - I can’t get hold of it to test )
    6. I use DVD-R (no +R or +/-RW) - DVD-R play’s on more and older DVD-Players
    7. Keep NTSC to NTSC - or - PAL to PAL when going from iMovie to iDVD
    (I use JES_Deinterlacer to keep frame per sec. same from editing to the Video-DVD result.)
    8. Don’t burn more than three DVDs at a time - but let the laser cool off for a while before next batch.
    iDVD quality also depends on.
    • DVD is a standard in it self. It is Standard Definition Quality = Same as on old CRT-TV sets and can not
    deliver anything better that this.
    HD-DVD was a short-lived standard and it was only a few Toshiba DVD-players that could playback.
    These DVDs could be made in DVD-Studio Pro. But they don’t playback on any other standard DVD-Player.
    Blu-Ray / BD can be coded onto DVDs but limited in time to - about 20-30 minutes and then need
    _ Roxio Toast™ 10 Pro incl. BD-component
    _ BD disks and burner if full length movies are to be stored
    _ BD-Player or PlayStation3 - to be able to playback
    The BD-encoded DVDs can be play-backed IF Mac also have Roxio DVD-player tool. Not on any standard Mac or DVD-player
    Full BD-disks needs a BD-player (in Mac) as they need blue-laser to be read. No red-laser can do this.
    • HOW much free space is there on Your internal (start-up) hard disk. Go for approx. 25Gb.
    less than 5Gb and Your result will most probably not play.
    • How it was recorded - Tripod vs Handheld Camera. A stable picture will give a much higher quality
    • Audio is most often more critical than picture. Bad audio and with dropouts usually results in a non-viewed movie.
    • Use of Video-editor. iMovie’08 or 09 or 11 are not the tools for DVD-production. They discard every second line resulting in a close to VHS-tape quality.
    iMovie 1 to HD6 and FinalCut any version delivers same quality as Camera record in = 100% to iDVD
    • What kind of movie project You drop into it. MPEG4 seems to be a bad choice.
    other strange formats are .avi, .wmv, .flash etc. Convert to streamingDV first
    Also audio formats matters. I use only .aiff or from miniDV tape Camera 16-bit
    strange formats often problematic are .avi, .wmv, audio from iTunes, .mp3 etc
    Convert to .aiff first and use this in movie project
    • What kind of standard - NTSC movie and NTSC DVD or PAL to PAL - no mix.
    (If You need to change to do a NTSC DVD from PAL material let JES_Deinterlacer_3.2.2 do the conversion)
    (Dropping a PAL movie into a NTSC iDVD project
    (US) NTSC DVDs most often are playable in EU
    (EU) PAL DVDs most often needs to be converted to play in US
    UNLESS. They are play-backed by a Mac - then You need not to care
    • What kind of DVDs You are using. I use Verbatim DVD-R (this brand AND no +R or +/-RW)
    • How You encode and burn it. Two settings prior iDVD’08 or 09
    Pro Quality (only in iDVD 08 & 09)
    Best / High Quality (not always - most often not)
    Best / High Performances (most often my choice before Pro Quality)
    1. go to iDVD pref. menu and select tab far right and set burn speed to x1 (less errors = plays better) - only in iDVD 08 & 09
    (x4 by some and may be even better)
    2. Project info. Select Professional Encoding - only in iDVD 08 & 09.
    Region codes.
    iDVD - only burn Region = 0 - meaning - DVDs are playable everywhere
    DVD Studio pro can set Region codes.
    1 = US
    2 = EU
    unclemano wrote
    What it turned out to be was the "quality" settings in iDVD. The total clip time was NOT over 2 hours or 4.7GB, yet iDVD created massive visual artifacts on the "professional quality" setting.
    I switched the settings to "high quality" which solved the problem. According iDVD help, "high quality" determines the best bit rate for the clips you have.
    I have NEVER seen iDVD do this before, especially when I was under the 2 hour and 4.7GB limits.
    For anyone else, there seem to be 2 places in iDVD to set quality settings, the first is under "preferences" and the second under "project info." They do NOT seem to be linked (i.e. if you change one, the other is NOT changed). take care, Mario
    TO GET IT TO WORK SLIGHTLY FASTER
    • Minimum of 25Gb free space on Start-Up hard disk
    • No other programs running in BackGround e.g. Energy-Saver
    • Don’t let HD spin down or be turned off (in Energy-Save)
    • Move hard disks that are not to be used to Trash - To be disconnected/turned off
    • Goto Spotlight and set the rest of them under Integrity (not to be scanned)
    • Set screen-saver to a folder without any photo - then make an active corner (up right for me) and set
    pointer to this - turns on screen saver - to show that it has nothing to show
    Yours Bengt W

  • How to  convert 3.16 to 3.20 in tables? Round only the decimals?

    In a recent post mr Trevor wrote a powerful script to round decimals but altering the preceding number:
    23.45 was converted to 23.
    23.78 to 24.
    It is possible to script only the decimals not touching the integer?
    ,03 : 00
    ,06 : 10
    ,14 : 10
    ,18 : 20
    ,71 : 70
    ,77 : 80
    Etc?

    Hi, thank you.
    As numbers are placed on tables, how to apply this script to the whole document?
    It is necessary to make a list?
    Or it may be used with a skeleton like this wrote by Trevor?
    var doc = app.activeDocument;
    app.changeGrepPreferences = app.findGrepPreferences = null;
    app.findGrepPreferences.findWhat = "\\d+\,\\d+";
    var myNumberFinds = doc.findGrep(),
          l = myNumberFinds.length;
    while (l--)
            app.changeGrepPreferences.changeTo = Math.round(myNumberFinds[l].contents.replace(/\,/,".")).toString();
            myNumberFinds[l].changeGrep();
     Yes, numbers between ,094-0,99 will afect the integer!
    Thank you.

  • Acmcneill1ug 14, 2014 7:16 AM I have IMac OSX 10.9.4, 4GB,Processor 3.06 with Intell2Duo. I would like to check for Malware. I run a TechTool Pro 6 every month and that comes up great. When check how much memory I am using, with only Safar

    Acmcneill1ug 14, 2014 7:16 AM
    I have IMac OSX 10.9.4, 4GB,Processor 3.06 with Intell2Duo. I would like to check for Malware. I run a TechTool Pro 6 every month and that comes up great.
    When check how much memory I am using, with only Safari open I am using 3.9 and more of her 4.0 memory. She is very. very slow in processing. I had 4000
    trash to clean out and it took her over an hour to expel. Also for some reason Safari will not allow me to click on a link, in my G-mail, and let it go to the page.
    It has a sign saying a pop-up blocker is on and will not let me do it. I must open the stamp to look at my e-mails and if I have redirected link now I can do it.
    I have not changed my preferences so where is this pop-up blocker?
    I have looked at preferences on Safari and Google, which I do not understand Google, and do not see where this blocker could be.
    Malware is something I want to make sure is not on my computer. Tech Tool Pro 6 is all I know of and it does not detect Malware.
    Help.
    Ceil

    Try Thomas Reed's Adware removal tool. He posts extensively in the communities.
    Malware Guide - Adware
    Malware Discussion

  • Photoshop-When opening image without tab view, image opens with only a portion in view

    I having an issue with CC.
    When electing in the preferences to not open image in Tabs. The images open with only about 25% of the image area showing. Forcing me to (command) 0 for full to screen preview or (command) +/- to see the image.
    I am not talking about seeing the image at 100% resolution just the entire image within the floating window without having to command before view.
    Sidenote: Adobe Customer Service is all based in India. I spent 4 hours on the phone only to hear that this is that way photoshop works.
    There would be no logical explanation for this. Since the first version of Photoshop this has not been the case.
    I think this should be called view porn with wife in the room mode. Other than that I see no point.
    Can anyone help?
    Lv
    Chadwick Tyler

    Moving discussion to Photoshop forum.

  • ____FAST CASH WITH ONLY 50$ (CLICK HERE) !!!!

    AMAZING PLAN TO BECOME RICH IN DAYS
    AMAZING PLAN TO BECOME RICH!! HOW TO BECOME
    RICH HOW TO TURN 50 DOLLARS INTO MILLIONS
    OF DOLLARS:
    READING THIS COULD CHANGE YOUR LIFE! IT DOES
    WORK!
    I found this on a bulletin board and decided
    to try it. A little while back, I was
    browsing through newsgroups,
    just like you are now, and came across an
    article similar to this that said you could make hundreds of thousands
    of dollars within weeks (which would soon
    turn into millions) with only an initial
    investment of $50.00! So I thought,
    "Yeah right, this must be a scam", but like
    most of us, I was curious, so I kept
    reading. Anyway, it said that you
    send $10.00 to each of the 5 names and
    address stated in the article. You then
    place your own name and address in the
    bottom of the list at #5, and post the
    article in at least 250 newsgroups. (There
    are thousands) No catch, that was it.
    So after thinking it over, and talking to a
    few people first, I thought about trying it.
    I figured: "what have I got
    to lose except 5 stamps and $50.00, right?"
    Then I invested the measly $50.00 (I use the
    word "measly" because $50 really
    is measly compared to the money I have made
    through the initial investment). Well GUESS
    WHAT!?... within 7 days,
    I started getting money in the mail! I was
    shocked! I figured it would end soon, but
    the money just kept coming in.
    In my first week, I made about $50.00. By
    the end of the second week I had made a
    total of over $1,000! In the third
    week I had over $10,000 and it's still
    growing. This is now my fourth week and I
    have made a total of just over
    $42,000 and it's still coming in rapidly.
    It's certainly worth $50.00, and 5 stamps, I
    have spent more than that on
    the lottery!! Let me tell you how this works
    and most importantly, WHY it works... Also,
    make sure you print a copy
    of this article NOW, so you can get the
    information off of it as you need it. I
    promise you that if you follow the
    directions exactly, that you will start
    making more money than you thought possible
    by doing something so easy!
    Suggestion: Read this entire message
    carefully! (print it out or download it.)
    Follow the simple directions and
    watch the money come in! It's easy. It's legal. And, your investment is only $50.00
    (Plus postage)
    IMPORTANT: This is not a rip-off; it is not
    indecent; it is not illegal; and it is 99%
    no risk - it really works!
    If all of the following instructions are
    adhered to, you will receive extraordinary
    dividends.
    NOTE: Please follow these directions
    EXACTLY, and $50,000 or more can be yours in
    20 to 60 days.
    This program remains successful because of
    the honesty and integrity of the
    participants.
    Please continue its success by carefully
    adhering to the instructions. You will now become part of the Mail
    Order business. In this business your
    product is not solid and tangible, it's a
    service.
    You are in the business of developing
    Mailing Lists. Many large corporations are
    happy to pay big bucks for
    quality lists. However, the money made from
    the mailing lists is secondary to the income which is made from
    people like you and me asking to be included
    in that list. Here are the 4 easy steps to success:
    STEP 1:
    Get 5 separate pieces of paper and
    write the following on each piece of paper
    "PLEASE PUT ME ON YOUR MAILING LIST." Once
    added to the list, each person will send you
    a new component
    and/or moneymaking advice to help you along
    the way. This advice has been passed down
    person to person and
    is very helpful. Now get 50 US $10.00 bills
    (or a combination of bills totaling $10) and
    place ONE inside EACH of the 5 pieces of paper so the bill will
    not be seen through the envelope (to prevent
    thievery).
    Next, place one paper in each of the 5
    envelopes and seal them. You should now have
    5 sealed envelopes,
    each with a piece of paper stating the above
    phrase, your name and address,and $10.00
    bill.
    What you are doing is creating a service.
    THIS IS ABSOLUTELY LEGAL! You are requesting
    a legitimate service
    and you are paying for it! Like most of us I
    was a little skeptical and a little worried
    about the legal aspects
    of it all. So I checked it out with the U.S.
    Post Office (1-800-725-2161) and they
    confirmed that it is indeed legal.
    Mail the 5 envelopes to the following
    addresses:
    1. Eng. Yousef Abu Hadhoud P.O. Box 4028
    North Hashemi, Amman - Jordan
    2. Steve Wehvila3155 Vernon St.Duluth, MN
    55806
    3. James
    Rush621QueenAvenueMinneapolis,MN55411
    4. Liz Grice 3413 Harvard ave. Columbia, SC
    29205
    5. Jassim Ahmed Qassim Marhoon, BLK 643
    Rd 4313 HSE 727, Nuwaidrat - Bahrain
    STEP 2:
    Now take the #1 name off the list
    that you see above, move the other names up
    (5 becomes 4, 4 becomes 3, etc...) and add
    YOUR Name as number 5 on the list.
    STEP 3:
    Change anything you need to, but try
    to keep this article as close to original as
    possible.
    Now, post your amended article to at least
    250 newsgroups. (I think there are close to
    24,000 groups)
    All you need is 250, but remember, the more
    you post, the more money you make! You won't
    get very much
    unless you post like crazy. :)This is
    perfectly legal! If you have any doubts,
    refer to Title 18 Sec. 1302 & 1341 of the
    Postal lottery laws. Keep a copy of these
    steps for yourself and,
    whenever you need money, you can use it again, and again. PLEASE REMEMBER that this
    program remains successful because of the honesty and integrity of the
    participants and by their carefully adhering
    to the directions.
    Look at it this way. If you are of
    integrity, the program will continue and the
    money that so many others have
    received will come your way. NOTE: You may
    want to retain every name and address sent to you, either on a
    computer or hard copy and keep the notes
    people send you. This VERIFIES that you are
    truly providing a service.
    (Also, it might be a good idea to wrap the
    cash in dark paper to reduce the risk of
    mail theft.)
    So, as each post is downloaded and the
    directions carefully followed, six members
    will be reimbursed for
    their participation as a List Developer with
    one dollar each. Your name will move up the
    list geometrically so
    that when your name reaches the #1 position
    you will be receiving hundreds of thousands
    of dollars in CASH!!!
    What an opportunity for only $50.00 ($10.00
    for each of the first six people listed
    above) Send it now,
    add your own name to the list and you're in business!
    DIRECTIONS ----- FOR HOW TO POST TO
    NEWSGROUPS--------
    Step 1:
    You do not need to re-type this
    entire letter to do your own posting, Simply
    put your cursor at the
    beginning of this letter and drag your
    cursor to the bottom of this document (so
    that the document is "highlighted"),
    and select 'copy' from the edit menu. This
    will copy the entire letter into the
    computer's memory.
    Step 2:
    Open a blank 'notepad' file (such as
    in Microsoft Word) and place your cursor at
    the top of the blank page.
    From the 'edit' menu select 'paste'. This
    will paste a copy of the letter into notepad
    so that you can add your name
    to the list.
    Step 3:
    Save your new notepad file as a .txt
    file. If you want to do your postings in
    different settings,
    you'll always have this file to go back to.
    Step 4:
    Use Netscape or Internet explorer
    and try searching for various newsgroups (on-
    line forums, message boards,
    chat sites, discussions.)
    Step 5:
    Visit these message boards and post
    this article as a new message by highlighting the text of this
    letter and selecting paste from the edit
    menu. Fill in the Subject, this will be the
    header that everyone sees as
    they scroll through the list of postings in
    a particular group, click the post message
    button. You're done with your first one!
    Congratulations...
    THAT'S IT!
    All you have to
    do is jump to different newsgroups and post
    away,
    after you get the hang of it, it will take about 30 seconds for each newsgroup!
    **REMEMBER, THE MORE NEWSGROUPS YOU POST IN,
    THE MORE MONEY YOU WILL MAKE! BUT YOU HAVE
    TO POST A MINIMUM OF 250**
    That's it! You will begin receiving money
    from around the world within days! You may
    eventually want to rent a
    P.O.Box due to the large amount of mail you
    will receive. If you wish to stay anonymous,
    you can invent a name
    to use, as long as the postman will deliver
    it.
    **JUST MAKE SURE ALL THE ADDRESSES ARE
    CORRECT.**
    Now the WHY part:
    Out of 250 postings, say I receive only 5
    replies (a very low example). So then I made
    $50.00 with my name at #5
    on the letter. Now, each of the 5 persons
    who just sent me $10.00 make the MINIMUM 250 postings, each with my name
    at #5 and only 5 persons respond to each of
    the original 5, that is another $250.00 for
    me, now those 25 each make
    250 MINIMUM posts with my name at #4 and
    only 5 replies each, I will bring in an additional $1250!
    Now, those 125 persons turn around and post
    the MINIMUM 250 with my name at #3 and only
    receive 5 replies each,
    I will make an additional $6260! OK, now here
    is the fun part, each of those 625 persons
    post a MINIMUM 250 letters
    with my name at #2 and they each only
    receive 5 replies, that just made me
    $31,2500!!!
    Those 3,125 persons will all deliver this message to 250 newsgroups with my name at #1
    and if still
    5 persons per 200 newsgroups react I will
    receive $156,250! With an original investment
    of only $50.00!
    AMAZING! When your name is no longer on the
    list, you just take the latest posting in
    the newsgroups,
    and send out another $50.00 to names on the list, putting your name at number 5 again.
    And start posting again. The thing to remember is: do you realize that thousands
    upon thousands of people
    all over the world are joining the internet
    and reading these articles everyday?, JUST LIKE YOU are now!!
    So, can you afford $50.00 and see if it
    really works?? I think so... People have
    said, "what if the plan is played
    out and no one sends you the money? So what!
    What are the chances of that happening when
    there are tons of
    new honest users and new honest people who
    are joining the internet and newsgroups
    everyday and are willing
    to give it a try? Estimates are at 20,000 to
    50,000 new users, every day, with thousands
    of those joining the actual internet. Remember, play FAIRLY and
    HONESTLY and this will really work.
    NOTE: This program can and will work for you
    s long as you post the message in at least
    250 newsgroups
    (e.g. message boards). This might take a long time, probably several hours. But
    remember, as far fetched and
    ridiculous as it seems, if you follow all
    the instructions of this system, you will
    become rich within an
    extremely short period of time. Believe me,
    IT'S WORTH IT!!! I just urge you to be fair
    and honest.
    As long as each person (including you!) sends $10 to everyone on the list, everybody
    (also including you!)
    will become extremely wealthy within just a
    couple of months, and will start receiving money within the first
    week or two! Legal Note: This system is
    perfectly legal. It is not a lottery or a
    scheme intending to defraud,
    it is rather a business. It is part of the
    mail order business. By receiving money from
    others, you do not offer
    them a lottery or any prize based on chance;
    you simply offer them a service (i.e.
    placing them on your mailing list),
    which they request in their letter. By
    definition, this is a service: a consumer
    desires something
    (being put on your mailing list) and is
    willing to pay for it, and you fulfill their
    desire by performing
    the service of putting their name on your
    mailing list for a set fee. By sending money
    to others and writing
    "please place me on your mailing list", you
    do not ask to be entered into a lottery or
    win a prize based on
    chance, you are asking for a service.
    Therefore, this system is perfectly legal.

    Tobias
    I am not sure what piece of documentation you were looking at where you saw a figure of 50 concurrent users or what it meant to covey about capacity. I can believe that this hardware may not scale above 50 concurrent VPN users, but I have great difficulty in believe that 50 LAN users will stress this machine (or 150). I am not clear when you say 2x10mbit whether that is one LAN interface for users and one LAN for outside connection. But I feel pretty comfortable that an 1812 can handle traffic for 150 LAN connected users.
    HTH
    Rick

  • Setting up an airport express router with only an ipad

    i will be in a hotel room with only ethernet wired connection.  i am traveling only with my ipad.  can i hook up an wireless modem (Airport exrpress) without a laptop?  How?

    The iPad operating system will not support AirPort Utility, the application that is needed to configure the AirPort Express.
    Your best bet for the time being is going to be to try to use the AirPort Express in its default settings.
    Connect the Express to the Ethernet port at the hotel and power it up. The Express is broadcasting a default wireless network with a name like Apple Network xxxxxx, where the "x" could be a letter or number. Look for that wireless network to log on (there is no password). Then open your browser to see if the hotel's log in page appears so you can agree to terms and fees, etc.
    If the hotel does not use a log in page, you should be connected to the Internet if all is well. Since you have an "open" network, anyone within range can log on to your wireless, so you might want to be careful with any sensitive banking or credit card transactions.
    It's not likely that a hacker is close by, but you never know.
    Once you get back home, you can use AirPort Utility to setup the Express to name your wireless network and etstablish a password. Once you save the settings, you should not need to configure the Experss again as it will retain its settings.

  • HT1473 Often times when I copy a CD into my library it breaks the CD into more than one Album, all with the same name but with only a few of the songs on each. This happens whenever the CD has music with more than one artists...like maybe duets.

    Often times when I copy a CD into my library it will break my CD into multiple albums in my library, each with only a few songs.
    Usually this is because there might be songs where the artists has other artists in the song.
    How can I compile all of the different albums (all with the same name by the way) back into one as was the original disc?

    Generally all you need to do is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    tt2

Maybe you are looking for

  • Is there a way to get footnotes in Pages to flow across different pages?

    Hello, Currently, I am finding that my document has a lot of white space wherever I have a footnote of more than ten lines or so. As a result, my document looks awkward and has large gaping sections on pages where there is very little main body but a

  • Oracle error ORA-604 when opening a connection

    I am facing an issue with my WCF service which is using ODP.NET version 4.112.2.0(x64) and Oracle 11g. The service runs without any problems on the test servers but on production server (Windows 2008 R2) when an attempt is made to call any service me

  • How to deal with the "driver not installed" message?

    My issue, and it seems many others here have it too, is how to install a printer driver in the face of the "driver not installed" message. In my case, it's an HP4160 Rendevous printer. I've deleted the com.apple.print files in the Library, reinstalle

  • Boot drive access locked

    My boot drive has become locked (now a folder with a red minus mark instead of a drive icon). In get info it says "you have no access" System and admin are listed as having no access. Can't change these. Is there a terminal command I can use to fix t

  • Photoshop sometimes freezes after on close ('Cls ') event script

    Hi! We are working on integrating Photoshop with a content management system. For this we are using a synchronisation file. The cms writes the filepath of pictures to be edited to the sync file. Photoshop writes a modified flag to the sync file and/o