Skip to main content

DO NOT USE my-shoppingbox.com (SCAM!!!)

This was an incident last November / December 2014. Yes it is the Black Friday Sale but who is not anticipating it.

First the weighting system. For some reason they push it to that extra 0.something of a pound so you pay for the whole pound. It is clearly a scam!

Second the filing system. It took them about 23 days just to record in their system that you have received a package.

First you should receive a notification from the merchant where you bought the item that they failed to receive the item. This is from USPS:

We're writing about the order(s) (#xxx). 

USPS attempted to deliver your package but was unable to leave the package unattended. In order to make arrangements for redelivery or pickup at your local Post Office, please visit USPS Redelivery and use the package tracking number xxx. 

If the package was attempted to be delivered to a business location that was closed during the time of the delivery attempt, USPS will automatically attempt to redeliver the package on the next business day. If your package was to be shipped to a PO Box address, it was likely too large to leave in your particular post office box

For more information about picking up this package, please visit USPS and click "Locate a Post Office" to find contact information for your local post office or call 1-800-ASK-USPS. 

After it is received (according to USPS; no confirmation from my-shoppingbox yet) you will have to wait for 23 days, maybe more for others. You can check Twitter for other users who experienced the same.

This is a recipe of their usual excuses in email because email is their only support channel. After about 3 weeks, they just gave up replying (not me ;-)

Dear  Mr. xxx,


Thanks for your email.

Kindly email us the courier tracking number, senders and description of the goods that you are expecting to receive as it may one of those with a bad address or label.

We do apologize also for the delay on uploading your package to your account as there are several packages that were left by various couriers in our drop box, with unreadable labels or names, or with missing suite numbers and we need to record the package details manually to ensure that we uploaded the package to the right consignee.

Please feel free to contact us should you need further information or assistance.


Sincerely,
MY-SHITTINGBOX.COM

***********

Dear Mr. xxx,


Thanks for your email

We do apologize for the delay of uploading your package details to your account due to the huge influx of deliveries that built-up during the Thanksgiving holidays. Rest assure that this problem will be fix as soon as possible.

We shall give this our highest priority.



Please feel free to contact us should you need further information or assistance.


Sincerely,
MY-SHITTINGBOX.COM

***********

Dear Mr. xxx,


Thanks for your email.

Kindly give us time more time to process all the backlogs until next week and will try to shipped out and deliver the packages the soonest possible time.


We do apologize for the delays. Rest assure that this problem will be fix as soon as possible.

Please feel free to contact us should you need further information or assistance.


Sincerely,
MY-SHITTINGBOX.COM

Comments

Popular posts from this blog

Resetting admin password in IBM System p5 510 Express ASMI

These are the steps in resetting the admin password: 0. Re-route stored static in your body via an ESD wrist strap to a metallic element. 1. Look for the 2 toggle switches and service processor batt. The batt should be in front of the Power Supply 1 and Power Supply 2 (codes: E1 and E2, see Rear Location Codes on the cover plate). The "very tiny" toggle switches should be in the area of P1-C14 slot. I forgot the exact sequence but it should be a combination of the ff. step (2): 2. Remove the battery, toggle the switches to the opposite direction. Allows some time for the caps to discharge. 3. Move back the toggle switches and put back the batt in its place. 4. Assign your PC to Class C subnet (i.e. masked 255.255.255.0 ): IPaddr: 192.168.2.x for HMC1 or IPaddr: 192.168.3.x for HMC2 5. Ping HMC1 or HMC2. Access the web interface using the default address: http://192.168.2.147 (for HMC1) or http://192.168.3.147 (for HMC2) Note: Sometimes you have to force the https protocol:

Zenoss: monitor free VMWare ESXi version

We confirmed that the free ESXi version does not allow SNMP gets, only traps. The original script was taken from here: http://communities.vmware.com/docs/DOC-7170 Modified script: http://mirakulo.com/pub/esxi/check_esx_wbmem.py We added Fan and power supply, hinted from this page: http://www.stephenjc.com/2009/01/whatsup-vmware-esxi-monitor-these.html Use this guide to add the Data source: http://www.zenoss.com/community/docs/howtos/create-modify-nagios-templates Added as template under: /Devices /Server /VMWare /ESXi /Templates /esxi-monitor /check_esx_wbmem Name: check_esx_wbmem Source Type: Command Enable true Use SSH false Component: blank Event class: /VMWare/ESXi Severity: Error Cycle time: 60 Parser: auto Command template: /usr/local/zenoss/python/bin/python /opt/zenoss/libexec/check_esx_wbmem.py https://${dev/manageIp}:5989 root passwd To bind this template to ESXi nodes, go to the device: Example: /Devices /Server /VMWare /ESXi /esxi-01.prod.corp.org then to its temp

ld: unrecognized option '--hash-style=both'

gcc -Wl,-Map=contiki.map,-export-dynamic testv6.co obj_linux-native/socketdev_listener.o \ contiki-linux-native.a -o testv6.linux-native /usr/local/bin/ld: unrecognized option '--hash-style=both' /usr/local/bin/ld: use the --help option for usage information collect2: ld returned 1 exit status If you look closely, the error is something related to the local gcc not using the host's linker (ld). $ which gcc /usr/bin/gcc $ which ld /usr/local/bin/ld For some reason, I messed my compiler path. To synchronized gcc to use the host's dynamic linker (i.e. /usr/bin/ld ), set the environment variable COMPILER_PATH to /usr/bin . $ export COMPILER_PATH=/usr/bin $ echo $COMPILER_PATH /usr/bin $ gcc -print-prog-name=ld /usr/bin/ld