Chrome's Classic New Tab Page, No Longer Available

Posted by Unknown Jumat, 21 Februari 2014 0 komentar
Chrome 33 brings some bad news for those who dislike the updated new tab page.


Until now, you could disable the new interface in chrome://flags: the Instant Extended API flag allowed you to do that. In Chrome 33, the flag has been removed.

Enables the Instant Extended API which provides a deeper integration with your default search provider, including a renovated New Tab Page, extracting search query terms in the omnibox, a spruced-up omnibox dropdown and Instant previews of search results as you type in the omnibox

Google says that "there are no plans at the moment to provide a way built into Chrome to change the new tab page. You can find a number of alternative New Tabs in the Web Store".

There's a Chrome extension that redirects the new tab page to chrome://apps and shows the apps you've installed. You can also set the new tab page to an empty page or pick any other page.


To learn how to use the updated new tab page, check this Help Center article. Recently visited pages are in the Chrome menu, apps have a dedicated page you can find in the bookmarks bar, there's also an app launcher you can use.

Baca Selengkapnya ....

The New Google Maps Replaces the Classic Interface

Posted by Unknown 0 komentar
Last year, Google released a completely new Google Maps interface for desktop, but made it opt-in. Since then, the Google Maps team fixed bugs, improved performance and added some of the missing features (Pegman, My Location, short URLs, multi-point directions). The next step is obvious: the new Google Maps will become the default version.

"Over the coming weeks, the new Google Maps will make its way onto desktops around the world. Many of you have been previewing it since its debut last May, and thanks to your helpful feedback we're ready to make the new Maps even more widely available," informs Google.

The new Google Maps promised to bring an immersive experience, a personalized map that shows what's relevant and helps you make smarter decisions using recommendations from your Google+ circles. It's a simplified interface that's closer to the mobile UI. Google removed some of the features from the classic interface and focused on the basics: a map you're encouraged to explore, unified directions that show the best options, instant search, permalinks, panoramic images, Google Earth and Street View without plugins.


Classic Google Maps is still available: you can switch by clicking the "?" icon at the bottom of the page and selecting "Return to classic Google Maps". You'll see this message: "You have switched back to classic Google Maps for this session. Remember this choice for next time?". Click "Yes" to always go to the old interface when visiting Google Maps.


Baca Selengkapnya ....

YouTube Has a New Interface

Posted by Unknown 0 komentar
After many months of experiments, YouTube's new interface is finally available to everyone. The layout is center aligned, the header is sticky, the guide sidebar is now a "hamburger"-style menu that includes your playlists, subscriptions and more.

"YouTube now has a center-aligned look, fitting neatly on any screen size, and feeling similar to the mobile apps you're spending almost half your YouTube time with. You can quickly flip between what's recommended and popular in 'What to Watch' like Postmodern Jukebox's Timber, and the latest from your subscribed channels like iamOTHER in 'My Subscriptions,' with both options now front and center. Click the guide icon to the right of the YouTube logo at any time to see your playlists, subscriptions and more."






You can also check some screenshots from YouTube's experiments: July, September, October, November.

Baca Selengkapnya ....

Google+ Auto Backup Installer Links

Posted by Unknown Rabu, 19 Februari 2014 0 komentar
If you want to install the Google+ Auto Backup app for desktop without first installing Picasa, here are the direct links to the setup files:

Windows: https://dl.google.com/dl/edgedl/picasa/gpautobackup_setup.exe

Mac: https://dl.google.com/dl/edgedl/picasa/gpautobackup_setup.dmg


After installing the software in Windows, search for Auto Backup in the Start menu/screen, click "Google+ Auto Backup" and log in to your Google account.


"It's now easier than ever to back up all of your photos with Google+ Auto-backup, available with Picasa for Windows and Mac. Automatically sync photos from your desktop computer and any time that you connect a phone, camera or storage card to Google+," informs Google.

If you go to Google+ Photos, you might see this message and a download button: "Back up photos automatically from your computer. Automatically save your photos and videos online with Google+ Auto Backup. They'll be private to you until you choose to share them, and easy to get to from all your devices."


{ Thanks, Jérôme. }

Baca Selengkapnya ....

Quickly Enable Google SafeSearch

