Useful Links: DW CS5 HTML5 Pack, Togetherville, synthetic cells, something’s happening here

Adobe Dreamweaver CS5 HTML5 Pack is a free extension. Sorry, it only runs on CS5—can’t retrofit older versions of Dreamweaver.

Togetherville: Walled Garden Social Networking for the Younger Set. There have been social networks for young children before, but this one is making news right now. I’m wondering what educators will do with this new site.

Scientists Create First ‘Synthetic Cells’ is a bit off-the-web-design-topic, but it’s fascinating news from the scientific world that may have far reaching implications.

Something’s happening here. People used to be either a Windows person or a Mac person. Now Android is outselling iPhone, Google has a new store in direct competition with iTunes, the number of Android apps is growing fast. When we weren’t looking the world changed to a place in which you are either a Google person or a Mac person.

How to Look Like a Wiz with RGBa

Show your wizard skills by learning to use the RGBa color specification in CSS3.

I’ll show you how to create a partially transparent background behind a paragraph using RGBa. The result will look like this:

the red color displayed with .5 opacity

You get control over the alpha channel with RGBa. The RGB represents red, green, blue. The A represents alpha transparency, or degree of opacity. In this color specification, there is no hexadecimal notation, the only allowed values are integers  (0-255) or percentages (0%-100%). Here’s an example.

p {color: rgba(0,0,255,0.5)}

The rule creates a paragraph that is a semi-transparent solid blue. The four integers in the declaration mean there is 0 red, 0 green, 255 (or 100%) blue, with an alpha transparency value of 0.5.  The values for the A can range from 0.0 which is completely transparent, to 1, which is complete opaque.

em {color: rgba(255,0,0,0.25)}
p {color: rgba(100%,50%,0%,0.8)}

The first rule creates an emphasized element that is solid red and very transparent with the value 0.25. The second rule styles a paragraph with percentage values. It would display as a slightly transparent orange.

Here’s how I created the strawberry example you see above. The HTML is

<div id="ex">
<p>Strawberries </p>
</div>

The CSS is

#ex {
width: 542px;
height: 80px;
background: url(img/strawberry-bg.jpg) no-repeat;
border: 2px solid #999;
}
p {text-align:center;
font-size: 2em;
background-color: rgba(255,0,0,.5);}

You can use RGBa in CSS anywhere you use color: a background, a border, a heading, etc. To control what is shown in IE8 and older, give a normal RGB declaration, followed by and RGBa declaration. Non-compliant browsers will simply ignore the rule they don’t support. Compliant browsers will use the last rule in the cascade. If you quit worrying about IE8 and older long ago, just use the rgba rule – all modern browsers support it.

color: rgb(255, 255, 255,);
color: rgba(255, 255, 255, 0.5);

With pseudo elements like a:hover, the degree of opacity can be used to create beautiful and informative effects.

Note: Updated October 5, 2014 with current information.

Burning Questions about Twitter: Answered!

Bonggamom says there are Things About Twitter I’d Like to Know. Since one person’s questions are usually lurking in the minds of others, I thought the answers might be helpful to share.

Bonggamom’s first question is “Is there anywhere in the blogosphere that lists down upcoming Twitter parties?” The answer is yes, with limits. Many Twitter meetups are organized through Twitter.Meetup.com. If you don’t find one near you, then use Meetup to start your own. Meetups are also organized and run through Twitmit. Twitmit meetups are scheduled via Twitter, Facebook and by email. Both of these tools allow you to search for meetups by location.

Bonggamom asks, “Does anyone know of any twitter tool that counts how many tweets occurred with a certain hashtag between a specific start and end date?” A number of solutions I found suggested (but not implemented) for this idea involved using the Twitter API to glean your information. I think Bonggamom is looking for someone who’s already done that part. Tweetreach can do the job, including meeting the requirement to limit the data to certain dates. SWIX tracks Twitter data. SWIX is a complete social media tracking tool—and not free. (I’ll be writing more about it next week. You know the drill—stay tuned.)

