Panoramio Redesign

Posted by Unknown Sabtu, 31 Agustus 2013 0 komentar
Google's Panoramio service has been redesigned and now looks just like a Google Maps extension. The new interface (codenamed "acrylic") is borrowed from Google Maps Views. You can go back to the old UI by clicking "Return to classic Panoramio"."We've made photos the hero on the page while still keeping the important features that people enjoy. On the photo page, by far the most popular on the site,...

Baca Selengkapnya ....

Google Keyboard Themes

Posted by Unknown 0 komentar
If you use the stock Android keyboard, which is also available in the Play Store, you can change the look and feel of the keyboard. Google Keyboard has a few themes you can choose, but they're not available in the settings.Here's a quick way to pick a different theme, assuming your device runs Android 4.0 or later:1. you first need an application that lets you create shortcuts to app activities. Some...

Baca Selengkapnya ....

Google Tests a New Tablet Search Interface

Posted by Unknown Jumat, 30 Agustus 2013 0 komentar
Remember the card-style redesign for Google mobile search? Google tests a similar interface for tablets:There's more white space, top search results stand out even more, while Knowledge Graph cards and results from specialized Google search engines look like distinct sections of the page.{ via Techno-Net...

Baca Selengkapnya ....

The $199 Phone

Posted by Unknown 0 komentar
It's hard to believe that a high-end smartphone can cost only $199 without contracts and carrier subsidies. Nexus 4 was released last year and its specs don't look that great when you compare it with phones like HTC One or Samsung Galaxy S4, but Nexus 4 runs the latest Android version, it has a smooth interface and many developers use it to test their apps.From $299 to $199, Nexus 4 managed to become...

Baca Selengkapnya ....

Google Earth Tour Builder

Posted by Unknown 0 komentar
Google has a new experimental service that lets you build Google Earth tours from your browser. It's called Tour Builder and it requires the Google Earth Plugin (you also get the plugin when you install Google Earth)."Tour Builder is a new way to show people the places you've visited and the experiences you had along the way using Google Earth. It lets you pick the locations right on the map, add...

Baca Selengkapnya ....

New Google Sign-in Page for Mobile Devices

Posted by Unknown 0 komentar
Google's mobile sign-in page has a new interface that uses the same slogan from the desktop: "One password. All of Google." It's a more crowded page that includes a silhouette icon, a list of icons for Google services like Gmail, YouTube, Google Maps and a small "Create an account" link at the bottom of the page instead of the red "sign up" button.Here's the old interface:For some reason, the new...

Baca Selengkapnya ....

Knowledge Graph Reminders

Posted by Unknown 0 komentar
If you search Google for music artists, actors, books, TV shows and you're logged in, you'll see a new "Remind me" button in the Knowledge Graph card. Click the button and "Google Now will remind you about new releases/movies/episodes on your phone or tablet".Until now, you could add time-based and location-based reminders to Google Now. These new reminders are special and can only be added from Google...

Baca Selengkapnya ....

Sites That Integrate With Google Now

Posted by Unknown Kamis, 29 Agustus 2013 0 komentar
There's a long list of sites that integrate with Google Now: Air Berlin, Air Canada, Emirates, Booking.com, Lastminute.com, TicketWeb, Ticketfly, Orbitz, CheapTickets, OpenTable, Fandango, Rotten Tomatoes, Zillow and more.There's nothing magic about integrating travel sites, hotel booking sites, event-ticketing sites with Google Now. You only need to add some markup to email notifications. "By adding...

Baca Selengkapnya ....

New Layout for Google+ Post Pages

Posted by Unknown Rabu, 28 Agustus 2013 0 komentar
Google+ post pages look different: posts are now moved to the right and there's a huge box that shows the name of the page or author and the number of followers. The new layout encourages people to follow pages and Google+ users, but makes posts more difficult to read.Here's an example of post from Gmail's Google+ pa...

Baca Selengkapnya ....

Better Photo Attachments in Gmail's iOS App

