I have been bought by Google. It's looks pretty cool and impressive. A few days later, I will push a feature list, but now I have no time to do this. But the video itself is good and what it show is even better =)
Wednesday, October 19, 2011
Thursday, October 6, 2011
I have an App for that!
Yes, I know... It's not a fresh news but this image can make me smile. I don't like Apple, iPhone and Apple's mentality... But i like my (old) MacPro and liked like Steve Jobs. I know he is a great man. Yes "is" not "was".
I can't say such a way he was a genius or a visionary, but rather he understood humans well. In any case, he was a man whom I couldn't talk with face-to-face while he lived... And that is what is really bad.
Facebook in Real Life
I guess it's very apt. =)
I don't know what I did if Facebook was real and the Hide button wouldn't have been.
Wednesday, October 5, 2011
The "Java Life" Rap Music Video
Tuesday, October 4, 2011
Google+ API update
Hurray! Jordanna Chord published a blog post about news of Google+ API.
Now you can search on Google+ with the new API. How?
If you want to search in activities, you can do this with
activities.search.
GET /plus/v1/activities?key=[APIKey]
- maxResults (unsigned int)
The maximum number of activities to include in the response, used for paging. For any response, the actual number returned may be less than the specified maxResults. Acceptable values are 1 to 20, inclusive. (Default: 10)
- orderBy (string)
Specifies how to order search results.
Acceptable values are:"best" - Sort activities by relevance to the user, most relevant first.
"recent" - Sort activities by published date, most recent first. (default) - pageToken (string)
The continuation token, used to page through large result sets. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response. This token may be of any length.
-
query (string)
Full-text search query string.
{
"kind": "plus#activityFeed",
"nextPageToken": string,
"selfLink": string,
"nextLink": string,
"title": string,
"updated": datetime,
"id": string,
"items": [
activities Resource
]
}
And you can search in public profiles with people.search
GET /plus/v1/people?key=[APIKey]
- maxResults (unsigned int)
The maximum number of activities to include in the response, used for paging. For any response, the actual number returned may be less than the specified maxResults. Acceptable values are 1 to 20, inclusive. (Default: 10)
- pageToken (string)
The continuation token, used to page through large result sets. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response. This token may be of any length.
-
query (string)
Full-text search query string.
{
"kind": "plus#peopleFeed",
"selfLink": string,
"title": string,
"nextPageToken": string,
"items": [
people Resource
]
}
Of course it's not all. With people.listByActivity you can get re-sharers and +1'ers.
GET /plus/v1/activities/{activityId}/people/resharers?key=[APIKey]
GET /plus/v1/activities/{activityId}/people/plusoners?key=[APIKey]
And comments can be retrieved by the new comments.list and comments.get methods:
GET /plus/v1/activities/{activityId}/comments?key=[APIKey]
GET /plus/v1/comment/{commentId}?key=[APIKey]
Of course on www.googleapis.com via Secure HTTP. (https://www.googleapis.com)
Source: Google code blog
Monday, October 3, 2011
Become a JavaScript Console Jedi =)
I found two pretty cool videos on youtube that have been published by GoogleDevelopers. Both help us to understand consoles of the browsers (primarily Chrome). Here they are:
The first is very useful: 7 minutes on recent DOM APIs
And my favorite: Become a Javascript Console Power-User