Monthly Archives:August 2010

Mona Vie Name in your URL

Hacker Attack?

digital attackThis article is a copy of one formally at this web address.  This is currently down and is repeated here in its entirety as a public service!  It’s suspected of being hacked, as described here on LazyManAndMoney.  This page will be removed if all is okay. (scheduled to release at midnight Friday 27/08/2010)

Mona Vie Name in your URL!

Mona Vie: Don’t use our name in your URL, unless you’re Wikipedia (and we’re doing the editing), By the author of Expert Fraud Investigation and Essentials of Corporate Fraud , Tracy Coenen

“No, MonaVie doesn’t endorse or approve me writing about them. In fact, they’ll probably get mad that I’m mentioning them. I don’t like MonaVie“.- Tracy Coenen

Earlier this week I wrote about the MonaVie lawyers going after bloggers who do unflattering critiques of the company. Their premise was silly: You can’t use our name in a URL. Here’s exactly what they said in their threatening letter to blogger “Lazy Man”:

“As a network marketing company MonaVie does not permit its name to be used in any URL or email address and the company must take necessary action to protect its intellectual property. It is not permitted for a third party vendor to use the MonaVie trade name in any form.”

So no use of their name in a URL, and no user of their name in any form? Gotcha.


Except it’s not so cut and dried. Lots of references to MonaVie in the titles of articles makes it so that their name is in the URL:

But the best example of a URL that includes “Mona Vie” and would therefore violate the bogus legal threats of the company comes from Wikipedia: http://en.wikipedia.org/wiki/MonaVie

It gets better, though. Not only does Wikipedia use the MonaVie name in a URL (horrors!)… people at MonaVie headquarters actually participate in editing the article about Mona Vie!!! A lot!!!


Here’s the link showing edits done by 65.44.117.2: http://en.wikipedia.org/wiki/Special:Contributions/65.44.117.2. You can see lots of edits to the MonaVie article.


And here’s the proof that the IP address doing these edits is owned by MonaVie:

http://centralops.net/co/DomainDossier.aspx?addr=65.44.117.2&dom_whois=true&dom_dns=true&traceroute=true&net_whois=true&svc_scan=true


For now, let’s ignore the fact that Wikipedia rules prohibit a company or its employees from editing articles about the company. That’s a conflict of interest (they obviously have an interest in slanting article material in a positive direction).


But I don’t care so much about that, however. What I care about is the fact that use of the MonaVie name in a URL seems to only be frowned upon when the URL is for an article with negative information and opinions. Have the lawyers gone after Inc.com for using their name in the URL? Or MarketWatch? Or Facebook?


Here’s the best part about the edits of the Mona Vie page on Wikipedia, though… This edit removed the company’s Income Disclosure Statement from the article. Interesting, isn’t it? Especially since the link is to a page on the official MonaVie website. How could they object to that? Easy. The MonaVie Income Disclosure Statement, if looked at carefully enough, is a damning piece of information. It proves that almost no one is making any money from the “wonderful opportunity” that Mona Vie is offering. Here’s an explanation of the statement, which clearly shows that 99% of MonaVie distributors are making $3.75 a week. What an opportunity.


So what is it, Mona Vie lawyers? Can we use your name in a URL or not? Or do your made up restrictions only apply to negative opinions?

This article was taken from the ” the Fraud Files blog” at www.sequenceinc.com

Myths Tidied

Strangely post on August 25th, 2010
Posted in Art Tags: , ,

Smiling SunI’ve tided up the “Myths” page, a bit.

But really – I need to give the whole page and website a good blowing over, clear out the inward-looking dross  and shine in some sun!

Comments are closed

How to Clean Up Outlook Contact Phone Numbers using VBA

Strangely post on August 12th, 2010
Posted in Technology Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

Introduction

VBA for Fix Phone Numbers

VBA for Fix Phone Numbers

I got a new phone and when synchronised with Microsoft Outlook, the phone numbers don’t dial out properly because of spaces & STD bracketing.  It’s an LG – the previous Nokia was great, as was it’s synchronising software!

Solution

I used VBA in a workaround via Microsoft Excel!  (If you don’t have Excel, this won’t work…).  It will convert phone numbers like (+44) 1234 456789 to 0044123456789.  It also removes “-” entries and ones with multiple spaces as a number, like “   ” which are invisible but muck stuff up!  [but see later addendum for later code additions, code is here: FixPhoneNumbers - SP]

First Step

