Bio
I'm interested in technology, web education, and writing. I create a daily writing prompt at First 50 Words and write about web education and web tec...
 
 
 
 

What’s Hot on BlogHer.com

Recent Comments

Weekly Tech Roundup

  • Share This Post
  • submit
  • 4
  • Sparkle (
    )
     

In Like your PDFs on the dangerous side?, Tech Kitten reports that a

hacker has found an exploit in the Adobe PDF file format that would allow a malicious attacker to take over your Windows computer.

She explains a bit about how this works and offers some good advice.

So what should you do if you’re a Windows user? Although it’s always smart to make sure your browsers are up-to-date with patches installed, and be sure your Adobe Reader is up-to-date, this particular exploit effects all versions of Adobe Reader. So until Adobe release a fix (which should be quickly, since this is a very serious issue), don’t open documents from a source that you don’t know and trust. Which is just good common sense anyway.

The O'Reilly Network has been running a series of articles titled Women in Technology. Some of the names of women participating in the series are Danah Boyd, Kirsten Jones, Juliet Kemp, Tara Hunt, Erica Rios, Lauren Wood, Shelley Powers, Nelly Yusupova, and many others. The opinions expressed by these women range from "So What?" to "Proud to be a Geekette" and must be sampled completely.

Mary Hunt at In Women We Trust continues to promote ideas that fit in with her philosophy that one must buy the change one wishes to see in the world by supporting green products. She calls it her purse string theory. This week she mentions that WE Magazine is adding a Greenwise section.

This is what we love to promote - business which supports business which encourage green thinking. Purse String Theory: What women buy AND PROMOTE will change the economic market.

The posts at Web Worker Daily continue to provide high quality time and work saving ideas for web workers, including some recent advice for improving your Gmail life.

I don’t think I’m alone among web workers in my love for Gmail for its speed, ease of use, spam filtering, searches, conversation threads, filters and more. It’s the go-to email program for many people.

However, as great as Gmail is, it can be made better and cooler. We’ve written recently about getting the most out of your Gmail, but today we’ll take a look at some ways to pimp your Gmail, for more functionality and a nicer look.

If you're a Wordpress blogger, check out Lorelle on WordPress for the full info on the recent arrival of tags on Wordpress. She explains how to add tags to your Wordpress blog, and gives you the background of what they are and how best to use them.

  • 4
  • Sparkle (
    )
     

Comments

Post comment as twitter logo facebook logo
Sort: Newest | Oldest
Virginia DeBolt 9 pts

Me, too. I subscribed the first time I discovered one of her posts, also.

http://www.webteacher.ws/
http://first50.wordpress.com/

Elisa Camahort 8 pts

Subscribed!
Macs and cats...2 of my favorite things :)

Elisa Camahort
BlogHer
elisa@blogher.org

Virginia DeBolt 9 pts

Gosh, touched a nerve there with the PDF thing, eh?

Actually, I was reading some where this week--I think it was the weekly high rankings advisor email from Jill Whalen at http://www.highrankings.com/ -- that said that the search engines have learned how to index PDF documents and they really love the durn things because they are all text.

It is pretty easy to warn people that a link is to a PDF file using a type of CSS selector called an attribute selector. Here's a CSS rule I use:

a[href$=".pdf"] {
background: url(img/pdficon.jpg);
padding-right: 37px;
}

Let me translate that into English. The "a" is the CSS selector for a hyperlink. The [href$=".pdf"] is the attribute of any "a" element that is going to meet the criteria. This particular attribute says that if any link href attribute contains the letters ".pdf" then a background image will show up for the link. In this case, the background image is a little PDF icon that tells the user that the link, when clicked, will lead to a PDF file. The padding just moves the little icon so that it isn't right behind the text and both the words you click and the icon show up clearly.

The one hitch with this is that Internet Explorer 6 does not support attribute selectors. But all other modern browsers do.

http://www.webteacher.ws/
http://first50.wordpress.com/

Alanna Kellogg 5 pts

... to despise PDFs and to eliminate from the Google gene pool any site that links to PDFs without warnings in bright lights and provides no HTML alternatives.