Michael Anderson, a web designer has posted this delicious looking visual resume [full image]

While the resume looks stunning at a glance, a closer inspection reveals that you cant really make any valuable conclusions about Michael’s past experience and qualifications. Of course if the purpose of this resume is to show that he is a fabulous designer, then the resume definitely achieved that. It has got way better presentation that lots of professional resumes out there.
It uses some of the more flamboyant and often avoided chart types like area chart, 3d area chart and a 3d donut area chart (oh dear God !)
Here are few things that I think are wrong with this data visualization:
- In-consistent color: The colors don’t convey any particular message. Especially, given the fact that he repeated the colors. Same color means coffee, layout design and sign-shop work experience. One of the primary rules of data visualization in dashboards is to use color for repetition. For eg. using one color for each product.
- Poor choice of charts: While 3d charts look great, they are not the best ones to describe real information. Instead of 3d area charts and 3d donut area charts, a better choice would have been to use bar charts. They are simple, elegant and convey rich information very easily. Hey, you can make eye candy using bars too.
- Irrelevant Data: If I am someone planning to hire Michael, I would definitely be more interested in what great kickass stuff he has done (and I am sure he has done stuff like that, looking at this) than how much coffee he takes each day (and still I cant figure out how many cups he drinks, thanks to weird chart selection)
Not showing the numbers:As Anderson said in his post “[T]his is just concept art, as there are almost no real metrics represented except for time.” and I guess, this comment doesn’t apply.We all know that resumes work well, when they talk numbers (made 500 XHTML compatible pages in 50 hours, 25 magazine cover designs, 500k downloads for my icon library etc.), unfortunately Michael missed on that totally. One can assume any number of things about his work in “the sign shop” or “Comor inc.”
What are your thoughts on this data visualization? Awesome or awful ?
Thanks to Manoj for sharing the link via e-mail

















6 Responses to “Make VBA String Comparisons Case In-sensitive [Quick Tip]”
Another way to test if Target.Value equal a string constant without regard to letter casing is to use the StrCmp function...
If StrComp("yes", Target.Value, vbTextCompare) = 0 Then
' Do something
End If
That's a cool way to compare. i just converted my values to strings and used the above code to compare. worked nicely
Thanks!
In case that option just needs to be used for a single comparison, you could use
If InStr(1, "yes", Target.Value, vbTextCompare) Then
'do something
End If
as well.
Nice tip, thanks! I never even thought to think there might be an easier way.
Regarding Chronology of VB in general, the Option Compare pragma appears at the very beginning of VB, way before classes and objects arrive (with VB6 - around 2000).
Today StrComp() and InStr() function offers a more local way to compare, fully object, thus more consistent with object programming (even if VB is still interpreted).
My only question here is : "what if you want to binary compare locally with re-entering functions or concurrency (with events) ?". This will lead to a real nightmare and probably a big nasty mess to debug.
By the way, congrats for you Millions/month visits 🙂
This is nice article.
I used these examples to help my understanding. Even Instr is similar to Find but it can be case sensitive and also case insensitive.
Hope the examples below help.
Public Sub CaseSensitive2()
If InStr(1, "Look in this string", "look", vbBinaryCompare) = 0 Then
MsgBox "woops, no match"
Else
MsgBox "at least one match"
End If
End Sub
Public Sub CaseSensitive()
If InStr("Look in this string", "look") = 0 Then
MsgBox "woops, no match"
Else
MsgBox "at least one match"
End If
End Sub
Public Sub NotCaseSensitive()
'doing alot of case insensitive searching and whatnot, you can put Option Compare Text
If InStr(1, "Look in this string", "look", vbTextCompare) = 0 Then
MsgBox "woops, no match"
Else
MsgBox "at least one match"
End If
End Sub