Export the “Contacts” folder from Outlook as an Excel spreadsheet to your hard drive.  Give it a sensible name!

Second Step

Open the Excel file and then press Alt + F11 to open the Visual Basic Editor (VBE).  We’re gonna write code now!

Third Step

Insert a new code module.  You can give it a name if you like.  I didn’t and just left it as it was.

Fourth Step

Copy this VBA code into the module in the VBE. (That’s a screenshot of my code above!)

Option Explicit

Public Sub FixPhoneNumbers()
Dim rg As Range
Dim r As Integer
Dim c As Integer
Dim wks As Worksheet
Dim s As String

Application.ScreenUpdating = False
Set wks = ThisWorkbook.ActiveSheet
r = wks.Cells(1, 1).CurrentRegion.Rows.Count
c = wks.Cells(1, 1).CurrentRegion.Columns.Count

With wks
     .Columns("AD:AT").NumberFormat = "@"

 For c = 30 To 46 Step 1 'all phone fields
      For r = 2 To .Cells(1, 1).CurrentRegion.Rows.Count
      Set rg = .Cells(r, c)
           s = rg.Value
           s = Replace(s, "(", "")
           s = Replace(s, " ", "")
           s = Replace(s, ")", "")
           s = Replace(s, "+44", "0044")
           s = Replace(s, "+", "00")
           s = Replace(s, "-", "")
      If Len(s) < 7 And Len(s) > 0 Then s = "01278" & s 'assume local phone #
          rg.Value = s
      Next r
 Next c
End With

Application.ScreenUpdating = True
Set rg = Nothing
Set wks = Nothing

End Sub

The key is the lines with the Replace function.  Additional lines can be easily added if more gotchas are spotted in your own numbers.

If you don’t need a line to run, remark (Rem) it out by putting an apostrophe at the line beginning, like this one here… ‘

Fifth Step

From the Debug menu in the VBE, compile the code.  This ensures that no typos etc have got in.

Save the file.

Sixth Step

Now run the procedure called “FixPhoneNumbers”.  The simplest way to do this is to make sure the screen cursor is somewhere within the code you’ve copied in – and then hit F5 on the keyboard.

If this is confusing, go to the main Excel screen, hit Alt + F8 and run the macro, which unsurprisingly is called “FixPhoneNumbers”!!

Seventh Step

Save the file again if the changes look alright.

If they’re not, then close the file without saving, then re-open, and adjust the VBA code to suit your columns, which will be the most likely thing you’ll need to adjust.

Then do all the above again, from the Fifth Step onwards.

Eighth Step

Import the file back into Outlook.

Overwrite old contacts with the new ones.

There should be no need to map fields etc because we haven’t mucked about with them!

Caveats

  • The code is designed to work with a standard output dump from Outlook.  If you’ve added or removed fields from the contacts part of Outlook, the export will be different and you’ll need to check which columns contain phone numbers.  Modify the VBA code to suit.  In total, there were 92 columns in the export from Outlook, so if you don’t have this number then you’ll probably need a quick code modification. (That’s why I checked the count at the beginning of the code with the CurrentRegion bit so that I could get the dataset size.  In the end, I only needed a row count, but I’ve left the code in so that you can step through the code using F8 to check yours out.  Clear?  Don’t worry. )
  • Some entries I had were local phone numbers.  My code is 01278 so this is added and will need changing to suit your own local STD code if you’ve entered phone numbers without the exchange.
  • I check that the UK international code is correct.  Change the 44 to your own as appropriate.
  • There’s no error checking in the code.  But it should work – it did for me!

ADDENDUM: New Code Version!

This code is smoother and has more features than previously, although I still don’t error check.

It’s advantages are:

  1. It checks all columns and looks for the words “Phone” or “Fax” in the data headings.  In this way, any logical Outlook customisations are taken care of!
  2. It prompts the user for their local STD and National codes, placing these in the correct place.

Next Steps:

  1. I’ll turn the code into an xla add-in with a one-click button.
  2. I’ll make the whole thing work directly on the Outlook contacts from within Outlook.  I’ve used the Outlook object model before, just not very often!  So watch this space as current Outlook addins are pricey and a bit of a kludge from what I’ve read…

The New (Improved) Code Version

Download plain text version: FixPhoneNumbers

Option Explicit

Public Sub FixPhoneNumbers()
Dim rg As Range
Dim r As Integer
Dim c As Integer
Dim wks As Worksheet
Dim s As String
Dim LocalCode As Variant
Dim NationalCode  As Variant

