Today Mozilla announced the launch of the Social Media Toolkit.

The Mozilla Social Media Toolkit is a set of tools that allows you to leverage social media to market Mozilla and Firefox in your region and beyond. The toolkit contains everything you’ll need from best practices, tips and tricks, to design assets for both Facebook and Twitter.
This is a big day for Yahoo! Messenger. Yahoo! announced that they’ve opened up the Yahoo! Messenger platform for developers. This exciting SDK will allow developers to use the Yahoo! Messenger platform to create innovative new applications and services.

Firefox Home, a free application, is now available for download on your iPhone or iPod Touch.
Firefox Home provides access to your Firefox desktop history, bookmarks and open tabs on your iPhone. Get up and go and have exactly what you are looking for on the Web on your iPhone or iPod Touch. Firefox Home uses your browser data, securely synced from Firefox on your desktop to the cloud, to let you search and browse quickly and efficiently. You can view the sites you want directly in Firefox Home, open them in Mobile Safari or share them with friends via email. Your Firefox data is private and only you have access to it.
Firefox 4 Beta 1 is now ready to download and test! This first version gives an early look at what’s planned for Firefox 4. Stay tuned, because there is more to come and mozilla plan to release new beta versions every two to three weeks. Your feedback is essential to help shape the product which is why they’re launching now to hear from you early in their development process.

From text that is too small to read, to user interfaces that do not offer keyboard navigation options, users with special needs face a lot of challenges when trying to access websites they are interested in. Google Chrome team believe that extensions can complement the work the team is doing to make Google Chrome more accessible and can help users with disabilities turn the web from an often unwelcoming place to an environment they can truly enjoy.
Today, Firefox launched an update to our crash protection feature to extend the amount of time Firefox will wait before terminating unresponsive plugins.
The crash protection feature, first introduced in Firefox 3.6.4, protects Windows and Linux users from crashes and freezes caused by third party plugins such as Flash and Silverlight. When a plugin crashes, users can reload the Web page to restart the plugin and continue browsing. When a plugin freezes, making the whole browser unresponsive, Firefox 3.6.4 terminates the unresponsive plugin after waiting 10 seconds. These changes were tested with a beta audience of close to one million users.
Today, Mozilla is happy to release Firefox 3.6.4, the latest security and stability release for Firefox, used by nearly 400 million people around the world to browse the Web. This release provides crash protection for Windows and Linux users by isolating third-party plugins when they crash.
Results from our beta testing show Firefox 3.6.4 will significantly reduce the number of Firefox crashes experienced by users who are watching online videos or playing games. When a plugin crashes or freezes while using Firefox, users can enjoy uninterrupted browsing by simply refreshing the page.
I’ve just read last week that Firefox would implement calc() in their new version of Firefox. It’s not out in any publicly released version yet but it is coming as they talked about it on their developers blog.
Why should you care?
Ever had an element that needed to have a percentage width with padding? Up until now, because of the way the box model works in modern browsers, you had to wrap the content in a container to which you’d apply the padding. That’s because when you define padding to an element the value is added to the width, which is the proper way of doing it.
Nowadays, most of us have so many email addresses, it’s hard just to keep track of our own, let alone manage those of our family and colleagues as well. Throw newsgroup subscriptions and multiple storage folders into the mix as well, and it’s a management nightmare.
Mozilla Thunderbird, my email client of choice, solves this problem effectively and easily with Profiles.
How do Thunderbird Profiles work?
Thunderbird allows multiple users to set up the email client to suit their own specific needs and tastes, from Themes and Extensions to Email accounts, Inboxes and Newsgroup subscriptions.
Upon startup of Thunderbird, you are able to choose which user profile you would like to use.
So, you can now have a profile for yourself, one for your partner, and even one for the kids (allowing you to increase Thunderbirds’s spam and security measures).
Each profile is independent of the others, so it’s like having a new installation for each user.
Count the number of SSH commands
SSH connections from a local machine to a remote machine. The following command will give you the count:
ss | grep -vE ‘State’ | awk ‘{print $1 “–>” “Local(“$4″)” “to” “Remote(“$5″)”}’ |grep -e ssh |wc -l
And the following command will print out the SSH connections from the local machine to the remote machine.
ss | grep -vE ‘State’ | awk ‘{print $1 “–>” “Local(“$4″)” “to” “Remote(“$5″)”}’ |grep -e ssh