Posted by Unknown 0 komentar
The latest version of the Gmail app for iOS added a better way to open photo attachments. Until now, you had to tap each photo to open it using the app's internal browser and go back to the message.Now you can tap a photo attachment and use swipes to go to the next or previous image, just like in the built-in Photos app.The "print" link is no longer displayed next to the thumbnail, but it's still...

Baca Selengkapnya ....

Use Gmail's New Compose Interface for Replies

Posted by Unknown 0 komentar
When Gmail launched the new compose interface, I wondered why the interface for replying to other messages is different. By default, when you reply to a message or you forward a message, Gmail shows the rich-text editor below the message, just like before.There are a few ways to make the reply box look like the compose box, so you can open other messages or use Gmail's search feature while replying...

Baca Selengkapnya ....

HTML Tag - Forms

Posted by Unknown 0 komentar
<form>This tag is used to create a HTML form for user input.<input>This tag specifies an input field where the user can enter data.<textarea>This tag defines a multi-line input control. <select>This tag is used to create a drop-down list. <option>This tag defines a option in a select list.<optgroup>This tag is used to group related options in a drop-down list.<button>This...

Baca Selengkapnya ....

HTML Tag - Tables

Posted by Unknown 0 komentar
<table>This defines the HTML table.This tag has elements like <tr>,<th>,<td>.<tr>This defines a row in the HTML table.<td>This defines a cell in the HTML table.<tbody>This tag is used to group the body content in a HTML table.<thead>This tag is used to group header in an HTML table<tfoot>This tag is used to group footer...

Baca Selengkapnya ....

HTML Tag - Lists

Posted by Unknown 0 komentar
<ul>This defines the unordered list.<ol>This defines the ordered list.<li>This defines the lst items.<dl>This defines the description list. <dt>This defines the name or item in description list.<dd>This defines a term or name in a description list. <html><head><body>angelmarkcodingpalygroundangelmarkcodingpalyground Android easy to learn...

Baca Selengkapnya ....

HTML Tag - Images and Objects

Posted by Unknown 0 komentar
<img>This defines an image in a HTML page.They require attributes:src and alt.<area>This defines an area inside an image-map.Image-map is an image with clickable areas.This is always nested inside a <map> tag.<map>This is used to define a client-side image-map.<param>This is used to define a parameters for plugins embedded with an <object> element.<object>This...

Baca Selengkapnya ....

HTML Tags - Links

Posted by Unknown 0 komentar
<a>This defines a hyperlink,which is used to link from one page to another.The most important attribute of the <a>element is the href attribute,which indicates the link's destination.<base>The <base> tag specifies the base URL/target for all relative URLs in a document. <html><head><body>Visit angel mark for more codes</body></head></html>...

Baca Selengkapnya ....

HTML Tags - Text

Posted by Unknown Senin, 26 Agustus 2013 0 komentar
<p>This defines a paragraph. <h1>....<h6>These are used to define html headings.<h1> defines the most important heading and <h6> defines the least important heading.<strong>This defines the most important text. <em>This defines a emphasized text or italic text. <abbr>This defines an abbreviation or an acronym.<acronym>This defines...

Baca Selengkapnya ....

HTML Tag - Meta Information

Posted by Unknown 0 komentar
<!DOCTYPE>This is the first thing to be included in a html document,before <html> tag.Actually, this is not a html tag,it is simply given to expain to the web browser which version of html is being used.<link>This defines the relationship between a document and an external resource.Mostly used to link with style sheets.<title>This tag is required in all html documents and it...

Baca Selengkapnya ....

HTM Tag - Structure

Posted by Unknown Minggu, 25 Agustus 2013 0 komentar
<html>.....</html>The <html> tag tells the browser that this is an HTML document.It represents the root of an HTML document.This tag is the container for all other HTML elements.<head>.....</head>The <head> tag is a container for all the head elements.The <head> element must include a title for the document, and can include scripts, styles, meta information,...

