Posts Tagged ‘PHP’

PHP: Timestamp validator and converter

Monday, May 3rd, 2010
  1. <?php
  2.  
  3. /*
  4.  *  Timestamp validator and converter
  5.  *  {cc} Owen Mundy ~ owenmundy.com
  6.  *
  7.  */  
  8. function convert_date($string)
  9. {
  10.     // make sure it is a string with a number && > 1992-05-07 && < 2033-05-18
  11.     if ( ctype_digit($string) && $string >= 800000000 && $string <= 1999999999 )
  12.     {
  13.         // if so convert it to a human-readable date
  14.         $d = date(‘Y-m-d H:i:s’, $string);
  15.         return $d;
  16.     }
  17.     else
  18.     {
  19.         return false;  
  20.     }
  21. }
  22.  
  23. print convert_date("1613199869");
  24.  
  25. ?>

Thanks

“Give Me My Data Helps Refill Blanked Facebook Profiles” – ReadWriteWeb

Sunday, May 2nd, 2010

logo_readwriteweb

Give Me My Data Helps Refill Blanked Facebook Profiles
by Curt Hopkins, ReadWriteWeb, May 2, 2010

“Facebook App Brings Back Data by Riva Richmond” – The New York Times

Saturday, May 1st, 2010

logo_nyt

Facebook App Brings Back Data by Riva Richmond, New York Times, May 1, 2010

“The app is “making hackers out of regular users,” says the developer, Owen Mundy, an assistant professor in Florida State University’s art department. And it’s giving them a way to exercise ownership rights over their data. (After all, Facebook’s Statement of Rights and Responsibilities says users “own all of the content and information” they have posted on Facebook.)”

Give Me My Data public alpha launch

Sunday, January 31st, 2010
GMMD_Icon_for_facebook_150w

Today I launched the public alpha version of my Facebook application Give Me My Data for testing and feedback. This app helps you reclaim and reuse your Facebook data.

Feel free to test it and let me know what you think!

HZ Net Gallery #13

Monday, December 21st, 2009

hz logoKeyword Intervention has been included in the recent HZ Net Gallery update. Also included were: Alysse Stepanian, Rudi Punzo, Aaron Oldenburg, Aaron M. Higgens, Anders Bojen & Kristoffer Ørum.

Facebook Death Star

Friday, November 13th, 2009

Here are two images I created with NodeBox (Python) and PHP (data via facebook API).

facebook_network_graph_bigcircle
All friends, one common link.

facebook_network_graph_mutualfriends
All the mutual connections I could gather before the script timed-out. Need to make the gathering more efficient.

FSU Art Review System Live

Wednesday, November 11th, 2009

The FSU Art Review System is live.

More images online here.

20091111_art_review_home2

20091111_art_review_edit_files

Tag cloud with PHP

Friday, September 25th, 2009

Tag cloud of ga-asi.com.

20090915_tagcloud

Visualizations of sitemap and content of owenmundy.com via manyeyes

Sunday, August 9th, 2009

Experimenting with various methods of visualization available at manyeyes

20090801_manyeyes_wordle

Wordle cloud

20090801_manyeyes_phrasenet

Phrase Net

Mapping the content from owenmundy.com

Wednesday, July 22nd, 2009

Every page on my website and blog. Created using a PHP spider and MySQL. Click image for PDF file.


20090722_sitemap_owenmundy.com1