Posts

New Survey on Privacy and Tailored Advertising

The NY Times has posted a recent survey on tailored advertising (“ Contrary to what marketers say, Americans Reject Tailored Advertising and Three Activities that Enable It ”) released by professors from the University of Pennsylvania and the University of California, Berkley. It was not a surprised to learn that 2/3 (66%) of Americans do not want online tracking. It was a surprise to learn how many did not understand our privacy laws – most assumed they provided more protection. First I want to dig into the perceptions of our privacy laws as reported in the survey. If a website had a privacy policy, 62% of the respondents thought that meant that your collected data couldn’t be share with other companies. Another 16% didn’t know. Therefore, only 22% knew that a privacy policy was information the website provides on how they may or may not be using collected data about you. Other misconceptions in regards to privacy policies were as follows. If a website has a privacy policy… 54% assum

Create Hyperlinks in Excel Cells

Here's a simple trick. Some times I have data results in Excel, if combined with other URL data, it would take me to a specific record. For example, if I extracted Contact Record IDs from Salesforce.com and combined it with the URL prefix, I could view the record that corresponds to the ID. There are a few different approaches, but it all ends up using the same function: Hyperlink. Hyperlink takes two parameters: link_location and friendly_name (optional). Here are some examples: =HYPERLINK("https://na2.salesforce.com/" & B2) =HYPERLINK(CONCATENATE(A2, B2)) =HYPERLINK(CONCATENATE("https://na2.salesforce.com/", B2, C2)) =HYPERLINK("https://na2.salesforce.com/" & B2,"Joe Smith") The link location, in addition to being a URL could be a drive path (c:\foo\), a UNC path (\\Server1\folder1\), or even a "mailto:" (=HYPERLINK("mailto:" & H2)).

CADNA reports on House Judiciary Committee Holds Hearing on New TLDs

In a CADNA newsletter released today, they shared with us the results of the House Judiciary Committee Holds Hearing on New TLDs. In addition, CADNA has called for a full-scale audit of ICANN. For history on this issue, see my two prior blog posts here and here .) Congressional members who were in attendance expressed skepticism about the benefits that the potential TLD rollout... ICANN held their position that by adding the new, "potentially unlimited" TLDs, will promote innovation and competition. Further they stated that "protection mechanisms are being actively considered." If protection mechanisms are being considered, doesn't that indicate that even ICANN knows there's a problem with this? And if protection mechanisms are needed, wouldn't they wait and finish the work to have appropriate protection BEFORE rolling this out? Members of Congress pressed witnesses with questions about ICANN’s operations—many raised doubts regarding the benefits of

Tech Support Cheat Sheet

Image
Courtesy of xkcd.com

Lawmakers asking for information from ICANN

In July 2009 I wrote about ICANN's plans to expand the Internet's top-level domains (TLDs), and how I and others believes this will have a significant negative impact on companies, big and small. [TLDs are the .COMs, .ORGs, etc at the end of URLs.] "...companies are already losing over $1 billion annually due to cybersquatters misrepresenting and redirecting traffic on the Internet through taking advantage of URLs not purchased by companies. The proposal being made by ICANN can skyrocket those losses and increase expenses..." As reported by nextgov.com , 'Judiciary ranking member Lamar Smith and Courts and Competition Subcommittee ranking member Howard Coble, R-N.C., said they are worried that a vast expansion of domains will carry "serious negative consequences"...' in a letter to ICANN CEO Rod Beckstrom. Smith and Coble have reiterated the concerns over ICANNs plans for the additional TLDs and have asked for a reponse by September 22, 2009. Whil

How Safe Is Your Data?

Yesterday I worked on a project where I needed to export many of our company contacts. I also expect to be out on medical leave soon, and suspect that there may be a need for someone else to access my computer while I'm away. This made me think about how secure is my sensitive data -- whether my own or the companies. After reviewing my files, it turns out I've been a bit sloppy -- there were definitely some files on my hard drive that if my laptop was stolen, customer data could be harvested. Mind you it would take some effort, but all the same, the data was accessible. So, I moved those files to my TrueCrypt volume or I deleted them. As you may recall from a March 2008 blog post , TrueCrypt is a free open-source software that you can run on your computer to provide encryption for your files. The nice thing about TrueCrypt is that the encrypted volume looks and feels just like another hard drive -- anyone can use it. The other security practice I was already using was keeping m

New "Cookies" and your Privacy

Image
On Monday this week (Sep 14, 2009), the Electronic Frontier Foundation (EFF) released the first article of a three part series on how we're being tracked on the web today. After a review of cookie technology as originally designed, the EFF article discusses new forms of cookies. The article is rich with links to more detailed sources. What I would consider the most concerning of technologies is the use of Adobe Flash cookies. Unlike the traditional browser cookie, there is no easy way to delete cookies that are stored by websites using Flash as their storage mechanism (more on this below). I'll also add that all the new "Privacy Browsing" features in the current release of browsers apparently do not always clear all your tracks. If you found this feature helpful in your web browsing, its worth digging deeper into the limitations, and not take the vendors claim of privacy without investigating yourself. I'm not anti-cookie. In fact I think it's extremely impor

What Firefox Add-ins are you still using?

Image
I really like the extensibility that Firefox Add-ins provides for browsing -- it is the only reason I have not switched to using Google Chrome as my primary browser. (Google Chrome is compelling due to it being faster.) With that in mind, I though it would be a good time to review the Add-ins I currently have active in Firefox. These are the Add-ins on my home pc, using Firefox 3.5. AI Roboform Toolbar for Firefox : An absolute requirement for any browser I use on a regular basis. Roboform stores all my usernames and passwords, making it extremely easy to login to all my favorite websites. Roboform has a single master password that must be entered only the first time used during a computing session. Clear Cache Button : Very convenient way to clear the browser cache when I'm working on new code. ColorZilla : Perhaps my newest productivity saver. Using ColorZilla, I can sample any color on a webpage and immediately determine its value in hex and rgb. CoLT : Makes it easy to copy li

Word, "This file contains macros with an expired..."

Image
I started getting this error message when I opened Word, "This file contains macros with an expired or revoked signature." In my case, this was due to a Global Template Add-in that had an expired certificate. Word behaves differently depending on the Macro Security level. Very High : You only get a message that macros are disable for this project. High : You get an initial error message of "This file contains macros with an expired or revoked signature," before the prompt of macros being disabled. Medium: You get the option to Disable or Enable the specific macro. This dialog box will also provide some clues as to the source of the problem. Low : No warning or disabling of any macros. To change the Macro Security, go to Tools >> Macro >> Security... With an expired Certificate, if you still want to use the macro or template, you either need to set the Macro Security to Medium or Low. A Low setting can open you up for other problems, while Medium require

MS Access -- Run-time error '3464'

Being that I don't use MS Access often, I always look for examples of my prior work to assist me with my new problem. Today I ran into this error, Run-time error '3464': Data type mismatch in criteria expression , which was a good reminder. When writing a VBA query, Text needs wrapping in quotes, Dates need wrapping in hashes, and numbers need neither of these. If you get it wrong, you'll get the 3464 error message.