Posted by Unknown 0 komentar
If you want to temporarily turn on Google's SafeSearch, you can do that without opening the settings page. Just click the gear icon and select "turn on SafeSearch". When SafeSearch is enabled, you'll see a message next to gear button: "SafeSearch on". To disable it, click the same button and select "turn off SafeSearch".


"With SafeSearch, you can help prevent adult content from appearing in your search results. No filter is 100 percent accurate, but SafeSearch should help you avoid most of this type of material," explains Google.

If you're logged in, search settings are saved to your account and used for all devices. You can also go to the settings page and enable "Filter explicit results"

Baca Selengkapnya ....

Enable Data Compression Proxy in Chrome for Desktop

Posted by Unknown 0 komentar
Chrome's data compression proxy is only available for Android and iOS, but Jerzy Głowacki figured out a way to bring this feature to the desktop. Just install this extension and it enables the proxy. You can check the savings by visiting chrome://net-internals/#bandwidth and disable it by clicking the button from the toolbar.


"The extension sends all HTTP (but not HTTPS) traffic through Chrome Data Compression Proxy server, which uses SPDY protocol to speed up web browsing. Enabled state is indicated by a green icon. You can manually disable the proxy by clicking on the icon."

I've checked the code and it looks OK. It's also available here. Please note that this extension is not developed by Google, it's experimental and might not work properly for all sites.

{ Thanks, Jerzy. }

Baca Selengkapnya ....

Search by Size in Gmail

Posted by Unknown 0 komentar
Now you no longer need to remember search operators to filter Gmail results by size. Gmail's advanced search added a new option that lets you restrict results to messages larger or smaller than the specified size. Just click the arrow from the search box, pick "greater than" or "less than", enter the size, choose from "MB", "KB" or "Bytes" and click the search button. You can also add other filters.

"Ever wanted to find that wedding video your uncle shared as an attachment, or see which messages take up the most space in your mailbox? You can now search your emails by size in advanced search without having to memorize search operators like size: and larger:," informs Google.


Baca Selengkapnya ....

Alert, Confirm, and Prompt boxes in Javascript

Posted by Unknown Sabtu, 15 Februari 2014 0 komentar
The three "commands" involved in creating alert, confirm, and prompt boxes are:
  • window.alert()
  • window.confirm()
  • window.prompt()
window.alert() :This command pops up a message box displaying whatever you put in it.
 
<body>
<script type="text/javascript">
window.alert("Iam an alert box!!!")
</script>
</body>
window.confirm():Confirm is used to confirm a user about certain action, and decide between two choices depending on what the user chooses.
 
<body>
<script type="text/javascript">
var x=window.confirm("Are you sure?")
if (x)
window.alert("Yes!")
else
window.alert("No")
</script>
</body>
window.prompt():Prompt is used to allow a user to enter something, and do something with that info:
 
<body>
<script type="text/javascript">
var y=window.prompt("Enter your name here...")
window.alert(y)
</script>
</body>

Baca Selengkapnya ....

Simple Gallery Application In Android

Posted by Unknown 0 komentar
Here is simple gallery application.Copy and download the code and try it out.....
 
public class mygalleryactivity extends Activity {

Integer[] imageIDs = {
R.drawable.pic1,
R.drawable.pic2,
R.drawable.pic3,
R.drawable.pic4,
R.drawable.pic5,
R.drawable.pic6,
R.drawable.pic7
};
Gallery gallery;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

gallery=(Gallery) findViewById(R.id.Gallery01);
gallery.setAdapter(new ImageAdapter(this));
gallery.setOnItemClickListener(new OnItemClickListener()
{

public void onItemClick(AdapterView parent, View v, int position ,long id) {
// TODO Auto-generated method stub
Toast.makeText(getBaseContext(),
"pic" + (position + 1) + "selected",
Toast.LENGTH_SHORT).show();
ImageView imageView =(ImageView) findViewById(R.id.image1);
imageView.setImageResource(imageIDs[position]);
}
}); }

