Press "Enter" to skip to content

Month: May 2012

Scam post mail from Smart Stamp

I’ve just received the following scam post by Royal Mail and I would be very very much interested in hearing back from anybody else who has received one. Please retain the envelope and any other correspondence! If you do receive a letter regarding a “relative” you have never heard of being involved in an accident and leaving you with millions of pounds/dollars, then it is a scam! Do not reply!

Posted in a white envelope with a Royal Mail SmartStamp 1st Class “£0.60 72AC 582U Post by 21.05.12” (I’m very much interested in scam emails from the sender code ’72AC 582U’: please contact me if you’ve got one). I received it on the 25th of May, but it had been forwarded from an old addres

Contact details in the letter include:
Dated: 4th April 2012
Email: lipei@yahoo.com
Tel: +852 8170 3961 (This appears to be a Hong Kong Skype number: at the very least a Hong Kong “forwarding” service with a number range very close to Skype’s)
Sender claims to be: “Lei Pei, Business Relations Manager for Chiyu Banking Corporation Limited in Hong Kong”

So if you’e received a scam email with either RoyalMail Smart Stamp code 72AC 582U (72AC582U) or referencing email address lipei77@yahoo.com or telephone number 852 8170 3961 (85281703961), please leave a comment – if you can include details of what details are the same and different and when you received the scam post, it would be appreciated.

This scam else where on the net:
* Earlswood Forshaweath – Email address taichan7@yahoo.com . Name “Mr Tai Chan”. Telephone number 852 8710 3961. Dated early May
* Who calls me – Number 852 8170 3961. Dates starting 14th August 2011. All regarding the same telephone number +852-8170-3961. Names “Cai Cheng”, “Jim Lu”, “Jin Chu”, Teddy Lung”, “David Chu”, “Lei Hu”, “Pete Zu” (also uses the number +852 8191 3202 and +852 3017 7332 and email address zu8872@ymail.com), “Kia Wu” (also uses the number +852 812 09 204), “Teo Cheng”, “McCallum Ma”, “Shun Zen”, “Boa Dishi” (also uses the email address bao.dishi@yahoo.com), “Jin Wang” (also uses email address jinwang54@ymail.com), “Leo Chan”, “Lee Shun” (also uses the number +852 8124 5797: also using SmartStamp 62AC 282U), unknown name (also uses email address xuxiao7@yahoo.com and phone number +852 8124 5797),

WordPress PHPStorm coding standards

I’m a regular user of JetBrains PhpStorm coding package and recently I’ve been doing a bit of WordPress orientated work – so how can I ensure my code matches the WordPress coding standards? Well, using Rarst’s WordPress coding standards helps.

  1. Just download the file and save it as “WordPress.xml” into your Php Storm folder such as .WebIde40/config/codestyles (on Linux, this was /home/[username]/.WebIde40/config/codestyles : I did have to show hidden files in Nautilus: on Windows it’ll be something like C:\Users\[username]\.WebIde40\config\codestyles\ ). To find your configuration file easily, run the following commands:
    • Linux: cd ~/.WebIde40/config/codestyles
    • Mac OS X: cd ~/Library/Preferences/WebIde40/codestyles
    • Windows: cd c:/Users/USERNAME/.WebIde40/config/codestyles
  2. Restart PhpStorm
  3. Load your project and go to “File -> Settings”
  4. Select “Project Settings -> Code Style”
  5. Select “Scheme: WordPress” and OK
  6. Select “Code -> Reformat code…” and wait for your code to be reformatted

This won’t catch every item (such as the Yoda conditions), but it’ll at least make it a bit closer.