For the mobile user, Bonggamom wants to know, “If you don’t have a smart phone, what are some good Twitter apps to use?” NOT a smart phone. Ouch, that’s a hard one. But doable, according to The Best Mobile Applications for Twitter.

Just associate your Twitter account with Posterous and then you’ll be able to post updates on Twitter by sending emails to twitter@posterous.com. Whatever you put in the email subject will be converted into your Twitter status.

According to 20 ways to use Twitter from your mobile phone, any phone with SMS capability can use Twitter.

First see: How to activate your phone for Twitter

Then text your update to:

  • In the US, use 40404.
  • In Canada, use 21212.
  • In India, use 5566511.
  • Anywhere else, use +44 7624 801423

Bonggamom wants to know, “How do you insert all those special characters like notes and hearts and smileys into your tweets?” Like these . . .

•*¨*•.¸♥.❀*¨`*♥.¸.•*¨`*¸♥•*SWEET DREAMS¨*•.¸♥.❀*¨`*♥.¸.•*¨`*¸ .•*¨•*¨♥.¸.❄•*•*¨`*♥.❀•*¨•*¨EVERYONE♥.¸✻.•*¨`*¸.♥❀.•*¨•*¨♥.Sat May 15 03:03:41 via Twaitter

I use Twhirl by Seesmic on my desktop, and there are special characters in the Edit menu. For using Twitter in your browser, Next Web has a bookmarklet that provides special characters. Twitter Symbols is also a browser bookmarklet. You can add on the Greasemonkey scripts to Firefox, specifically the Tweetsymbols script, which allows you to drag symbols in to your Tweet input box. I looked around in the Twitterific app I use for Twitter on my iPhone and couldn’t find a way to insert special characters there.

Next, Bonggamom is burning to know, “Is there any tool around for effectively managing your Twitter followers, i.e. be able to sort them alphabetically, by age, by location, be able to search for a specific follower, etc?” I couldn’t find any online way to sort followers aphabetically. Like Bonggamom, I wish there was a way to do this. I find it really hard to search among my followers when I’m looking for someone in particular whose Twitter name I’m not 100% sure I remember correctly. It’s much faster to use Twitter’s Find People search and look for their name.

Foller.me will put all your followers’ locations on a Google map. You can search your follower’s bios with TweepSearch. Many bios mention location. A bio search might reveal age, but I don’t often see age mentioned in many Twitter profiles.

It was fun for me to find all this information. To Bonggamom, I can only say thanks for asking.

Cross-posted at BlogHer.

Now Available! InterACT with Web Standards: A Holistic Approach to Web Design

InterACT with Web Standards coverInterACT with Web Standards: a Holistic Approach to Web Design is available today.

This announcement is a BIG DEAL.

This book puts everything you need to teach a class in web design or development with web standards into your hands. The book is easy to use in connection with InterACT’s 17 courses in 6 learning tracks making it the perfect tool and resource for teaching or learning contemporary web design best practices.

If you are a student who wants to learn about building a web site with web standards, this book will lead you there.

For educators, your semester will be a snap to plan with this book. It’s all right there for you.

The book is published by New Riders (2010). There are 10 authors. The major contributor being Chris Mills, with additional expertise from Erin Anderson, Virginia DeBolt, Derek Featherstone, Lars Gunther, Denise Jacobs, Leslie-Jensen-Inman, Christopher Schmitt, Glenda Sims and Aarron Walter. I’m really proud to have been a small part of making the book a reality, because I think the book is going to be very important to students and teachers who are looking for the a reliable resource for web design best practices.

In addition to the writers, a number of other people worked to bring this book to life. They include Aarron Walter as project manager, Patrick Lauke as technical editor, Jeff Riley as development editor, Leslie Jensen-Inman as creative director and Jessi Taylor as book and site designer.

Many kudos go to Leslie Jensen-Inman and Jessi Taylor. When you see this book and hold it in your hands you will realize what a work of art it is from a design and typography point of view. It’s a beautiful book.

