YouTube looks to offering full length TV shows
YouTube will start offering full length TV shows with ads as Google is trying to get more revenue out of the video sharing site.
Full story at NYTimes.com
YouTube will start offering full length TV shows with ads as Google is trying to get more revenue out of the video sharing site.
Full story at NYTimes.com
On several WordPress projects I've needed to get the value of a custom field. Not too difficult using the get_post_meta command, but I wanted a little quicker way. So I now add this little function to the functions.php file on themes I'm working on.
PLAIN TEXT
PHP:
function getMeta($key)
{
global $post;
return get_post_meta($post->ID, $key);
}
Say you've got a custom field [...]
Need a way to show the progress on a long process on your web page? Here's a quick little JavaScript routine that will do it for you.
About a week ago Google celebrated it's 10th birthday. It's amazing in a world where websites come and go on a seemingly weekly basis to see one that's around that long.
Screenshot of Google from 1997
They have put up a page that allows you to search their index from 2001 so you can [...]