Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
History is littered with hundreds of conflicts over the future of a community, group, location or business that were "resolved" when one of the parties stepped ahead and destroyed what was there. With the original point of contention destroyed, the debates would fall to the wayside. Archive Team believes that by duplicated condemned data, the conversation and debate can continue, as well as the richness and insight gained by keeping the materials. Our projects have ranged in size from a single volunteer downloading the data to a small-but-critical site, to over 100 volunteers stepping forward to acquire terabytes of user-created data to save for future generations.
The main site for Archive Team is at archiveteam.org and contains up to the date information on various projects, manifestos, plans and walkthroughs.
This collection contains the output of many Archive Team projects, both ongoing and completed. Thanks to the generous providing of disk space by the Internet Archive, multi-terabyte datasets can be made available, as well as in use by the Wayback Machine, providing a path back to lost websites and work.
Our collection has grown to the point of having sub-collections for the type of data we acquire. If you are seeking to browse the contents of these collections, the Wayback Machine is the best first stop. Otherwise, you are free to dig into the stacks to see what you may find.
The Archive Team Panic Downloads are full pulldowns of currently extant websites, meant to serve as emergency backups for needed sites that are in danger of closing, or which will be missed dearly if suddenly lost due to hard drive crashes or server failures.
ArchiveBot is an IRC bot designed to automate the archival of smaller websites (e.g. up to a few hundred thousand URLs). You give it a URL to start at, and it grabs all content under that URL, records it in a WARC, and then uploads that WARC to ArchiveTeam servers for eventual injection into the Internet Archive (or other archive sites).
To use ArchiveBot, drop by #archivebot on EFNet. To interact with ArchiveBot, you issue commands by typing it into the channel. Note you will need channel operator permissions in order to issue archiving jobs. The dashboard shows the sites being downloaded currently.
When you update your avatar or profile, your changes appear instantly across thousands of platforms. Save time and maintain a consistent online presence effortlessly.
Your Profile, Your Way
Share your social media profiles, portfolio, website, and other relevant links easily. Your Gravatar profile works like a digital business card — simple, elegant, and uniquely you. Perfect for your link-in-bio.
Gravatar links your identity to an email address, not your name. Seamlessly manage your work, personal, and anonymous profiles.
Privacy First Design
You're in control. Make your profile private or choose what you share and when. With Gravatar, your data is yours and yours alone.
PROFILES-AS-A-SERVICE
For Developers
Customize user experiences and bootstrap your community with verified user profiles, including avatars, social links, and more. Integrating Gravatar is effortless with our REST API, SDKs, and easy-to-follow tutorials.
const sha256 = require( 'js-sha256' );
function getGravatarURL( email ) {
// Trim leading and trailing whitespace from
// an email address and force all characters
// to lower case
const address = String( email ).trim().toLowerCase();
// Create a SHA256 hash of the final string
const hash = sha256( address );
// Grab the actual image URL
return `https://gravatar.com/avatar/${ hash }`;
}
1 2 3 4 5 6 7 8 9 10 11 12
function get_gravatar_url( $email ) {
// Trim leading and trailing whitespace from
// an email address and force all characters
// to lower case
$address = strtolower( trim( $email ) );
// Create an SHA256 hash of the final string
$hash = hash( 'sha256', $address );
// Grab the actual image URL
return 'https://gravatar.com/avatar/' . $hash;
}
You Asked, We Answered
Is Gravatar really free?
Yes, Gravatar profiles are completely free for individual users. We're committed to providing a valuable and open service for the web.
Can I use a custom domain?
Absolutely! You can personalize your Gravatar profile with your own domain. You can register a domain on our sister service, WordPress.com, and map it to your Gravatar profile.
How does Gravatar compare with other link-in-bio services?
Gravatar is an open alternative to profile page services like LinkTree. Integrated across millions of websites, Gravatar avatars and profiles ensure a consistent presence online. You have full control with no data lock-in and can use your own custom domain. Update your profile once, and it updates everywhere.
Can I have multiple Gravatars?
Yes! You can create different Gravatars and profiles for various aspects of your life — work, personal, hobbies, or anonymous profiles. Just create additional accounts using a different email address.
Who owns Gravatar?
Gravatar is a service by Automattic, the company behind WordPress.com, Tumblr, Pocket Casts, Day One, Beeper, WooCommerce, and other popular web services. We are passionate about open-source and making the web a more accessible place.