Take a look at the table of contents:

  1. InterACT
  2. Tools
  3. Learning on the Web
  4. Internet Fundamentals
  5. Writing for the Web
  6. Information Architecture Intro
  7. Site Planning
  8. Content Analysis
  9. Content Strategy
  10. HTML Intro
  11. CSS Intro
  12. <head>
  13. Headings and Paragraphs
  14. Whitespace
  15. Links
  16. Images
  17. Lists
  18. Tables
  19. Forms
  20. Floats
  21. Positioning
  22. Accessibility Intro
  23. Accessibility Helps
  24. Accessibility Testing
  25. Bringing it All Together
  26. Index

The InterACT with Web Standards book site has everything you need to know. There, you’ll find links to purchase the book, links to code examples from the book, links to bonus content, and links to the sample project. The site has links to information about InterACT, OWEA, and the Web Standards Project. You can take a peek inside the book, read some reviews, grab links to all the resources cited in the book, and MUCH MORE.

Buy now and take advantage of this limited time offer tweeted by @waspinteract.

InterACT With Web Standards, the first book from The Web Standards Project, is out. Save 35% on it with code INTERACT. http://cot.ag/9RS4rEMon May 17 16:00:20 via CoTweet

Women in Tech

The group pool I started on Flickr for images of Women in Tech now has over 200 images. The tags accompanying these images tell a story of where the images were taken. Is there a tech event with women involved that isn’t represented in this tag cloud? Are there photos of women from the event on Flickr? Please let me know the event tag for a Flickr search and I’ll invite them to the group.

Tag cloud for Women in Tech group pool on Flickr
Tag cloud for Women in Tech group pool on Flickr

Useful links: Facebook privacy, speed-listen

A blog post that makes clear the importance of long content comes to us from danah boyd, who knows a thing or two about privacy. danah makes some powerful points about what is happening with privacy on Facebook. Facebook and “radical transparency” (a rant). There are so many quotable points in the post. I will quote one, and encourage you read it all. Read the comments, too.

The battle that is underway is not a battle over the future of privacy and publicity. It’s a battle over choice and informed consent. It’s unfolding because people are being duped, tricked, coerced, and confused into doing things where they don’t understand the consequences. Facebook keeps saying that it gives users choices, but that is completely unfair. It gives users the illusion of choice and hides the details away from them “for their own good.”

Quick Tip: Speed-listen to Podcasts on your iPhone/iPod at Web Worker Daily is a great tip.

Useful Links: Accessibility tweeps, NFB Complaint, 3G woes

The ultimate “follow Friday” list for accessible tweeps or perhaps it would be more correct to say people who tweet about accessibility.  Oddly, the names in the list are not linked to the relevant twitter pages, making following the suggested people rather labor intensive. One Twitter name on their list is wrong. Tom Babinszki is @tbabinszki, not what their post says. Complaints aside, it’s a useful resource list for those interested in accessibility information on Twitter.

Law Schools Discriminate Against Blind Applicants: National Federation of the Blind Files Complaints Against Nine Law Schools. This action from the National Federation of the Blind may have far reaching consequences similar to what happened with the Target lawsuit.

The other day someone was asking my opinion about whether to not to buy an iPad, and if she did, whether it was worth the extra hundreds to get an iPad with 3G capability. My position was go for the 3G if you’re going to do it. I think it’s a good policy to start with the maximum capability you can get in  a new device. It you start from the lowest point, you have to upgrade almost immediately to keep the device useful for a period of years. Then yesterday, something happened to several AT&T towers in the Albuquerque area, and my phone lost service for the day. After repeated attempts to get through to AT&T from my neighbor’s land line (I don’t have a land line) I finally talked to someone at AT&T. They had me turn off the 3G capability on my iPhone and use the Edge network until the 3G problem was fixed. I was stunned by how slow service was using the Edge network. Honestly, I’d never realized what a significant difference 3G makes. Now I can speak from experience when I tell people that they should go for the 3G if they are going to spend the money  for a device of any kind. And, by the way, 3G is back in working condition  in my part of Albuquerque today.