Baca Selengkapnya ....

HTML Basics

Posted by Unknown Sabtu, 24 Agustus 2013 0 komentar
HTML (Hypertext Markup Language) is the set of markup symbols or codes inserted in a file intended for display on a World Wide Web browser page. The markup tells the Web browser how to display a Web page's words and images for the user. Each individual markup code is referred to as an element or called a tag .Some simple things to rememberThe text between <html> and </html>...

Baca Selengkapnya ....

No More Notification Ads and Icon Ads in Android Apps

Posted by Unknown Jumat, 23 Agustus 2013 0 komentar
Here's a Google Play policy change that will make a lot of Android users happy: Android apps will no longer be able to install home screen icon for third-party services and show notification ads.From Google: "Apps and their ads must not add homescreen shortcuts, browser bookmarks, or icons on the user's device as a service to third parties or for advertising purposes. Apps and their ads must not display...

Baca Selengkapnya ....

New Gestures in Chrome for Android

Posted by Unknown 0 komentar
One of the most annoying features in Chrome for Android has been finally removed in the latest beta release: swiping from the edge of the screen to switch tabs. It's very easy to trigger this gesture accidentally when you open desktop sites and some sites use similar gestures (Google Image Search).Google replaced it with a gesture that's less error-prone: "swipe horizontally across the top toolbar...

Baca Selengkapnya ....

Which Google Drive Images Are Added to Google+ Photos?

Posted by Unknown 0 komentar
If you're wondering why not all the image files from Google Drive are available in Google+ Photos, here's the explanation. Google+ Photos only imports photos if they meet these criteria:1. photos MUST be at least 512 x 5122. JPG photos MUST have 'Date Taken' EXIF metadata3. supported formats: JPG, GIF, WebP, RAW.I've tested various image files and these are the rules. Google wants to restrict the...

Baca Selengkapnya ....

Function in Corona

Posted by Unknown Kamis, 22 Agustus 2013 0 komentar
Using functions are very eazy in Lua.We can provide arguments as input (within the parentheses), the function performs some tasks, and the results can be returned.Some ways to define functions are: local function f ()--bodyendlocal f = function()--bodyendfunction f ()--bodyendf = function ()--body...

Baca Selengkapnya ....

Types and Values In Corona

Posted by Unknown 0 komentar
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...

Baca Selengkapnya ....

Google Updates the Dictionary OneBox

Posted by Unknown 0 komentar
Google updated the dictionary OneBox with etymological information, a translation box and a graph that shows the use of a word over time. The graph is based on the Google Books Ngram Viewer and it shows the number of mentions of a word over time in a corpus of millions of books. You need to click the arrow icon at the bottom of the box to see the new features.Here's the expanded definition box for...

Baca Selengkapnya ....

Conventions In Corona

Posted by Unknown 0 komentar
Names or Identifiers in Lua can be any string of letters, digits, and underscores, not beginning with a digit. The following keywords are reserved and cannot be used as names:          and     break        do          else     elseif     ...

Baca Selengkapnya ....

Introduction to Lua

Posted by Unknown 0 komentar
Lua is an extension programming language designed to support general procedural programming with data description facilities. Lua is intended to be used as a powerful, lightweight scripting language for any program that needs one.Program in Corona with a programming called Lua, which is a lightweight and easy to use scripting language.Lua is simple and eazy to learn.see more topics here: Conventions...

Baca Selengkapnya ....

Google Tests a New Mobile Search Interface

Posted by Unknown 0 komentar
Google tests a new card-style interface for mobile search results. There are special cards for Knowledge Graph results, results from specialized search engines and for related searches. The new interface only shows Previous/Next buttons.Many Google web apps and mobile apps use the card-style interface that was first added to Google Now. You can find it in Google Search, Google Play, Google+, the new...

Baca Selengkapnya ....
Trik SEO Terbaru support Online Shop Baju Wanita - Original design by Bamz | Copyright of android populer.