Randomblings from Rich - Random talk about technology, science, chess, news, hobbies, stupidity and myself.
December 04, 2005
Why Britney Spears is Rich
I couldn't help myself. I turned to the counter hawker and told her that my curiosity was piqued, and I just had to know 'how bad this smelled'. She said she'd show me just how bad it smelled, mimicking me, as I'd mimicked 90% of the crap cologne she was pushing. I was prepared to make fun of Britney's marketing team, figuring that she'd probably just tacked her name onto something new that they wanted to push, and that it would rank with the rest of the toilet water. You see, I'm a smart-ass consumer, and a smart-ass who laughs when people make fun of Mrs. Spears-Federline, even while harboring not-quite-secret fantasies about her, me and a night or two in Vegas.
Back to reality, I grabbed the sniff card from the salesperson, whiffed and cried out immediately, "Honey!". You see, this is my 'Eureka' voice. When I've found the golden chalice, I call out to my wife. You see, not only didn't Fantasy SUCK as I fully expected, it was fantastic! It smelled like a young woman should. It was innocent, sweet, romantic and sexy as all hell get out. With a strong smell of strawberries, but more than just that, it is one of those perfumes that I just know I can count on to drive me wild. The perfume is one of those that will turn your head when you smell it. If you got a whiff of it, you'd immediately turn to see what hot young thing was passing you by. This perfume BECKONS to a man, the way a perfume is meant to reach out its tendrils and wrap them around your hair in its loving embrace.
So, you see, Britney Spears is rich because no matter how much we prepare to make fun of her (as a 39 year old man I am very ready to do so because she's so pop-icon, yet so redneck-trailer-trash in the news/media), we still find ourselves humming her stupid songs, drooling over her Pepsi commercial(s) and trying to imagine ourselves dancing in her bed [sorry, did I say that out loud?].
So, depending on why you're reading this post, I hope you got the point. I am ashamed to say that I love her perfume, and further ashamed to say that I bought a BIG bottle of it for my wife. This is what women's perfume should STRIVE to be. There are two perfumes I've found in it's class: Red and Exclamation! that I buy for my wife. Almost every other perfume stinks to high heaven, and women wear way too much of it. But there are a very few good ones out there, and Britney has stuck her name on one that will bring her riches for a long time.......DAMN HOW I HATE BEING WRONG.
December 01, 2005
My New (Old) Passion
October 15, 2005
October 12, 2005
New Scam Warning - Identity Theft through Employment Offer?
This position requires a DISCO security awareness/clearance. You will be
required to provide the following information to start your application for
a clearance, after the RSNF has accepted you for employment.
Name, Social Security Number, Date of Birth, Place of Birth, Current
Employer and Address, Copy of latest security update if available.
While some or all of this information may indeed be necessary to process a security clearance, it is not normally something pointed out to folks who are being offered a job. The fact that the email asks for this up front is alarming.
The scammers are doing a nice job, though. The email is accompanied by personalized and boiler-plate employment offer documents in Word format, position descriptions that are oddly personalized, and Insurance Plan details. Automation of Word document creation is not something I'd seen before from scam artists/bulk emailers, but this is certainly a new extent that someone would be willing to go to.
Identity theft is not a new crime, but these are some new lengths, certainly. Be careful out there...these folks seem to have pulled my resume off Monster.Com. While the email and offer look real, and they look willing to exchange paperwork, signatures, etc, if it smells like a scam, it usually is....
September 23, 2005
My Lotus Notes Adventure
There are a good many products out there that will convert Notes data for you. Unfortunately, most of them cost a good deal of money. I found one that was very inexpensive, and served half of our needs. The tool is Notes2Outlook. While the tool is still very immature (it terminates without warning when it hits an error, and is very sensitive about how you start it up, it doesn't clean up its own temp files, but can crash if you don't clean them up manually...that kind of thing), it did work for us in migrating email messages to PST files from NSF files. It was also cheap - $160 for a 3-month subscription, more than long enough to do a one-time import.
To do the import, you need to make sure you get a Lotus Notes client. If you're doing this process, you're probably an Outlook/Exchange Administrator, and don't know much about Notes. This is where I was a week ago. Make sure you get a copy of the client from the people who give you the .nsf backups. It's the only way you'll ever be able to read the .nsf files. There is no open source solution to accessing the emails, even if you spend $1000 or more for an import tool. The Exchange Migration Wizard and Lotus Notes Connector even requires installation of the Lotus Notes Client on the Migration machine.
Once you have the client, make SURE you can open the .nsf databases you were given. One of the .nsf files we received had 'local access protection' on it, and could not be opened by the Notes client. This causes all kinds of consternation when we tried to import it, and we had no idea that the problem was linked to the Notes client being unable to read the file. To do this, open the Notes Client, choose File, Database, Open and select the .nsf file. Make sure this brings up the messages you wish to import, or the contacts you wish to import. You'll be using the Notes client to do the import of contacts, anyway.
Install both MS Outlook and the Notes client on a fast machine. Install Notes2Outlook on the same machine. Begin your imports. A few tips:
- Open Outlook before starting Notes2Outlook. The programmer tries to instantiate it when it runs, but Outlook can be touchy when starting up, and the instantiation is best done while Outlook is already open and in memory.
- Make sure you specify a Working Directory that is EMPTY. Choose a different working directory for each import as you go along.
- Don't close Notes2Outlook in between conversions. We had a hard time with it opening back up cleanly. Just do all your imports with the one session.
- Don't choose the All option. It makes for a very big PST file.
- Notes2Outlook has a counter that appears on the screen down in the left bottom - but it's NOT in the Notes2Outlook window. When you start the application, move the Notes2Outlook window so that the counter can easily be seen on the backdrop of the application. There should be a status message when you start the application.
Now for the names.nsf file - the contacts. The Notes Client is good here, because it will export a VCARD file. Just choose Export, and you can Export an address book to a VCARD 3.0 file containing all of the contact information. There is one small problem, however. Microsoft Outlook does not understand multiple-entry VCARD files. That's just STUPID, but that's how it was when we tried to import the entries in Outlook 2003.
To solve this problem, I wrote a .VBS script that opens up the VCARD file and separates the VCARDS into their own files. Here it is:
Dim ifs, ofs
Dim infile,outfile
PATH = "C:\Notes Contacts\UserName\"
INFILE = "names.vcf"
OUTFILE = ""
i = 0
Set ifs = CreateObject("Scripting.FileSystemObject")
Set infile = ifs.OpenTextFile(PATH&INFILE,1,0)
intext = infile.ReadLine
Do Until infile.AtEndOfStream
'Check to make sure we're at the beginning of a VCARD.
If Left(intext,11) = "BEGIN:VCARD" then
i = i +1
OUTFILE = CStr(i)&".vcf"
Set ofs = CreateObject("Scripting.FileSystemObject")
Set outfile = ofs.CreateTextFile(PATH&OUTFILE,True)
'Begin building game buffer
outfile.WriteLine intext
intext = infile.ReadLine
Do Until left(intext,9) = "END:VCARD"
outfile.WriteLine intext
intext = infile.ReadLine
Loop
outfile.WriteLine intext
outfile.Close
Else
intext = infile.ReadLine
End If
Loop
infile.Close
Set ifs = Nothing
Set ofs = Nothing
To use it, just change the pathname of where you put the .vcf file that Notes creates, and this will make a series of files in that directory: 1.vcf, 2.vcf, etc.
I would recommend creating a directory for each user and running this split.vbs program on each directory.
Finally, you can drag and drop the .vcf files directly into the Outlook Contacts folder. When you do, you'll have to Save and Close each one (by default Outlook opens up the vcard, rather than saving it). You can likely hold down Alt-S on the keyboard to quickly do that.
I hope this blog entry helps some other poor sucker with their Lotus Notes to Exchange Migration or NSF to PST conversion. I know I was looking for a free solution on the Internet, and didn't find one. If the Notes client has an open API, perhaps some nice Open Source programmer will write a free converter. Until then, however, this is an inexpensive solution.
September 20, 2005
Artifact of a frightened populace
Metro stations in DC still haven't done anything about these welded shut newspaper boxes at the stations. While it may lead to more security, it has also led to dirtier stations since our nations newspapers are now handing out thousands of 'Express' copies to daily commuters. At this juncture they may just as well remove the welded doors entirely, giving the papers away without leaving them strewn all over the floor in the morning.
Time for REAL tort reform
The "New American Rule" is a proposed tort fee rule that would require lawyers to disclose their hourly rates to clients who may be contingency clients. An editorial in todays Washington PostTimes explains that this proposed new rule could help control unreasonable lawyer fees by exposing greed and giving control to consumers after a case is won. But does it go far enough? Hardly - part of the problem is that the consumer is just as greedy as the lawyer in question. Why wouldn't they agree to such rates in a 'roll-the-dice' situation as long as their own end were served? What the proposal lacks is the capping of 'reasonable' fees at such a point that extremely ridiculous cases are too risky even after factoring in potential rewards. Only then will the crap shoot be curtailed!
September 19, 2005
September 12, 2005
Busy busy busy busy
My chess-playing has been suffering a bit, since I'm not studying as much. But that's alright. When I lose a game, though, I can see where I've lost it, and it's usually a fairly blatant error. I can hold my own against most beginner players, and I'm all right with that.
We've been busy at work, with lots of projects coming to a peak all at once. It's definitely feast, not famine, at the moment. You know how work can ebb and tide.
As usual, the life of a suburban dad is too full. While I've given some thought to cashing in and moving to a simpler existence, life is just too busy at the moment. I don't even have time to catch up with all of my favorite hobbies. I really could use some focus.