Google+ API has final arrived!

Web developers have been waited for a long long time for this big news! Google has just announced the Google+ API is now available. Developers can now visit

https://developers.google.com/+/api/

to try out the API. This initial API release is focused on public data only — it lets you read information that people have shared publicly on Google+. Google will of course continue to announce new APIs when it comes to ready.

Here is the message to developers.

Greetings developers,

Thank you for showing your interest in the Google+ platform on our developer interest form. We promised to let you know when we had more details to share. Well, that time has come…

Today, we’re launching the first of the Google+ APIs. This initial API release is focused on public data only — it lets you read information that people have shared publicly on Google+. Read our blog post for more details.

Also, we’re happy to introduce a new Google+ developers site. This will be the place to go for our policiestermsdiscussions with other developers, access to documentation, tools that make development on the Google+ platform easier and more fun, and of course, the place where announcements concerning new releases will be made.

We’re looking forward to seeing what you build with the API. Today is just the beginning, and your work will affect what comes next, so go ahead and get started.

Happy coding!

- The Google+ platform team

CakePHP 2.0.0-RC1

Over a year after CakePHP 2.0 was announced, the team released Release Candidate 1 yesterday. It’s a very exciting news for all Cake developers. CakePHP 2.0 will not work on PHP4 systems anymore. It integrates SimpleTest, a new rewriting URLs structure, better handling in Authentication and new PDO drivers to work the same with different databases.

Checkout more from the original article.

http://bakery.cakephp.org/articles/markstory/2011/09/04/cakephp_2_0_0-rc1_hot_and_fresh

Firefox 5 is Released. Update your Firebug.

Firefox 5 has just released. Please update if you dare to try the latest features.

As usual for all major updates, most Add-ons are incompatible with the latest version. One of the developer must-have Add-on, Firebug 1.7.3, is incompatible with Firefox 5. You need to install Firebug 1.8 beta to work on Firefox 5. Firebug 1.8 is compatible with Firefox 4-7. So it should even work with the latest nighty build.

Firebug 1.8

 

Installing new Android SDK on Titanium Mobile

I recently updated the Android SDK Tools but found that I couldn’t create new project in Titanium Mobile. Titanium Developer blames me that I don’t have “adb” installed in “tools”.

Clearly Titanium haven’t updated to match the latest structure of Android SDK. To solve this, just create a symbolic link to let Titanium Developer.

For Mac and Linux users, change your directory to “android-sdk-mac-x86/tools” and do the following.

ln -s ../platform-tools/adb adb

Then a link is created and pointing to the correct file.

For Windows users, please following the post from

http://www.codeboxed.com/2011/03/install-the-new-android-sdk-on-titanium-mobile/

Yahoo! is shutting down delicious.com

Yahoo! is going to shut down Delicious. Yes! This is real. It’s not a joke. As a tiny little user, we can’t change the fact. What we can do is to export our bookmarks and wait for the death of delicious.com. Matt Crampton has posted an export tool on his blog. Just go there and save your valuable bookmarks.

What a shame that there is no announcements on delicious.com and no notification to any delicious users. We all just do what we supposed to do with delicious to reveal this, bookmark and tag the news. This has become the first bookmark on delicious.com.

RIP…

HTML5 on IE version lower than 9

HTML5 is so good as it makes the html document outline more semantic. This helps better SEO and easier for styling. However, most HTML5 tags are not supported in IE with version lower than 9. And IE9 can only be installed on Vista or 7. For the large amount of WinXP/2000 users, if they use the bundled browser, they would never read a website with HTML5 correctly. There are some workarounds on this issue. You may use Modenrizr to detect whether the browser support an HTML5 feature. Or you may simply include the following script in your html page.

<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
< ![endif]-->

The script will only be downloaded and run if it’s an Internet Explorer with version lower than 9. Therefore, IE9, Firefox, Safari, Chrome and Opera won’t download the file and it optimize the webpage loading time. After running the above script, IE (even IE6) will recognize HTML5 tags and you scan style them accordingly. Do remember to include the script before your CSS.

Although HTML5 tags are recognized, canvas won’t be working. However with the IE proprietary VML, canvas can work in IE. Just include excanvas.js into your project and canvas can be run in IE.