public class ImageAdapter extends BaseAdapter
{
Context context;
int itemBackground;

public ImageAdapter(Context c)
{
context = c;
//---setting the style---
TypedArray a = obtainStyledAttributes(R.styleable.Gallery1);
itemBackground = a.getResourceId(R.styleable.Gallery1_android_galleryItemBackground,0);
a.recycle();
}
//---returns the number of images---
public int getCount()
{
System.out.println(imageIDs.length);
return imageIDs.length;

}
//---returns the item---
public Object getItem(int position)
{
return position;
}
//---returns the ID of an item---
public long getItemId(int position)
{
return position;
}
//---returns an ImageView view---

public View getView(int position, View convertView,ViewGroup parent)
{
ImageView imageView;
if (convertView == null) {
imageView = new ImageView(context);
imageView.setImageResource(imageIDs[position]);
imageView.setScaleType(
ImageView.ScaleType.FIT_XY);
imageView.setLayoutParams(
new Gallery.LayoutParams(150, 120));
} else {
imageView = (ImageView) convertView;
}

imageView.setBackgroundResource(itemBackground);
return imageView;
}}}  
            

Baca Selengkapnya ....

Google+ Easter Egg for Valentine's Day

Posted by Unknown Jumat, 14 Februari 2014 0 komentar
Google+ has a special Easter Egg for Valentine's Day. Mr. Jingles, the Google+ mascot, transformed into a heart. You can find the animation in the Google+ notification box: in Google+ for desktop, Google+ mobile apps and most Google services.


Here's the animation that's displayed when you click the icon. This is the "retina" double-sized version:


"I <3 you, people of Google+! You've made me feel like your Valentine many times over," says Mr. Jingles.

You can also check the costumes for New Year's party, Christmas, Thanksgiving Day, Halloween, 15 years of Google and 2 years of Google+.

Baca Selengkapnya ....

Google's Timer is Back

Posted by Unknown Kamis, 13 Februari 2014 0 komentar
Remember the timer feature that was available for a few days last year and then quickly removed by Google? It's back now: it only works in the desktop Google search interface and it now has a full screen option. Right now, it seems to be an experimental feature.

Here are some examples of searches you can use: [set timer for 30 seconds], [set timer for 10 minutes and 10 seconds], [set timer for an hour and a half], [timer for 30 seconds], [timer 30 seconds], [timer 30 sec], [timer 23 hours 59 min 59 sec]. If you search for [set timer] or [timer], Google defaults to 5 minutes.


There's also a fullscreen mode:


Here's a video:


{ Thanks, Jonah. }

Baca Selengkapnya ....

Definite Articles in Google Translate

Posted by Unknown 0 komentar
This is pretty useful. When you translate a noun, Google Translate now shows the proper definite article. For example, when you translate "person" into Portuguese, Google displays multiple translations: "a pessoa", "o homem", "a mulher" and more. Google actually translates "the person".


When there are too many translations, Google collapses the list.


{ Thanks, Camilo. }

Baca Selengkapnya ....

My Location in the New Google Maps

Posted by Unknown 0 komentar
The new Google Maps for desktop brings back the "show my location" feature. Just click the button next to zoom in/out and Google Maps will show your location. You'll probably see a dialog that asks for your permission to send your location to Google.

"If you're unable to activate My Location, you may have previously denied permission for Google Maps to use your location. Or, your browser may have experienced an error in determining your location. To have My Location work, you must first grant permission then let Maps get your location," informs Google.


Google Maps URLs include more information: the name of a place, latitude, longitude.


In other related news, the new Google Maps will replace the classic Google Maps in the near future. Here's a message displayed by Google: "Search, navigate, and explore with the new Google Maps, coming to your desktop soon."


{ Thanks, Jérôme. }

Baca Selengkapnya ....

Android Get Current Time and Date

Posted by Unknown 0 komentar
For getting current (today) date and time in android application, we used calendar class get the current instance of android phone clock.
After getting calendar class object, we required a formatted object for date and time.
 
Calendar c = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("dd:MMMM:yyyy HH:mm:ss a");
String strDate = sdf.format(c.getTime());
System.out.println("================>>>"+strDate);

Android Time formats table

d single digit date e.g. 5
dd double digit date e.g. 05
M single digit month e.g. 1
MM double digit month e.g. 01
MMM three-letter abbreviation for month e.g. Jan
MMMM month spelled out in full e.g. January
yy double digit year e.g. 13
yyyy four digit year e.g. 2013

Android Time format table

h single digit hours in 12 hour format e.g. 9
hh double digit hours in 12 hour formate e.g. 09
H single digit hours in 24 hour format e.g. 9PM as 21
HH double digit hours in 24 hour format e.g. 9PM as 21
m single digit mints e.g. 9
mm double digit mints e.g.0 9
s single digit seconds e.g. 9
ss double digit seconds e.g. 9
a am/pm marker