Application.ScreenUpdating = False

LocalCode = InputBox("Do You want Full Code for Local Numbers?" _
                     , "Enter local STD/City dialling code" _
                     , "01278")
NationalCode = InputBox("Do You want cleaned up National Code? e.g. 44=UK" _
                      & vbCrLf _
                      & "+44 goes to 0044" _
                     , "Enter National code" _
                     , "44")

Set wks = ThisWorkbook.ActiveSheet

With wks
       .Range(.Cells(1, 1), .Cells(1, 1).End(xlToRight)).Font.Bold = True

          For c = 1 To .Cells(1, 1).CurrentRegion.Columns.Count Step 1 'all columns
              s = LCase(.Cells(1, c).Value)       's picks up column heading
                                                  'lower case to match search string later
                                                  'as text compare doesn't work
                'now find phone/fax fields and if found, fix numbers
     If (InStr(s, "phone") + InStr(s, "fax")) > 0 Then
            .Columns(c).NumberFormat = "@"      'make text format for tel nos
                                                'allows leading zeroes!

                     For r = 2 To .Cells(1, 1).CurrentRegion.Rows.Count
                         Set rg = .Cells(r, c)
                         s = rg.Value            're-use s
                         s = Replace(s, "(", "")
                         s = Replace(s, " ", "")
                         s = Replace(s, ")", "")
                             If Len(NationalCode) > 0 Then 'not empty string
                                  s = Replace(s, "+" & NationalCode, "00" & NationalCode)
                             End If
                         s = Replace(s, "+", "00")
                         s = Replace(s, "-", "")
                             If Len(s) < 7 And Len(s) > 0 Then s = LocalCode & s
                              rg.Value = s
                     Next r

     Else
        'nowt
     End If
       Next c
End With

Application.ScreenUpdating = True
Set rg = Nothing
Set wks = Nothing

End Sub

Message from the Chief Protocol of Independent Corrupt Practises Commission (ICPC)

I got a phishing spam this morning from Nigeria!

Typical 419 that I usually see: Office of the Seante House Nigeria

Nothing unusual in that, you say – the Nigerian 419 scam has been going on for years!  It even has it’s own scambusters (see references later) and the actual advanced fee fraud is usually just called a 419 scam because that’s it’s number in the Nigerian criminal code, apparently.

Anyway, I’ve not seen this particular version, and so I provide a full copy of all the spelling, syntax and language mistakes for your information and enjoyment.

From: Mrs. Marisa Smith <[email protected]>

Subject: Pls Reply

Attention: Sir,

I am Mrs. Marisa Smith the Chief Protocol of Independent Corrupt Practises Commission (ICPC) in alliance with economic community of West African states (ECOWAS) with head Office here in Nigeria. We have been working towards the eradication of fraudsters and scam Artists in Western part of Africa With the help of United States Government and the United Nations.

We have been able to track down so many of this scam artist in various parts of west African countries which includes (NIGERIA, REPUBLIC OF BENIN, TOGO, GHANA CAMEROUN AND SENEGAL) and they are all in our custody here in Lagos Nigeria. We have been able to recover so much money from these scam artists. The United Nation Anti-crime commission and the United State Government have ordered the money recovered from the Scammers to be shared among 100 Lucky people around the globe.

This email is been directed to you because your email address was found in one of the scam Artists file and computer hard disk in our custody here in Nigeria. You are therefore being compensated with $2.5 Million Dollars. We have also arrested all those who claim that they are barristers, bank officials, Lottery Agents who has money for transfer or want you to be the next of kin of such funds which do not exist.

Since your name appeared among the lucky beneficiaries who will receive a compensation of $2.5 Million, we have arranged your payment through our swift card payment centre. The swift card ATM has been specially prepared to enable you withdraw your money in any ATM machine in any part of the world, but the maximum is Five Thousand Dollars Only per day.

For proper execution of this project i decide to handle payment myself. Provide the information bellow to enable him prepare your ATM Master Debit Card including your Pin to access it.

1)YOUR FULL NAME.

2)YOUR RECEIVING ADDRESS.

3)YOUR TELEPHONE NUMBER.

4)YOUR PROFESSION.

5)YOUR ID/AGE

Best Regard,

Mrs. Marisa Smith

Further Reading

Comments are closed

© 2007-2013 Strangely Perfect All Rights Reserved