Oracle lauches their new PHP Developer site on OTN

John Coggeshall talks about Oracles new addition to their OTN site for php developers.

While I was attending the International PHP Conference in Amsterdam, I had an opportunity to stop by the Oracle exhibit and get introduced to a brand-new PHP Developer Center on Oracle's Developer Network! This is the second such announcement from a major database company (SAP recently launched a new PHP Development Forum which I am moderating as part of a SAP/Zend joint effort). Between Oracle, SAP and of course IBM it is becoming increasingly clear that PHP has moved from a thriving open source project to an enterprise solution powerhouse for web applications!

Yahoo! Traffic Conditions data in an RSS Feed

Yahoo! has opened their Y! Local Traffic content to allow Apple's Dashboard to create a  Y! Local Traffic widget. For this to work, Yahoo has to expose the data in an easily digestiable format. As it turns out, Yahoo has decided to use RSS to accomplish this.

This is huge since it is now easily consumable by RSS readers, so other people can piggy-back on the feed. There’s already a blog post describing how the widget works and it even provides a little form for making your own URL.

In short, here is how the feed works:

http://maps.yahoo.com/traffic.rss?csz=45202&mag=4&minsev=2

The parameters are:

  • csz The location from which you want to do your search - as far as I know only cities are supported at the moment. You can provide both a zipcode, a city or an address - all seem to work.
  • mag The level of ‘magnification’. 3 = 4 Miles, 4 = 10 Miles, 5 = 40 Miles
  • minserv The minimum severity of the traffic condition. 1 = Minor, 2 = Moderate, 4 = Major, 5 = Critical

I am looking forward to see how many interesting things people can come on ways in which this data can be used..

Turning a background image into a clickable link

I had been trying to find the best approach to making my header logo into a clickable link that would return to the home page of one of my websites ( bearcatnews.com ). The problem was that I really wanted to leave the image inside my style sheet instead of marking it up inline.

Since there is no way that I know of to make a background image a clickable link, I decided to assign the "onclick" event to the div tag that contained my background image.

Here is the result:

HTML Markup -

<div id="header">
<div id="logo" style="width:300px;height:69px;cursor:pointer" onclick="location.href='/'"> </div>
</div>

Google appears to be increasing Gmail capacity

I noticed an article from ZDNet announcing that Google plans to double Gmail capacity--at least.. I was first a little leary since it is April 1st but then remembered that Gmail was announced last April 1st so Google appears to have a sense of humor.

Here are some screenshots from my Gmail account that shows that they are in fact bumping up the storage as we speak. Notice the total amount of storage available:




I guess what suprises me most is the fact that it is slowly building up to the 2GB capacity. Is this dynamically adding the available storage based on how much drive space is available to the system? Could they possibly be allocating this much storage for EVERY user instead of counting on the 80/20 theory where 80% of users use 20% of the resources while the other 20% use 80%??

Downloading a file via HTTPS using PHP

Here is some information on how to download a file over an HTTPS connection from PHP. This normally is not a big issue in both IE and Mozilla for HTTP but changing to a HTTPS connection breaks using IE for downloading.

For anyone looking at this issue of http vs https downloads I found that the only change I had to make to my working script was to add the header line:

header("Pragma: cache");


So my script ended up with the following:

F-Spot - A new photo manager for Linux

in

I just stumbled on to this photo manager (think Picasa or iPhoto) written for linux that look promising. Here are some links and information on it. I will write more once I have a chance to play with it.

F-Spot Wiki

- F-Spot use cases

F-Spot project page
- Mailing list
- TODO from the CVS - the next closest thing to a roadmap.

Yahoo! Search Web Services Are Alive!

Yahoo has one-upped Google with the announcement of their API. Google has been doing this for a while now (3 years), but you never hear anything new about it like you do with Amazon's API where new applications seems to appear on a daily basis.

The SDK includes BSD-licensed examples in Perl, Python, PHP, Java and JavaScript (Google's SDK includes Java and .NET examples), and accesses Image, Web, Video, Local, and News searches (last time I looked, Google did Web, Cache, and Spelling)! Yahoo's API uses REST rather than SOAP, which I personally find much easier to work with.

The big deal about IBM and Zend's partnership

IBM is putting its corporate heft behind your favorite web development technology.

IBM announced a partnership with Zend to create a bundle called Zend Core, which includes IBM's Cloudscape-embedded database and Zend's PHP development tools. Zend sells tools built on the open-source edition of PHP and offers related services.

Google Maps set to blow minds

in

Matt Haughey has some brief comments on the new Google Maps. Very cool stuff. He forgot to mention the coolest thing of all: drag-able navigation on the map. Just click and drag your mouse over the map in any direction to move the map to any area outside the viewable portion.

You can also click on Directions on the top of the page to get driving directions between two locations.

Xinha = HTMLArea + active development

Just so you know, there is actually a fork of HTMLArea called
Xinha
which has alot of the bugs (that are currently in htmlarea) fixed. Most importantly, it is actively being developed where HTMLArea has pretty much died on the vine.

Syndicate content