Android Date and Time Separators

" . " – Dots or full stops
" - " – Hyphens or dashes
" " – Spaces
: – colon mostly used between time
" / " – Slash

Baca Selengkapnya ....

How to sign an android APK, a simplest way

Posted by Unknown Rabu, 12 Februari 2014 0 komentar
After completing your Android Project, you have to sign it before you upload it.And here in this post we explain an easy way to sign an apk via eclipse. Double click the Android Manifest file and and clearly provide the package and version code and version name.
Below that there is link called “use the export wizard”. Click on that.

then another window will open, there select your desired project.

click Next, then you will be asked for a keystore, if you have a keystore file then browse and locate the file.
OR
Create a new one.
If you have a keystore file the after locating the file you have to give the password.



Click on Finish and your APK file will be created in the destination directory.
If you are creating a new one then…
Go through these steps by filling in the details that appear in the dialog.



Clicking on Finish will create your signed APK.
Now Give a location for you signed apk file.- Click finish -> Your signed APK is ready for upload to the market.

Baca Selengkapnya ....

Google Search Debug Info

Posted by Unknown Sabtu, 08 Februari 2014 0 komentar
Sometimes Google's files reveal internal information. Here's some debug info for Google Search: it looks like many search features are actually server-side plugins and Google measures the time taken to load them. There are plugins for social posts, knowledge panels, rich snippets, product ads, forum clusters, Gmail results, health results, hacked sites, hashtags, empty results, science links, Korea features and more. The debug information is provided by a Java plugin (JvmInfoPlugin).

Click the image to see a bigger version.


{ Thanks, Florian K. }

Baca Selengkapnya ....

YouTube Tests New Mobile Site UI

Posted by Unknown 0 komentar
YouTube tests a new interface of the mobile site. It's closer to the mobile app UI, it shows the description and the number of likes and dislikes, a red "subscribe" button and action buttons are placed below the video.


There are other changes: the new YouTube logo, the "hamburger" menu, bigger thumbnails, new font, gray background.


{ Thanks, Nedas. }

Baca Selengkapnya ....

New holiday calendars

Posted by Unknown Senin, 03 Februari 2014 0 komentar


Interested in celebrating Carnival with your cousin in Argentina, or not sure when your friend in Zurich is off for the Swiss National Day holiday? You can now choose from 30 additional country holiday calendars in Google Calendar to help keep track of special occasions in different countries so there’ll be even more to celebrate.
The calendars, which will be rolled out over the next few days, also contain a wider variety of holidays and display dates for holidays further into the future, so you can have enough time to book a flight to Buenos Aires to join your cousin for the water games, or ask your friend to send you a dozen August-Weggen.



Baca Selengkapnya ....

More System Gmail Labels

Posted by Unknown Sabtu, 01 Februari 2014 0 komentar
Back in 2007, I posted a list of shortcuts for system Gmail labels. For example, instead of searching for [issue in:inbox], you can use [issue label:^i.] or [issue l:^i]. Instead of searching for [receipt in:spam] or [receipt label:spam], you can use [receipt l:^s].

Mihai Parparita found other system labels and some of them don't have documented alternatives:

^g: muted conversations (just like is:muted or label:muted or label:mute)
^p: messages marked as phishing
^op: messages automatically marked as phishing by Gmail
^os: messages automatically marked as spam by Gmail
^vm: Google Voice voicemail messages (just like is:voicemail or label:voicemail)
^io_im: important messages (just like is:important)
^unsub: messages that include unsubscribing options. Gmail offers to unsubscribe on your behalf
^cff: messages from your Google+ circles (just like has:circle)
^p_esnotif: Google+ notifications

For example, you can find messages you've marked as spam by searching for [l:^s -l:^os] or [label:spam -l:^os]. From all the spam messages you exclude the messages automatically marked as spam by Gmail.


You can also restrict Gmail results to Google+ notifications: [Christmas l:^p_esnotif]. If you search for [l:^unsub] and mark a message as spam, Gmail will show this dialog and unsubscribe on your behalf if you click "unsubscribe and report spam". Use [l:^unsub -l:^p_esnotif] to exclude Google+ notifications.


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