Skip to main content

What can brown do for you?

Apparently, it can drive you insane, especially if you haven't dealt with it before. They use a number of very simple, but effective methods:
  1. They only deliver, when you are not there, e.g. between 9 AM and 5 PM, and leave a note you can't read with a reference number.
  2. Since you weren't there, they will deliver again the very next day, making sure they attempt the delivery at the exact same time (because they already know, you wouldn't be there). They will leave a note with a different reference number.
  3. They will  try again (same time) next day, and then leave another note with another reference number, marked "final attempt".
  4. You will call the number on the note to figure out what's going on. Eventually you will get a live person, who will be very helpful and reschedule the delivery for the time you can be there (after 6 PM).
  5. They will deliver again next day around noon, and leave a note with a new reference number.
  6. You will call. After getting a live person and explaining the situation, you will be told "I am really sorry, but whoever promised you any delivery after 6 PM, shouldn't have done that, because we only deliver from 9 AM to 5 PM. Alternatively, you can pick up the package at this location (address follows). It's open from 9 AM to 5 PM Monday through Friday. Oh, you can't... What we can do is try to deliver to your work address, if it's convenient for you?" You will give them you work address, directions, and name of the receptionist on the first floor.
  7. They will deliver again the next day, still at your home address, around noon, and leave new note with a new reference number. You will call to find out that they are sorry, but it usually takes more than one day to change the delivery address, but it should be redelivered tomorrow.
  8. They will deliver again at the new address. The other two packages you had, were still delivered to your original address, but due to pure coincidence, someone was at home at the time of their arrival, and was able to receive them.

... so I instructed my daughter to change the delivery address on file for her gift registry to my work address. I wonder what is to happen now.

Popular posts from this blog

WordPress: How to add custom fonts to a twenty seventeen child theme.

Quick help to those who have tried to find some help and failed (as I have so I have to write the code myself). Assuming that you have your virgin child theme configured and activated: here is a function which goes into the functions.php file (of your configured and activated child theme): function childtheme_twentyseventeen_fonts_url() { $replace_original_font = true; // unless you really like Libre Franklin if ($replace_original_font !== true) { $hyph = '-custom-'; } else { $hyph = '-'; }; $font_families = array( //add your Google fonts and weights (400 and 700 are defaults for normal and bold) here: 'Oswald:200,400,700', 'Lato:200,400,700', ); $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); wp_enqueue_style( 'twentyseventeen' ....

How to Make a Website Everyone Has

More Things To Be Mad About

There is no US Embassy in Minsk, Belarus. As a result, people who need to go through an interview for a green card, like my mother, need to go to the nearest city which has one. In good old communist times it would be Moscow, the capital of the whole USSR. The trip there would entail overnight train Minsk-Moscow, spending a day in a city, and overnight train back. No visa required, naturally. Today, despite the fact that old Soviet Union fell apart and old Soviet Republics are separate states, the trip to Moscow would go pretty much the same way. But the wizards at National Visa Center came up with a different plan. Everything my mom needs is done in Warsaw, Poland. Why? NO IDEA. May be it's closer. So my mother had to pay for Polish visa, go through the medical exam they require, wait for ten days to get the visa, go to Warsaw, and all this just to find out that the medical form for her green card is not in a correct format (which was never specified, by the way), and—this is my ...