I cant fifure this out...who wants to solve a huge crime network..thisa is no joke

i cant fifure this out...who wants to solve a huge crime network..thisa is no joke

Nope.  That's the issue.
They'll sync on a third device acting as a hotspot, but the device sending a signal is not "on" the network it creates so the airport is all by itself on that network.  At least that is what it looks like to me.  Anyone have another take on it?  Seems pretty silly that an iPad can put out a wifi signal, an Airport Express can receive a wifi signal, and yet there is no simple way to get them to communicate under this particular condition.

Similar Messages

  • I forgot my security question answers and now I cant buy this game I wanted to.

    I forgot my security question answers and now I cant buy this game I wanted to.

    Try here: https://iforgot.apple.com/password/verify/appleid

  • Cant figure this out! Help needed!

    Hi,
    Ok I need some clearing up and some help. This is a program that generates receipts for an art supply store which sells three items: a brush set; a set of oil paints; and a can of oil canvas primer. The program is able to process multiple orders. For each order placed, calculate the order and print a receipt itemizing each item @ cost, the tax, the Environmental Levy, and the total cost.
    The cost of the items are:
    1- Brush Set: $8.00
    2- Set of Oil Paints: $40.00
    3- Oil Canvas Primer: $18.75
    4- Taxes: 14%
    5-Environmental Levy: 2% on all oil based products (including the paint set and primer). Levy calculated on product cost only (i.e. calculate without tax).
    The program should also keep track of the total numbers of each item ordered. Using these values, the user can, at any time, generate a receipt summarizing all orders placed up to that point. When the user enters the sentinel to quit the program, calculate and print one final receipt summarizing all of the orders that were placed. You should also calculate and print some receipt statistics: the average cost of the receipts and the smallest and largest receipts (in terms of cost).
    Your program will make use of 2 static methods (in addition to the main() method): toCurrency() and createReceipt().
    Ok the deal is that I have the input loops set up fine they all work, except for Total because nothing shows up! I dont know what to do for the output nor the calculations and where or what methods I have to use and how to call them up into Main. This is what I have so far...I added in comments to guide myself but I cant figure it out...Please help thanks
    import javax.swing.*;
    import java.text.NumberFormat;
    class Store{
    public static void main(String[]args){
    String input = JOptionPane.showInputDialog(null,"Welcome to the Arts Store! \nEnter the following selections: \nOrder\nTotal\nQuit");
    String header,numBrush,numOil,numCan;
    while(!input.equalsIgnoreCase("quit"))
              if(input.equalsIgnoreCase("order"))
                        numBrush = JOptionPane.showInputDialog(null,"Enter the Amount of Brushes:");
                        double brush = Double.parseDouble(numBrush);
                        numOil = JOptionPane.showInputDialog(null,"Enter the Amount of Oil Paint:");
                        double paint = Double.parseDouble(numOil);
                        numCan = JOptionPane.showInputDialog(null,"Enter the Amount of Canvas Primer:");
                        double canvas = Double.parseDouble(numCan);
         else if(input.equalsIgnoreCase("total")){
              //calculate the reciept
              //call the method createReciept
         else
              System.out.println("Sorry wrong input! Try again!");
              input = JOptionPane.showInputDialog(null,"\nEnter the following selections: \nOrder\nTotal\nQuit");
         }//end while loop
    //calculate and print final reciept
    //call up createReciept() method
    //display average cost and smallest and largest order
         }//end main
    public static String toCurrency(double value) {
    NumberFormat num =NumberFormat.getCurrencyInstance();
    String str = num.format(value);
    return str;
    public static double createReceipt(String header, double numOfBrushSets, double numOfOilPaints, double numOfPrimers){
    /*This method will generate a receipt in System.out.println
    This method has 4 parameters: a String header that describes the order being calculated
    (e.g. "Receipt Number 1", "Total of 10 Receipts", etc.) and 3 int parameters for the number of Brush Sets, Oil Paints, and Oil Canvas Primers.
    Calculate the cost each item, the tax, the environmental levy (2% only on oil based products), and the total receipt cost.
    Use toCurrency() to format all currency values to 2 decimal places. Finally, createReceipt()
    should return the total cost to the calling method where it will be used to update the receipt statistics. */
    numOfBrushSets=8.00;
    numOfOilPaints=40.00;
    numOfPrimers=18.75;
    double total=numOfBrushSets+numOfOilPaints+numOfPrimers;
    double tax;
    tax=total*0.15;
    System.out.println("Welcome to the Store");
    System.out.println(" You have purchased this many brush sets:"+numOfBrushSets);
    System.out.println(" You have purchased this many paint buckets:"+numOfOilPaints);
    System.out.println(" You have purchased this many canvas primer sets:"+numOfPrimers);
    return tax;
    }

    import java.text.NumberFormat;
    import javax.swing.*;
    public class StoreRx {
        public static void main(String[]args) {
            String input = JOptionPane.showInputDialog(null,"Welcome to the Arts Store!" +
                              "\nEnter the following selections: \nOrder\nQuit");
            // create some variables to remember things as we go
            int totalBrushes = 0;
            int totalPaint   = 0;
            int totalPrimer  = 0;
            double totalReceipts = 0;
            double smallestReceipt = Double.MAX_VALUE;
            double largestReceipt  = Double.MIN_VALUE;
            int count = 0;
            while(!input.equalsIgnoreCase("quit")) {
                if(input.equalsIgnoreCase("order")) {
                    String numBrush = JOptionPane.showInputDialog(null,
                                     "Enter the Amount of Brushes:");
                    int brush = Integer.parseInt(numBrush);
                    String numOil = JOptionPane.showInputDialog(null,
                                     "Enter the Amount of Oil Paint:");
                    int paint = Integer.parseInt(numOil);
                    String numCan = JOptionPane.showInputDialog(null,
                                     "Enter the Amount of Canvas Primer:");
                    int canvas = Integer.parseInt(numCan);
                    double total = createReceipt(brush, paint, canvas);
                    if(total < smallestReceipt)
                        smallestReceipt = total;
                    if(total > largestReceipt)
                        largestReceipt = total;
                    totalBrushes  += brush;
                    totalPaint    += paint;
                    totalPrimer   += canvas;
                    totalReceipts += total;
                    count++;
                else
                    System.out.println("Sorry wrong input! Try again!");
                input = JOptionPane.showInputDialog(null,
                            "\nEnter the following selections: \nOrder\nQuit");
            }//end while loop
            // "quit" brings us here
            System.out.println("Welcome to the Store");
            System.out.println(" You have purchased this many brush sets: " +
                                 totalBrushes);
            System.out.println(" You have purchased this many paint buckets: " +
                                 totalPaint);
            System.out.println(" You have purchased this many canvas primer sets: " +
                                 totalPrimer);
            //display average cost and smallest and largest order
            double average = totalReceipts/count;
            System.out.println("smallestReceipt = " + toCurrency(smallestReceipt) + "\n" +
                               "largestReceipt  = " + toCurrency(largestReceipt)  + "\n" +
                               "average receipt = " + toCurrency(average));
        }//end main
        public static String toCurrency(double value) {
            NumberFormat num = NumberFormat.getCurrencyInstance();
            String str = num.format(value);
            return str;
         * This method will generate a receipt in System.out.println
         * This method has 4 parameters: a String header that describes the order being
         * calculated (e.g. "Receipt Number 1", "Total of 10 Receipts", etc.) and 3 int
         * parameters for the number of Brush Sets, Oil Paints, and Oil Canvas Primers.
         * Calculate the cost each item, the tax, the environmental levy (2% only on oil
         * based products), and the total receipt cost. Use toCurrency() to format all
         * currency values to 2 decimal places. Finally, createReceipt()
         * should return the total cost to the calling method where it will be used to
         * update the receipt statistics.
        public static double createReceipt(int brushes, int paints, int primers) {
            double priceOfBrushSets =  8.00;
            double priceOfOilPaints = 40.00;
            double priceOfPrimers   = 18.75;
            double taxRate = 0.14;
            double environLevy = 0.02;
            double subTotal = brushes * priceOfBrushSets +
                              paints  * priceOfOilPaints +
                              primers * priceOfPrimers;
            double total = subTotal * (1.0 + taxRate + environLevy);
            return total;
    }

  • I have PX90 and trying to play it on my Mac but it's a .avi file and I cant figure this out, help

    Trying to play .avi file and I cant figure it out. I am pretty Mac ignorant(hey at least I own one)
    I've uploaded a couple files but they stay as .dmg files and I cant get them to work and quicktime
    isnt working.  I dont think I should have to purchase another so called $29.00 file to make .avi
    work on my Mac.  Does anybody know what I am doing wrong?
    Thanks

    AVI is a legacy file container originated by Microsoft back in 1992 and which has not been officially supported for more than a decade. Like the container, many of the codecs commonly used to create AVI content are also "legacy" compression formats most often supported on PC/Windows platforms. In fact, some codecs have never been transcoded for Mac use. Of those that have, many never made the transition to Mac OS X or the transition to Intel-based platforms. Those codecs that are still supported on the Mac can normally be found in the free Perian codec component package available as an online download. While some common AVI compression formats may be supported by the QT X Player app, QT 7 currently provides a more compatible AVI playback environment for most "legacy" compression formats. If the codec(s) used in your AVI files are not supported by the Perian package for QT use, you can try the VLC media player which may still support more esoteric compression formats. If  VLC does not support the files, the normal approach is to discover which specific audio and/or video codecs were used to create the file and perform an Internet search to see if a compatible Mac component is available for download.

  • Can't figure this out: locating a MBP on the same wifi network

    Can't figure this out: when my 13" MBP is connected wirelessly to my Airport base station, my iPad can see it. When I connect the MBP to the base station via ethernet cable (for faster connection), the iPad can no longer see it.
    Note: my airport is not connected to the internet. I'm simply wanting to setup a closed network for the iPad to connect to the MBP. There's nothing else on the network. The app on the iPad is locating the MBP by ip address so it must be a permanently assigned number.
    Message was edited by: Alan Schmidt

    Am having the same problem.
    Everything was working fine until yesterday.
    Now if I connect my iMac to the Extreme with Ethernet the Airport is not visible and I can't connect to the internet.
    iPods and iPhones can still use the wifi to get on the internet.
    If I switch the iMac to Airport it works, but, will not work with the Ethernet cable connected.
    Have tried changing ethernet cables and still no go.
    Can't figure this out.

  • Need help please i just cant work this out !!!

    Well yes you all are probaly going to laugh at me here but hey i am new
    I am trying to figure out what ram my board will take.
    Will it take 1gig sticks up to 3 gig or only 3 512 sticks ?
    my board is a msi k7n2 delta
    seen here
     http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_detail.php?UID=436
    if someone could help me out i would be very greatfull
    thanx people

    Quote from: Richard on 21-June-06, 05:12:17
    BOSSKILLER,
    High Performance RAM works withing the normal Voltage that the MSI Mobos put out.
    Take Care,
    Richard
    Richard,
    yep i know that, but here i repeat again "mobo is missing CoreCell CHIP.. Voltage circuit is very bad... max memory VDimm is 2.7 (2.8 with BIOS mod) and undervolted also..." etc max 2.7VDimm will give arround 2.58V - 2.62V actually reading which is not enought for almost any nominal voltage at default Vcore. and mobo is picky to memory.. in some cases is hard to powerup "Value" memory what about High Performance... this "High Performance" will stuck at "Value" FSB and timmings and will bring nothink much than regular memory.(expept some memory timmgs drops, but that isnt regular for High Performance expept XMS series for example which is requred lots of Vcore..) that depend of memory CHIP's at 1st place so its depending. but overall High Performance will bring nothink better that standart Value Series as results in that mobo and there is risk to be inpossible to work on it also. have a long time opiniion with that mobo owned it for 2 years and in this period i had tested alot of memory brands and types.
    dont understand me wrong i agree with you with High Performance memories and always reccomend also brand like you said is pretty good. but in this cause will bring nothink much compared to value series and may come problem due not enought power need. that memories cant develop his full potencial on Socket A.
    and that "PC-4000 from Mushkin" is total unusefull that will be hard to powerup. that DDR500 may reach may not 200FSB if even PC can boot with it. "PC-4000 from Mushkin" you probably mean the newest which is operating at low DIMM Vcore which is 2.8V but that is impossible task for that mobo. couse cant get real 2.8V for it
    most of newest memory is using UTT,BH5,BH6,TCCD chips wich is reated as nominal 2.7V minimum but in fact they need little more abit for normal operation and when we add undervoted DIMMs on mobo will be not nice situation. i suggest to 88chopper88 to consult here also for chips inside memory  <a href="http://www.techpowerup.com/memdb/ ">Memory Database[/url] before getting his choice.

  • Cant figure this out

    how do i put all the same name artists together so that when im looking in artists i dont see 10 listings for the same artist instead of just one artist name and all there songs from all there albums if possible...for example linkin park is listed 5 times instead of just once with all their songs

    Make sure they are all spelt in an identical manner, even an extra space that you might not notice can make a difference. I have found instances where the spacebar has created extra stop at the end of the line. The quickest way is to sort your iTunes library by artist to bring your tracks together. Click on the first track by your artist say "Linkin Park", hold down the shift key and click on the last track in the list, this will highlight all in between. Right click on the list and choose Get Info, you get a dialogue box asking if you want to update multiple items, click Yes and then the Info tab. Overtype the artist name then click ok and this will ensure the whole selection is identical. Once you've done this connect your iPod, if you are updating automatically it will pick up the changes. If you are updating manually follow the instructions above with the iPod connected and carry out the changes directly on the iPod's song list.

  • I have a ipod touch 2nd generation and using windows vista? Cant get the ipod touch to show in i tunes and or windows. I thought I had trie everything but cant figure this out. Driving me crazy

    Windows cant find the driver for my ipod touch 2nd generation. Can somebody help?

    See:
    iOS: Device not recognized in iTunes for Windows
    I would start with
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    or
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    Run this to help if it identifies the cause
    iTunes for Windows: Device Sync Tests
    Have you tried on another computer to help determine if you have a computer or iPod problem?

  • I have a imac27" i resently upgraded to osx10.09 and i play d3 but lately my computer , while playing the game all sudden freezes and then boots me out and my computer shuts down and restarts all over again. cant figure this out? any suggestions

    i have a 27inch mac and recently upgraded to operatiing system 10.09. i game d3 and while playing the game it freezes sometimes and then shuts down the computer and restarts for no reason. sometimes with minutes, other times its after many hours. Any ideas would be appreciated.

    could be overheat since the computer also shuts down

  • HT201441 i just bough a used iphone but looks that it was found and i cant unlock it. its still link to the last user my question is how do i find out who is the last owner so i can unlock it

    i just bough a used iphone but looks that it was found and i cant unlock it. its still link to the last user my question is how do i find out who is the last owner so i can unlock it

    peeweenborre wrote:
    i just bough a used iphone .... its still link to the last user ...
    If you cannot get this information from the seller
    Removing a device from a previous owner’s account
    You need to return the Device for a refund,

  • This is for people who wants to mirror all they apple devices when they travel.

    this is for people who wants to mirror all they apple devices when they travel and don't want to unplug everything from the apple tv and take it with them, you can get the amazon fire tv stick and download an app called airplay upnp or the reflector app and mirror all of your apple devices to it, it is great for traveling easy to setup and move around, for example if your traveling and want to use it in the conference room and then want to take with you back to the hotel for the night and plug it in and keep on doing that routine.
    it will be great to use hopeful until apple comes out apple with their own apple tv stick 

    The Verizon DVR is admittedly not the sharpest box on the market. I admit to giving up on the multi-room DVR product, it just never worked satisfactorily for me.
    Hopefully features/functions issues  will improve in the near term with the Cisco/Scientific Atlanta box that obviously isn't going to make Q1. I admit I have ceased  holding my breath. Something does have to happen fairly soon because 160gb drives are literally going out of production.
    You do however make two statements that incorrect. Current TiVO's only need 1 cable card, since the standard cable card today in Verizon's stock  is the M-Card. You also have the option with TiVO of paying either an annual fee, or a one time fee, both of which are lower in the long term than the month to month fee. Alternatively you can by the Moxi DVR, and it includes lifetime service in the purchase price.
    While in theory a truck roll costs $79, in practice if it is for a Cable Card install, it is free (I think  FCC regulations preclude the charge).
    Apparently there is nothing in Verizon's order processing system that tells reps that there is no charge for Cable Card installations, so they often quote the $79 fee because that is the standard charge for technician to come out. As far as I can tell (and there have been lots of posts about cable card installs), no one has in fact been charged the $79 fee..

  • How do I determine who is calling me.  An unknown phone number is calling me late at night?  I want to find out who it is.

    How do I determine who is calling me.  An unknown phone number is calling me late at night?  I want to find out who it is.

    Yes, yes, yes. I am well aware about your line of Verizon is "THE Phone Company". Unfortunately, everyone was not subscribed  to "THE Phone Company" back before "THE Phone Company" was broken up. Some people have lines which were not in existence and have never been subscribers to "THE Phone Company". There are new area codes and numbers since "THE Phone Company" was broken up. I was unaware Straight Talk, T-Mobile, Sprint, Time Warner Cable, MagicJack, etc... automatically provide ALL of the private information of their subscribers to "THE Phone Company" simply so these other companies can exist. I was unaware "THE Phone Company" required each and every phone provider in the US to gather information for the USER of a phone when that USER was not the account owner. I don't remember giving my 15 year old daughter's information to "THE Phone Company" when I opened up her line 5 years ago. Obviously I did, since "THE Phone Company" has it as you would lead us to believe. I wasn't aware "THE Phone Company" required someone opening an account with 10 lines to provide the private user information for each and every one of those lines. When I opened up my 4 line account, I only remember giving out MY information. I don't remember validating everyone on the account was related to me. I don't remember giving out the names/DOB/SS #/etc... for everyone using the phones on my account. That information must have simply slipped my mind.
    For what it is worth, I never said they didn't have information on "every single number coming and going" thru their system. That is not the information being requested, though. The OP wants to know the name of the person making the call. If Verizon, aka "THE Phone Company" does not gather information on all users of a 10 line More Everything account from the account owner, where exactly are they getting this information. Furthermore, if they don't even gather this information of their own subscribers, why would you expect they have this information on the subscribers to other phone providers? It is not required to open a 10 line account. They do not run credit checks on all the users. They do not require SS#s on all of the users. They only require this information on the account owner. Are they staking out the account owner and following him/her to determine who is using the phones on his/her account? I guess I am simply too trusting.
    You speak of "back in the way old days". Well these are no longer the "way old days". Lines on an account can be scattered all over the US. The users of these phones aren't necessarily and more often every day not even related. "THE Phone Company" doesn't necessarily and is UNLIKELY to know the identity of the majority of people using phones on an account. The account owner, yes. Everyone else, NO. People making a call are just as likely using an area code/phone number of a location they don't even physically reside. "Back in the way old days" this was much less commonplace.
    Yes, they MAY be able to get the name of a caller, but it would take time and COULD take a considerable amount of time depending on the cooperation of the account owner.

  • How can I find out this person who has been emailing me every few months. I have one of the emails full header that I retrieved on my iPhone.

    How can I find out this person who has been emailing me every few months. I have one of the emails full header that I retrieved on my iPhone. I omitted my email address for privacy, but mostly it is original. Is this email a scam? I don't know who this person is. Thanks in advance!
    Delivered-To: myemailaddress
    Received: by 10.194.200.42 with SMTP id jp10csp681530wjc;
            Sat, 5 Jul 2014 14:14:16 -0700 (PDT)
    X-Received: by 10.50.56.84 with SMTP id y20mr28216830igp.8.1404594856368;
            Sat, 05 Jul 2014 14:14:16 -0700 (PDT)
    Return-Path: <[email protected]>
    Received: from nm33.bullet.mail.ne1.yahoo.com (nm33.bullet.mail.ne1.yahoo.com. [98.138.229.26])
            by mx.google.com with ESMTPS id m3si35722810igx.17.2014.07.05.14.14.15
            for <myemailaddress>
            (version=TLSv1 cipher=RC4-SHA bits=128/128);
            Sat, 05 Jul 2014 14:14:16 -0700 (PDT)
    Received-SPF: none (google.com: [email protected] does not designate permitted sender hosts) client-ip=98.138.229.26;
    Authentication-Results: mx.google.com;
           spf=neutral (google.com: [email protected] does not designate permitted sender hosts) [email protected];
           dkim=pass (test mode) [email protected]
    Received: from [127.0.0.1] by nm33.bullet.mail.ne1.yahoo.com with NNFMP; 05 Jul 2014 21:14:14 -0000
    Received: from [98.138.226.180] by nm33.bullet.mail.ne1.yahoo.com with NNFMP; 05 Jul 2014 21:11:31 -0000
    Received: from [216.39.60.172] by tm15.bullet.mail.ne1.yahoo.com with NNFMP; 05 Jul 2014 21:11:31 -0000
    Received: from [216.39.60.235] by tm8.access.bullet.mail.gq1.yahoo.com with NNFMP; 05 Jul 2014 21:11:31 -0000
    Received: from [127.0.0.1] by omp1006.access.mail.gq1.yahoo.com with NNFMP; 05 Jul 2014 21:11:31 -0000
    X-Yahoo-Newman-Property: ymail-4
    X-Yahoo-Newman-Id: [email protected]
    Received: (qmail 10573 invoked by uid 60001); 5 Jul 2014 21:11:30 -0000
    DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bellsouth.net; s=s1024; t=1404594690; bh=8lP9IZEfjYYvkNMfRPgse4H7Tdyw/p0f3ooOSB7OIWQ=; h=References:Message-ID:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=cPhLMVvHd7njmUyKFL8pNlQ0EXM+UFVsNWmHYcJMzKp4uWRlYckCEh+YQ+bkGMfCSgyUf5wEagOx6V4yIZ/7exoVJ0o1Njv7B/MbasfBtay6mz78OZH+NpblaoXu4sCVOzWEac1D4V5C4IZkrw+gs6YR8j7r69MTbDiIgkNx+M8=
    X-YMail-OSG: YIV3Og8VM1n.PMXdFiukRw_37cXcu7K4JqrkCRRAd4uAIqh
    7bDt6_LpjPVNd_7061V2HtSOshQ5IhAM6cHrANh11vcCPels0RxQAo42gFw9
    WqvBpNbW47_ShV.gbS7FEh2bp01k38s9DF9rDZE2yfMoZx145AsWCJcHwL_B
    OzdCrD.IeJPFFPTfbumbwibDSriFOpkX32K6QCbITIE0eK9XEDBW87UqBh1N
    H8dHrTTUp7SCHa6WVIXbcn93Zvk6DdM4gqypxDqeEIsFcRcXWIp_yP_5E2zr
    VCeW6CYrGgYukU8H1Xv2kIDdJDa2ohHmPGgme44wJjk6PbhBZ_V_nsTYiOsi
    YY0FB5vwVlif7rw7EWozVUVXst_YOjpr1M0QQc.aztb8O_5DgdzSLXLj1bcy
    UgTvu9dknKMzu4CfYIYOOag_8iCQS6B9t8750NRn2XEdreWAsIcjvOmuRZ5p
    G.1hOcP0e2pKM6ZXkfDcLesDpTyRX2k39kkhaOQLKjQfu15v5vgSkHAdaGR5
    vlEqufGG0mUygckQ4whX29pjbiKAwltm9C8Kwv98PCCt4o1k6GEjShLJ7lze
    u2HthiVEBWHEWxCluIQ0zoV6euEyjyHcFPMsNalbM.Wf6GyL4w.Eb7L.kxIC
    IY4qCJMW8byI5myLQtE6CuqPpVOPuUrXM3sksYCsKO2OJ5sJBJ99DuZ8TbYG
    pWDoaGQhSnuokIjgV_9qFYH5JX17XGUvcFTwc3Bt8lUpihXKpnGNjAD2Ix14
    tOYJwOGqsgm97ELPLKPN0hUVslr7bWcv81fuWkCwBYFOlwqJWaGY-
    Received: from [69.197.222.248] by web181604.mail.ne1.yahoo.com via HTTP; Sat, 05 Jul 2014 14:11:30 PDT
    X-Rocket-MIMEInfo: 002.001,CgogCk9uIFNhdHVyZGF5LCBKdWx5IDUsIDIwMTQgMzo0NyBQTSwgRSBMIEpSIEhFUk1BTk4gPGVoZXJtYW5uOTE0OEBiZWxsc291dGgubmV0PiB3cm90ZToKICAKCgpUSEFUIFdBUyBHUkVBVCBJVCBSRUFMTFkgR0lUUyBUSEUgUE9JTlQgQUNST1NTIQrCoApJIHNlbmRpbmcgaXQgdG8gYWxsIG9uIG15IGUtbWFpbCBsaXN0LiBIT1BFIFlPVSBETyBUSEUgU0FNRS4KwqAKQWwgSGVybWFubiAKCgpPbiBXZWRuZXNkYXksIEp1bHkgMiwgMjAxNCAxMDoxNCBBTSwgQm9iYmllIFJhZ3NkYWxlIDxicmFnczI4MDRAYXQBMAEBAQE-
    X-Mailer: YahooMailWebService/0.8.191.1
    References: <DCB3F2E14C7D47B8AC60CB1A86EE0D75@RaleighHP3> <[email protected]> <[email protected]>
    Message-ID: <[email protected]>
    Date: Sat, 5 Jul 2014 14:11:30 -0700
    From: E L JR HERMANN <[email protected]>
    Reply-To: E L JR HERMANN <[email protected]>
    Subject: Fw: Volkswagen Ad     (FROM AL HERMANN, PLEASE WATCH THIS ONE)
    To: undisclosed recipients: ;
    In-Reply-To: <[email protected]>
    MIME-Version: 1.0
    Content-Type: multipart/alternative; boundary="2017413661-1636348801-1404594690=:35141"
    --2017413661-1636348801-1404594690=:35141
    Content-Type: text/plain; charset=iso-8859-1
    Content-Transfer-Encoding: quoted-printable
    =0A=0A =0AOn Saturday, July 5, 2014 3:47 PM, E L JR HERMANN <ehermann9148@b=
    ellsouth.net> wrote:=0A  =0A=0A=0ATHAT WAS GREAT IT REALLY GITS THE POINT A=
    CROSS!=0A=A0=0AI sending it to all on my e-mail list. HOPE YOU DO THE SAME.=
    =0A=A0=0AAl Hermann =0A=0A=0AOn Wednesday, July 2, 2014 10:14 AM, Bobbie Ra=
    gsdale <[email protected]> wrote:=0A  =0A=0A=0A=0A=0A=0A =0A=0A  =0A=0A=0A =
    =0A=0A =0A=0A =A0          =0A=0A =0A=A0 =0A>>>=A0 =0A>>>What a brilliant =
    way to communicate  how risky it is to use mobile phones while driving! Mor=
    e than  1.5 million views in 3 days! =0A>>> =0A>>>https://www.youtube.com/e=
    mbed/JHixeIr_6BM?rel=3D0&autoplay=3D1&iv_load_policy=3D3
    --2017413661-1636348801-1404594690=:35141
    Content-Type: multipart/related; boundary="2017413661-447096318-1404594690=:35141"
    --2017413661-447096318-1404594690=:35141
    Content-Type: text/html; charset=iso-8859-1
    Content-Transfer-Encoding: quoted-printable
    <html><body><div style=3D"color:#000; background-color:#fff; font-family:He=
    lveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;fo=
    nt-size:18pt"><div><span></span></div><div class="3D""qtdSeparateBR"><br><br>=
    </div>  <div class="3D""yahoo_quoted" style=3D"display: block;"> <div style=
    =3D"font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Gr=
    ande, sans-serif; font-size: 18pt;"> <div style=3D"font-family: HelveticaNe=
    ue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size:=
    12pt;"> <div dir=3D"ltr"> <font face=3D"Arial" size=3D"2"> On Saturday, Ju=
    ly 5, 2014 3:47 PM, E L JR HERMANN &lt;[email protected]&gt; wrote=
    :<br> </font> </div>  <br><br> <div class="3D""y_msg_container"><div id=3D"yi=
    v2053837142"><div><div style=3D"color: rgb(0, 0, 0); font-family: Helvetica=
    Neue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-siz=
    e: 18pt; background-color: rgb(255, 255, 255);"><div><span>THAT WAS GREAT I=
    T REALLY GITS THE
    POINT ACROSS!</span></div><div><span></span> </div><div><span>I sendi=
    ng it to all on my e-mail list. HOPE YOU DO THE SAME.</span></div><div><spa=
    n></span> </div><div><span>Al Hermann</span></div> <div class="3D""yiv20=
    53837142qtdSeparateBR"><br clear=3D"none"><br clear=3D"none"></div><div cla=
    ss=3D"yiv2053837142yqt7474766236" id=3D"yiv2053837142yqt52974"><div class=
    =3D"yiv2053837142yahoo_quoted" style=3D"display: block;"> <div style=3D"fon=
    t-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, s=
    ans-serif; font-size: 18pt;"> <div style=3D"font-family: HelveticaNeue, Hel=
    vetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 12pt;"=
    > <div dir=3D"ltr"> <font face=3D"Arial" size=3D"2"> On Wednesday, July 2, =
    2014 10:14 AM, Bobbie Ragsdale &lt;[email protected]&gt; wrote:<br clear=3D=
    "none"> </font> </div>  <br clear=3D"none"><br clear=3D"none"> <div class=
    =3D"yiv2053837142y_msg_container"><div id=3D"yiv2053837142"><div><div style=
    =3D"color: rgb(0, 0, 0);
    font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grand=
    e, sans-serif; font-size: 14pt; background-color: rgb(255, 255, 255);"><div=
    ><span><br clear=3D"none"></span></div><div class="3D""yiv2053837142qtdSepara=
    teBR"><br clear=3D"none"><br clear=3D"none"></div>  <div class="3D""yiv205383=
    7142yahoo_quoted" style=3D"display: block;"> <div style=3D"font-family: Hel=
    veticaNeue,;"> <div style=3D"font-family: HelveticaNeue,;"> <div dir=3D"ltr=
    "><font face=3D"Arial" size=3D"2"><br clear=3D"none"> </font> </div>  <br c=
    lear=3D"none"><br clear=3D"none"> <div class="3D""yiv2053837142y_msg_containe=
    r"><div id=3D"yiv2053837142">=0A =0A =0A<style>#yiv2053837142   v\00003a* {=
    }=0A#yiv2053837142   o\00003a* {}=0A#yiv2053837142   w\00003a* {}=0A#yiv205=
    3837142   .yiv2053837142shape {}=0A</style>=0A=0A<style>#yiv2053837142 #yiv=
    2053837142 --=0A   =0A filtered  {panose-1:2 4 5 3 5 4 6 3 2 4;}=0A#yiv2053=
    837142  filtered  {font-family:Calibri;panose-1:2 15 5 2 2 2 4 3 2 4;}=0A#y=
    iv2053837142  filtered  {font-family:Tahoma;panose-1:2 11 6 4 3 5 4 4 2 4;}=
    =0A#yiv2053837142  filtered  {panose-1:0 0 0 0 0 0 0 0 0 0;}=0A#yiv20538371=
    42    =0A p.yiv2053837142MsoNormal, #yiv2053837142   li.yiv2053837142MsoNor=
    mal, #yiv2053837142   div.yiv2053837142MsoNormal=0A=09{margin:0in;margin-bo=
    ttom:.0001pt;font-size:12.0pt;color:black;}=0A#yiv2053837142   a:link, #yiv=
    2053837142   span.yiv2053837142MsoHyperlink=0A=09{color:blue;text-decoratio=
    n:underline;}=0A#yiv2053837142   a:visited, #yiv2053837142   span.yiv205383=
    7142MsoHyperlinkFollowed=0A=09{color:purple;text-decoration:underline;}=0A#=
    yiv2053837142   p=0A=09{margin-right:0in;margin-left:0in;font-size:12.0pt;c=
    olor:black;}=0A#yiv2053837142   p.yiv2053837142MsoAcetate, #yiv2053837142  =
    li.yiv2053837142MsoAcetate, #yiv2053837142   div.yiv2053837142MsoAcetate=
    =0A=09{margin:0in;margin-bottom:.0001pt;font-size:8.0pt;color:black;}=0A#yi=
    v2053837142   span.yiv2053837142BalloonTextChar=0A=09{}=0A#yiv2053837142   =
    p.yiv2053837142ecxmsonormal, #yiv2053837142   li.yiv2053837142ecxmsonormal,=
    #yiv2053837142   div.yiv2053837142ecxmsonormal=0A=09{margin-right:0in;marg=
    in-left:0in;font-size:12.0pt;color:black;}=0A#yiv2053837142   p.yiv20538371=
    42ecxmsoacetate, #yiv2053837142   li.yiv2053837142ecxmsoacetate, #yiv205383=
    7142   div.yiv2053837142ecxmsoacetate=0A=09{margin-right:0in;margin-left:0i=
    n;font-size:12.0pt;color:black;}=0A#yiv2053837142   p.yiv2053837142ecxmsoch=
    pdefault, #yiv2053837142   li.yiv2053837142ecxmsochpdefault, #yiv2053837142=
       div.yiv2053837142ecxmsochpdefault=0A=09{margin-right:0in;margin-left:0in=
    ;font-size:12.0pt;color:black;}=0A#yiv2053837142   p.yiv2053837142ecxmsonor=
    mal1, #yiv2053837142   li.yiv2053837142ecxmsonormal1, #yiv2053837142   div.=
    yiv2053837142ecxmsonormal1=0A=09{margin-right:0in;margin-left:0in;font-size=
    :12.0pt;color:black;}=0A#yiv2053837142   p.yiv2053837142ecxmsoacetate1, #yi=
    v2053837142   li.yiv2053837142ecxmsoacetate1, #yiv2053837142   div.yiv20538=
    37142ecxmsoacetate1=0A=09{margin-right:0in;margin-left:0in;font-size:8.0pt;=
    color:black;}=0A#yiv2053837142   p.yiv2053837142ecxmsochpdefault1, #yiv2053=
    837142   li.yiv2053837142ecxmsochpdefault1, #yiv2053837142   div.yiv2053837=
    142ecxmsochpdefault1=0A=09{margin-right:0in;margin-left:0in;font-size:10.0p=
    t;color:black;}=0A#yiv2053837142   span.yiv2053837142ecxmsohyperlink=0A=09{=
    }=0A#yiv2053837142   span.yiv2053837142ecxmsohyperlinkfollowed=0A=09{}=0A#y=
    iv2053837142   span.yiv2053837142ecxballoontextchar=0A=09{}=0A#yiv205383714=
    2   span.yiv2053837142ecxemailstyle21=0A=09{}=0A#yiv2053837142   span.yiv20=
    53837142ecxemailstyle22=0A=09{}=0A#yiv2053837142   span.yiv2053837142ecxema=
    ilstyle23=0A=09{}=0A#yiv2053837142   span.yiv2053837142ecxmsohyperlink1=0A=
    =09{color:blue;text-decoration:underline;}=0A#yiv2053837142   span.yiv20538=
    37142ecxmsohyperlinkfollowed1=0A=09{color:purple;text-decoration:underline;=
    }=0A#yiv2053837142   span.yiv2053837142ecxballoontextchar1=0A=09{}=0A#yiv20=
    53837142   span.yiv2053837142ecxemailstyle211=0A=09{color:#1F497D;}=0A#yiv2=
    053837142   span.yiv2053837142ecxemailstyle221=0A=09{color:#1F497D;}=0A#yiv=
    2053837142   span.yiv2053837142ecxemailstyle231=0A=09{color:#1F497D;}=0A#yi=
    v2053837142   span.yiv2053837142ecxapple-converted-space=0A=09{}=0A#yiv2053=
    837142   span.yiv2053837142EmailStyle39=0A=09{color:#1F497D;font-weight:nor=
    mal;font-style:normal;}=0A#yiv2053837142   span.yiv2053837142EmailStyle40=
    =0A=09{color:#1F497D;}=0A#yiv2053837142   .yiv2053837142MsoChpDefault=0A=09=
    {font-size:10.0pt;}=0A#yiv2053837142  filtered  {margin:1.0in 1.0in 1.0in 1=
    .0in;}=0A#yiv2053837142   div.yiv2053837142WordSection1=0A=09{}=0A#yiv20538=
    37142 </style>=0A=0A<div dir=3D"ltr">=0A<div dir=3D"ltr">=0A<div style=3D"c=
    olor: rgb(0, 0, 0);">=0A<div>=0A<div style=3D"color: rgb(0, 0, 0); font-fam=
    ily: Calibri; font-size: small; font-style: normal; font-weight: normal; te=
    xt-decoration: none; display: inline;"><font face=3D"Times New Roman" size=
    =3D"4"></font><br clear=3D"none"></div> =0A<div class="3D""yiv2053837142WordS=
    ection1">=0A<div>=0A<table class="3D""yiv2053837142MsoNormalTable" style=3D"c=
    olor: rgb(0, 0, 0);" border=3D"0" cellspacing=3D"0" cellpadding=3D"0"><tbod=
    y><tr><td nowrap=3D"" valign=3D"top" style=3D"padding: 0in;" rowspan=3D"1" =
    colspan=3D"1">=0A      <div align=3D"right" class="3D""yiv2053837142MsoNormal=
    " style=3D"text-align: right;"> </div></td><td style=3D"padding: 0in;"=
    rowspan=3D"1" colspan=3D"1">=0A      <div class="3D""yiv2053837142MsoNormal"=
    ><font size=3D"4"></font> </div></td></tr><tr><td nowrap=3D"" valign=
    =3D"top" style=3D"padding: 0in;" rowspan=3D"1" colspan=3D"1"><font face=3D"=
    Times New Roman" size=3D"4"></font></td><td style=3D"padding: 0in;" rowspan=
    =3D"1" colspan=3D"1"><font face=3D"Times New Roman" size=3D"4"></font></td>=
    </tr><tr><td nowrap=3D"" valign=3D"top" style=3D"padding: 0in;" rowspan=3D"=
    1" colspan=3D"1"></td><td style=3D"padding: 0in;" rowspan=3D"1" colspan=3D"=
    1"><font face=3D"Times New Roman" size=3D"4"></font></td></tr><tr><td nowra=
    p=3D"" valign=3D"top" style=3D"padding: 0in;" rowspan=3D"1" colspan=3D"1"><=
    /td><td style=3D"padding: 0in;" rowspan=3D"1" colspan=3D"1"></td></tr><tr><=
    td nowrap=3D"" valign=3D"top" style=3D"padding: 0in;" rowspan=3D"1" colspan=
    =3D"1"></td><td style=3D"padding: 0in;" rowspan=3D"1" colspan=3D"1"><font f=
    ace=3D"Times New Roman" size=3D"4"></font></td></tr></tbody></table>=0A<div=
    class=3D"yiv2053837142MsoNormal"><font size=3D"4"></font><font size=3D"4">=
    </font><font size=3D"4"></font><font size=3D"4"></font><font size=3D"4"></f=
    ont><br clear=3D"none"><br clear=3D"none"></div> =0A<div>=0A<div>=0A<div>=
    =0A<blockquote style=3D"margin-top: 5pt; margin-bottom: 5pt;">=0A  <blockqu=
    ote style=3D"margin-top: 5pt; margin-bottom: 5pt;">=0A    <blockquote style=
    =3D"margin-top: 5pt; margin-bottom: 5pt;">=0A      <div>=0A      <div>=0A  =
        <table width=3D"100%" class="3D""yiv2053837142MsoNormalTable" style=3D"wi=
    dth: 100%; color: rgb(0, 0, 0);" border=3D"0" cellspacing=3D"0" cellpadding=
    =3D"0"><tbody><tr><td width=3D"100%" style=3D"padding: 1.5pt; width: 100%;"=
    rowspan=3D"1" colspan=3D"1">=0A            <div>=0A            <div class=
    =3D"yiv2053837142MsoNormal">  </div></div>=0A            <div>=0A     =
           <table width=3D"100%" class="3D""yiv2053837142MsoNormalTable" style=3D=
    "width: 100%; color: rgb(0, 0, 0);" border=3D"0" cellspacing=3D"0" cellpadd=
    ing=3D"0"><tbody><tr><td width=3D"100%" style=3D"padding: 1.5pt; width: 100=
    %;" rowspan=3D"1" colspan=3D"1">=0A                  <div>=0A              =
        <div>=0A                  <div class="3D""yiv2053837142MsoNormal">  =
    </div></div>=0A                  <div>=0A                  <div class="3D""yi=
    v2053837142MsoNormal"><span style=3D"font-size: 18pt;">What a brilliant way=
    to communicate =0A                  how risky it is to use mobile phones w=
    hile driving! More than =0A                  1.5 million views in 3 days!</=
    span></div></div></div> =0A                  <div>=0A                  <div=
    >=0A                  <div>=0A                  <div class="3D""yiv2053837142=
    MsoNormal"><span style=3D"font-size: 18pt;"><img width=3D"119" height=3D"61=
    " id=3D"yiv2053837142ecx0FC17514-10D6-4769-AAAF-4EC172FC576B" src=3D"cid:1.=
    [email protected]"></span></div></div> =0A           =
           <div>=0A                  <div class="3D""yiv2053837142MsoNormal"><spa=
    n style=3D"font-size: 18pt;"><a href=3D"https://www.youtube.com/embed/JHixe=
    Ir_6BM?rel=3D0&amp;autoplay=3D1&amp;iv_load_policy=3D3" target=3D"_blank" r=
    el=3D"nofollow" shape=3D"rect"><span style=3D"color: purple;">https://www.y=
    outube.com/embed/JHixeIr_6BM?rel=3D0&amp;autoplay=3D1&amp;iv_load_policy=3D=
    3</span></a></span></div></div></div></div></td></tr></tbody></table></div>=
    </td></tr></tbody></table></div></div></blockquote></blockquote></blockquot=
    e></div></div> =0A<div class="3D""yiv2053837142MsoNormal"><span style=3D"font=
    -family: serif;"><br clear=3D"none"><br clear=3D"none"><br clear=3D"none"><=
    br clear=3D"none"></span></div></div> =0A<div class="3D""yiv2053837142MsoNorm=
    al">  </div></div>=0A<div class="3D""yiv2053837142MsoNormal">  </di=
    v></div></div></div></div></div></div><br clear=3D"none"><br clear=3D"none"=
    ></div>  </div> </div>  </div> </div></div></div><br clear=3D"none"><br cle=
    ar=3D"none"></div>  </div> </div>  </div></div> </div></div></div><br><br><=
    /div>  </div> </div>  </div> </div></body></html>
    --2017413661-447096318-1404594690=:35141
    Content-Type: image/gif; name="ATT00001.gif"
    Content-Transfer-Encoding: base64
    Content-Id: <[email protected]>
    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

    If you don't know the sender, then it is most likely a scam or spam email. I get them every day - I just delete them. I also get daily notices from Facebook or someone called Adriana at Facebook even though i do not have an account there. Can't do anything about it - just delete it.

  • Hello  I have a problem with Mac Pro, iPhoto does not want to stay open and close as I can figure this out?  thanks

    Hello  I have a problem with Mac Pro, iPhoto does not want to stay open and close as I can figure this out?  thanks

    Refer below link once
    App doesn’t open | Progress wheel spins continually

  • My Icloud is tuck on my old email adress. i can not retreive the password becaue when i request the email it doent get sent to thi adress. how can i change it sothat my icloud is on my new email. i cant login or out of icloud now.

    My Icloud is tuck on my old email adress. i can not retreive the password becaue when i request the email it doent get sent to thi adress. how can i change it sothat my icloud is on my new email. i cant login or out of icloud now.

    To change the iCloud ID on your phone you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

Maybe you are looking for

  • Scanner from hp Photosmart c3100 doesn't work but I need it to!

    I have MAC OS X Version 10.5.8. I have a HP Photosmart C3100 3 in one.  Though, I can print fairly fine, it will not scan anything.  I actually can't recall it ever scanning since I got this MAC but I just rolled with it... However, I now need this o

  • HOW to temporarily use Broadcast monitoring work on snow leopard OS X v10.6.8  for  FINAL CUT PRO X

    thx,macmacmac give me prompt.He had an interesting trick for getting the OS X Lion 'only' plugin to work on Snow Leopard To install the plugin on Snow Leopard OS X 10.6.8 you have to temporarily change your system version number to Lion 10.7.2! 1. Go

  • Runtime error in menu using javascript

    i got a code for building menu using javascript from internet. But when run this file, it gives a runtime error stating Error: 'Trigger' is null or not an object.I am not able to rectify it. Can you please help me with this problem? Its very urgent..

  • ATV As a Time Capsule

    Is there a way I can use the hard drive on my Apple TV as the Time Machine drive for backing up my MacBook Pro? I talked with a sales rep, and she though there was a way, but I can't find it in any manual. Do I need to partition the drive or just cre

  • Cannot print Check overflow on blank paper

    Dear all, We have an issue of check for payment. 1) We are using stub-check-stub PLD (system) 2) Administration >> System initialization >> Print preference >> Per document >> Check for payment: print on: check stock, overflow 'blank paper', number o