Web Design Evolution: Two Decades of Innovation [INFOGRAPHIC]

About Mashable

Founded in 2005, Mashable is the top source for news in social and digital media, technology and web culture. With more than 40 million monthly pageviews, Mashable is the most prolific news site reporting breaking web news, providing analysis of trends, reviewing new Web sites and services, and offering social media resources and guides.

©2005-2011 Mashable, Inc.
Reproduction without explicit permission is prohibited. All Rights Reserved.

Awesome info graphic on the evolution web design. I think next will the rising of CSS3 and the repeat od simple designs.

Posted

Posterous's Customer Service

I posted a post early today about Posterous speed be slow (http://news.ycombinator.com/item?id=2388543) and to my surprise I recieved a reply back from the CEO, Sachin.

It's not too often the head of a company replys to Customer Service issues. Thanks Sachin for your support and for providing such a kickass service!

Posted

Readability - An Arc90 Lab Experiment

I'm becoming addicted to Readabilty.

Filed under  //  StumbleUpon  
Posted

Is Posteorus going premium soon?

Payments

Posterous requires a credit card to be on file for all paid accounts. Posterous reserves the right to bill these accounts for services. It is solely up to the user to downgrade their account in order to terminate recurring charges. Posterous reserves the right to terminate services to any delinquent account. There is a 15 day return policy for Posterous services.

Posterous may also resell third party services such as domain registrations. These services are provided by another company and Posterous makes no guarantees or warrants on them. There are no refunds for domain registrations.

I heard rumors that they were. Today I noticed this on the TOS. Anyone know if this has been there for a while?

Filed under  //  StumbleUpon  
Posted

Redesigning the Boarding Pass - Journal - Boarding Pass / Fail

Media_httppassfailsqu_gxnup

I thought this was a super cool redesign of a plane ticket, going to see how to translates to a posterous design.

Filed under  //  StumbleUpon  
Posted

Posterous API Library for PHP 5 | Calvin Freitas

Current Version: 0.1
Code Available on GitHub
Public Clone URL: git://github.com/calvinf/posterous-api-library-php.git

I have written a PHP 5 library for the Posterous API. It uses the curl extension to query the Posterous API, retrieves the XML, and returns the XML as a SimpleXMLElement.

I have tested all of the Reading, Posting, and Post.ly methods. I have not done tests of the Twitter/media upload methods.

I am making a Posterous Headlines for WordPress plugin. It is currently available via GitHub, and it will be added to the WordPress plugins directory after additional testing.

Some methods require passing the username and password for a Posterous account to the constructor.

Example:

01 <?php
02 require('posterous-api.php');
03 $api = new PosterousAPI();
04  
05 header('Content-type: text/html');
06  
07 try {
08     $xml = $api->readposts(array('hostname' =>'calvinf'));
09 }
10 catch(Exception $e) {
11   print $e->getMessage();
12   die;
13 }
14  
15 foreach($xml->{post} as $post) {
16     echo $post->title . "<br />";
17 }
18 ?>

This is a cool php lib I found for the Posterous api.

Filed under  //  Code   Quote  
Posted

Twitter Accounts Hacked

As first reported to Michael Arrington at techcrunch.com , several Twitter accounts have been hacked.  Jared Smith who works in my office monitors Twitter religiously and notified me of this hack.

Fox News

Media_httpjohndturner_dkzaj

Techcrunch Email

Media_httpfarm5static_pppar

Filed under  //  Articles   Twitter  
Posted