Saturday, 20 July 2013

Dictation – Speech Recognition in the Browser TRY IT

Real-time web site stats. Observe visitors live on your site 5-minute install. Try it free now! www.web-stat.net/LiveStatsFreeTrial
Meet Dictation v2.0, a web-based speech recognition app that will transcribe your voice into digital text using the Chrome Speech API. You can also install Dictation as a Chrome App.
Unlike the regular Chrome web apps that are nothing but fancy bookmarks, the Dictation App for Chrome will run entirely on your computer.
Dictation for Chrome

Dictation Gets New Voice Commands & Auto-Save

Getting started with Dictation in simple. Just plug in the microphone to your computer, click the Start Dictation button and watch as your spoken words are magically transformed into text. You can also use a few voice commands like:
  • Say “new sentence” to begin a new sentence. Dictation will automatically add a period to the previous sentence and capitalizes the first letter of your new sentence.
  • Say “new paragraph” to move the cursor to the next paragraph.
  • Say “stop listening” to exit the dication mode. If you wish to resume recording, hit the “Start” button again.
If you make a mistake, or if Chrome makes an error while recognizing your speech, simple click the incorrect word and edit it inline. The entire notepad is editable as it uses the contenteditable attribute of HTML5.

Dictation 2.0 – What’s New

The first release of Dictation happened in August 2012 and much has changed since then. The Web Speech API is now part of Google Chrome though you still need an active network connection for Chrome to connect to the speech recognition servers.
The new version of Dictation App does sport a few extra features. One, it will auto-save your work in Chrome’s local storage so you can close the browser and your session would still be available the next time you Dictation.

Ads by Google Free API Monitoring Tool SmartBear.com
Monitor and analyze automatically performance of any API
Also, you can now export your transcriptions to Dropbox and Google Drive from Dictation itself. Please watch this YouTube video for a quick demo.
The Speech-to-Text support in Chrome is mostly accurate but because the API is still experimental, you are not allowed to submit Packaged Apps to the Chrome store that use the Web Speech API.
Related: Add Speech Recognition to your WebsitE SIMPLE

Google Drops Prices of Google Apps in India...

oogle Apps is $5 per user per month (or $50 per user per year) but if you happen to be in India, the deal just got a little sweeter.9osolADO
Google has just dropped the prices of Google Apps in India by as much as 40% and you can now sign-up for Google Apps for Indian Rupee150 or $3 per user per month (or $30 if paid annually).
With Google Apps, each user gets a 25 GB Gmail mailbox, Google Drive with 5 GB of storage, unlimited email aliases (nicknames) and a host of other Google products. Users can buy additional storage space for Google Drive starting at $40 per year for 20 GB.
You can either configure your existing domain to work with Google Apps (for custom email addresses) or you can choose a trial sub-domain of the form <yourname>.mygbiz.com to test Google Apps before switching to your custom domain.
Also, if you are a one-person company, you can still sign-up for Google Apps for free through the App Engine route.
Google Apps in India

See more tutor

Friday, 19 July 2013

Make It Easier for Users to Complete your HTML Forms on Mobile Devices...

Your website include a couple of HTML forms. There’s a search form, an email newsletter form, a contact us form and, in the case of blogs, there could be a comment form as well.
It takes a simple <form> tag to integrate any HTML form into your web pages:
  1. <form>
  2. <input name="email" placeholder="Your email address" />
  3. <input type="submit" value="Subscribe to newsletter" />
  4. </form>
Fill this HTML form on your mobile phone or tablet and a virtual keyboard will pop-up as soon as you highlight the text field of the form. There’s a little flaw though.
The form requires you to enter an email address but the important “@” or “.” symbols are nowhere to be found on the on-screen keyboard. You have to switch to the numeric layout to access the @ symbol.
Virtual Keyboard - iPhone and Android
We can however make one minor change to the original HTML form and it will force the virtual keyboard to show the “@” symbol and the “.” (period). Try this modified HTML form on your mobile phone (or tablet).
All we have done is added type=email to the input field of the HTML form and the mobile phone – be it an Android or an iOS device – will automatically show an email-input friendly keyboard to the user.

Ads by Google Get latest news google.com
Discover your way to faster, better answers when you search.
  1. <form>
  2. <input type="email" name="email" placeholder="Your email address" />
  3. <input type="submit" value="Subscribe to newsletter" />
  4. </form>
The other big advantage of setting the input type as “email” is that your HTML form would automatically not accept values that are not valid email address. In older browsers, you would have to add the validation logic in JavaScript with HTML5 forms, that is no longer required.
HTML Form - Email Type
And this isn’t just limited to email. HTML5 supports a variety of data types for the input field though the most interesting ones are URL (for entering web addresses in comment forms) and tel or number (for entering telephone numbers in contact forms).
Use the correct data type with your form fields and it will trigger the appropriate keyboard on mobile devices and you are also saved from adding manual basic validation to your forms. You may also consider using attributes like autocapitalize=”off” and autocorrect=”off” for input fields where users are expected to enter non-regular tex

The 7-Minute Workout for Busy Professionals (Apps)

now! www.web-stat.net
7 minute workout
Think you are too busy to exercise?
The Internet has been buzzing for the past week over a new workout plan that promises to get you in good shape and takes less than twenty minutes of your time. The workout requires no equipment and all you need is a chair and some time.
The New York Times calls it the 7-minute scientific workout. The workout consists of 12 exercises that should be performed in a sequence, allowing 30 seconds for each exercise with 10-second breaks between exercises.
The 7-minute workout has excited the developer community as well and there are now a host of apps – both for the web and mobile – to help you perform these 12 exercises as per guidelines.
For web, there’s the open-source Angular 7min that runs full-screen and guides you through the 7-minute workout with visual clues and an elegant timer. And the app will work just as nicely on your mobile as well.
Android users may consider the 7 Min app that offers similar functionality but inside an app that also works offline. The app is free and there are no distracting ads either.

Ads by Google Home Gym www.magichomegym.com
Shoulder press + Bench Press+ Lat tower+ Ab Board+ low pulley
And the appropriately named Seven Minute app should be perfect  for iPhone and iPad users though it is just a fancy wrapper around the previously discussed Angular 7Min web app.
Monica Olivas, a certified personal trainer, has created a YouTube video that demonstrates the proper way of doing these exercises. Melanie Pinola has curated a YouTube list at Lifehacker where trainers discuss each of these 12 exercises in greater detail.
Also see: The 20-20-20 Eye Exercise for Computer Users
One more thing. The original study recommends exercise of at least 20 minutes and thus you may want to repeat the 7-minute workout 2-3 times in a row for maximum benefit.

Auto-Save your Gmail Image Attachments to Google Driv

have written a little Google Script that will auto-save the image attachments in your Gmail inbox to a special folder in your Google Drive. Once the image files have been moved to Drive, you can switch to the Thumbnail view and visually scan your mailbox.
The other big advantage of saving your Gmail images attachments in Google Drive is that you search for text inside images since Drive supports optical character recognition or OCR.
OCR for Gmail Image Attachments

Save your Gmail Attachments in Google Drive

The script runs in the background and will automatically extract images from new incoming mail as well as messages that already exist in your Gmail account. Here’s how you can deploy the script in three easy steps:
  1. Open the script in Drive and  choose File->Make a copy to create a personal copy of that script in your Google Drive.
  2. Choose Run->Authorize to grant the necessary permissions. The script basically needs permissions to read your Gmail inbox and for writing files into your Google Drive Folder.
  3. Once authorized, choose Run -> StartProgram and the script will start working in the background.
You can now exit the Google Script.
Internally, the Google Script will create a new folder called “Gmail Images” in your Google Drive and all images attachments are saved in this folder. Once a message thread has been scanned for attachments in Gmail, a label “Processed” will be added to that thread so that the script can skip it in the next iteration.
You can easy change these default values as explained in the script’s source code.

Ads by Google 100% Free Online Storage www.JustCloud.com
Store Your Files in the Clouds Access Files Anywhere, Anytime.
Also, the above script will save every single image attachment from your Gmail to Google Drive. If you would like to selectively save image attachments to Drive, please use the Send to Google Drive program.fr

How to Link to a Specific Paragraph of a Google Documents

ou have written a lengthy essay in Google Docs that spans several pages and it’s public on the web. How do you create a link that redirects people to, say, the second paragraph of page 19 of that document directly without them having to use the scroll bar.
Links in Google Documents

Links to a Specific Paragraph in Google Documents

For instance, this Google Document (scrapped from Wikipedia) describing the life and work of Barack Obama is 31-pages long. And this hyperlink points to the fourth paragraph on Page 27 where the article discusses the Nobel Peace Prize that Obama won in 2009.
It is easy to create links that point to any specific paragraph in a long Google Document. Just scroll to that paragraph and put your cursor in the beginning of that paragraph. Now select the Bookmark option from the Insert menu. Google will add a little ribbon to that paragraph – click the ribbon and then click “Link.”
The full hyperlink to that paragraph can now be copied from your browser’s address bar and it will look something like this:
https://docs.google.com/document/d/1234/#heading=h.1icy486iph1x

Link to a Specific Slide in Google Presentation

Like Google Documents, you can also create links to any specific slide in Google Presentations though without using bookmarks.
Open the Google presentation and navigate to the slide that you wish to link to (make sure that the sharing mode is public). Now copy the hyperlink from your browser’s address bar as this is the permanent link to that particular slide. For instance, the following URL links to the slide 32 of a 80-page presentation.

Ads by Google Download Open Office Free FreeDownloads.us.com/OpenOffice
100% Free Office Software. Download Latest Full Version Now!
https://docs.google.com/presentation/d/1234/edit#slide=id.ge01a6f2_0_0
The hash or the anchor tag appended to the document URL does the magic. got it

How Much Customs Duty You Have to Pay for Importing Goods into India.

Product Suppliers Source quality products at Best SMB Site - hktdc.com www.hktdc.com
You have to pay taxes, also known as customs duty, for importing mobile phones, tablets and other goods from a foreign country into India. These taxes are often payable at the port of entry (like the airport).
A package forwarding service service in India has shared the current tariff chart and it should give you a good idea of what kind of taxes you can expect to pay for importing the various categories of items into India. Here’s the chart updated after the 2013 Union Budget:
Category
Items to import
Customs Duty
Books Books (educational) 0%
Computers Laptop, Computers 16.85%
Computer Printers 16.85 %
Laptop Battery 28.85%
Hard Disk (Internal) 6.03%
Hard Disk (External) 16.85%
Processor 6.03%
Other Computer Peripherals 16.85%
Cables & Wires 25.85%
Tablets iPad 16.85%
Mobile Mobile Phones 6.00%
Phone Accessories 28.85%
Music & Games DVD/ CDS (movie) 28.85%
Software DVD 16.854%
DVD Players, Blu-Ray 28.85%
iPod 28.85%
Video games 28.85%
Gaming Consoles 28.85%
Photography
Digital / Video Cameras 28.80%
Digital Still Image Camera 16.854%
Web cameras 28.85%
Camera Lens 28.85%
Everything Else Television 28.85%
Sports Equipment 16.85%
Hand (wrist) Watches 28.85%
Cosmetics, Stationery, Toys 28.85%
Sunglasses 28.85%
Electronics and Car parts 28.85%
Apparel 23.90%
Shoes 28.85%
Kitchen, Dining 28.85%
Artificial Jewelry 28.85%

How is Customs Duty Calculated?

It is important to note that the calculation of import duty is done based on the assessed value of an imported product and not the invoice value. Let me explain.
Say you have purchased a mobile phone from Amazon or eBay and have asked the seller to ship it to India. The value of the mobile phone listed in the invoics is $500. The customs officer in India may however assess the product’s value as, say, $600 and in that case, you will have to pay 6% customs duty on $600 (the assessed value) and not $500 (the invoice value).
And other than customs duty, you’ll have to pay shipping charges, broker fees, CESS and service tax for getting an item into India.
There are no taxes on importing books while the customs duty on mobile phones has recently been hiked from 1% to 6%. Also, you may import goods up to the value of INR 5000 duty free provided they are sent as gifts to you.

See this

How Much Customs Duty You Have to Pay for Importing Goods into India.

Product Suppliers Source quality products at Best SMB Site - hktdc.com www.hktdc.com
You have to pay taxes, also known as customs duty, for importing mobile phones, tablets and other goods from a foreign country into India. These taxes are often payable at the port of entry (like the airport).
A package forwarding service service in India has shared the current tariff chart and it should give you a good idea of what kind of taxes you can expect to pay for importing the various categories of items into India. Here’s the chart updated after the 2013 Union Budget:
Category
Items to import
Customs Duty
Books Books (educational) 0%
Computers Laptop, Computers 16.85%
Computer Printers 16.85 %
Laptop Battery 28.85%
Hard Disk (Internal) 6.03%
Hard Disk (External) 16.85%
Processor 6.03%
Other Computer Peripherals 16.85%
Cables & Wires 25.85%
Tablets iPad 16.85%
Mobile Mobile Phones 6.00%
Phone Accessories 28.85%
Music & Games DVD/ CDS (movie) 28.85%
Software DVD 16.854%
DVD Players, Blu-Ray 28.85%
iPod 28.85%
Video games 28.85%
Gaming Consoles 28.85%
Photography
Digital / Video Cameras 28.80%
Digital Still Image Camera 16.854%
Web cameras 28.85%
Camera Lens 28.85%
Everything Else Television 28.85%
Sports Equipment 16.85%
Hand (wrist) Watches 28.85%
Cosmetics, Stationery, Toys 28.85%
Sunglasses 28.85%
Electronics and Car parts 28.85%
Apparel 23.90%
Shoes 28.85%
Kitchen, Dining 28.85%
Artificial Jewelry 28.85%

How is Customs Duty Calculated?

It is important to note that the calculation of import duty is done based on the assessed value of an imported product and not the invoice value. Let me explain.
Say you have purchased a mobile phone from Amazon or eBay and have asked the seller to ship it to India. The value of the mobile phone listed in the invoics is $500. The customs officer in India may however assess the product’s value as, say, $600 and in that case, you will have to pay 6% customs duty on $600 (the assessed value) and not $500 (the invoice value).
And other than customs duty, you’ll have to pay shipping charges, broker fees, CESS and service tax for getting an item into India.
There are no taxes on importing books while the customs duty on mobile phones has recently been hiked from 1% to 6%. Also, you may import goods up to the value of INR 5000 duty free provided they are sent as gifts to you.

See this

How to Easily Share Files Between your Mobile Phones and Computers to many

Your digital data – like files, photos, documents, music, ebooks and videos – is spread across a range of devices including your mobile phone, the tablet and your computer(s).
How do you easily transfer a file from the Android phone to your iPad? Or how do you copy-paste that long snippet of text from the computer to your iPhone? The following guide discusses apps, both web-based and mobile apps, that will help you exchanges files and everything else between your desktop computer and mobile devices easily and quickly.
digital
The popular and most obvious solution for sharing files across devices is email. Send a file to yourself from one device and then download that email attachment on the other device. Alternatively, you may use file storage services like Dropbox, Google Drive or SkyDrive (read comparison) to transfer files from one device to another via the cloud.
Then there are web-based apps to help you move files between your computers and phones without any software. There’s ge.tt where you can upload files from the browser and download them on any other device. JustBeamIt is another web-based file transfer service where there are no limits as the file content is streamed directly from the source to the destination and not stored on third-party servers.
Google Keep is my favorite service for transferring text snippets from one device to another. You can write, or paste, text inside Keep and it instantly becomes available on all the other devices. Keep is web-based but they also have an Android app. I use Google Keep for transferring URLs from the desktop to mobile browser and also passwords that are too long and complex for typing on the mobile keyboard. Hopper and MoPad are other good web-based alternatives that can again be used for sending links and text snippets across devices.
If you are an Android user, AirDroid is probably the only app you’ll ever need for moving files in and out of your phone. Once you launch AirDroid, you can easily download (and upload) files and folders from the phone to your computer wirelessly via the web browser. The only restriction is that your phone and computer should be part of the same Wi-Fi network.

Ads by Google JTBで働きませんか? www.bizreach.jp
【期間限定】グローバルリーダーを大募集 年収1000万以上へ!ビズリーチ
Mac OS users can consider installing Droid NAS, an app that will make your Android phone /tablet appear in Finder and you can then easily browse or transfer files over Wi-Fi.
SuperBeam is another useful app for transferring files between Android devices. Select one or more files inside any file manager app and choose SuperBeam from the Android sharing menu. It will generate a QR code that you can scan with SuperBeam on your other device and the file transfer will happen automatically. If the two Android devices are not connected to the same Wi-Fi network, SuperBeam will transfer files using Wi-Fi Direct mode.
Unlike Android, Apple does not provide access to the iOS file system except for the media gallery. You can use the excellent Documents app to transfer documents, photos and other files from the computer to your iPad and iPhone over the Wi-Fi network. The Documents app can be mounted as a network drive on your computer and files can be moved across iOS devices via drag-n-drop. The app also has a built-in browser to help you download and store web files including file types that aren’t supported by the default Safari browser.
iOS doesn’t support Bluetooth based file transfer so if you are to transfer photos or videos from the camera roll of your iPhone to an iPad, Dropbox is probably a good choice. For single files, web apps like ge.tt and DropCanvas.com are perfect for the job.
Mobile apps like Bump and Hoccer that let you exchange files between Android and iOS devices, or between your computer and your mobile device, with simple gestures.
In the case of Bump, select a file on your mobile phone, tap the space bar of your computer with the phone and the file will instantly become available in the computer’s browser. For Hoccer, you can place your two phones side by side and drag a picture from one phone to another. If you have never tried these apps before, they’ll simply amaze you.

See 2 all

Determine if your Mobile Phone will Work in Another Country,.

You are planning to buy a cell phone from an online shopping site of another country but are not too sure if that phone will work with the mobile networks of your country. Or consider a slightly different scenario. You are travelling but how do you determine if your existing cellphone will be compatible with carriers of the foreign country?
mobile phone

Will that Cell Phone Work in my Country?

Well, there are basically two factors that may help you determine if a mobile phone will work with cellular operators of another country or not. Here they are:
1. GSM and CDMA are the two most prevalent standards in the mobile world. As a first step, determine the technology (GSM or CDMA) used by the mobile carrier of the foreign country where you are planning to use your phone.
Wikipedia has dedicated sections – see pages for IndiaEurope and Asia Pacific countries - that list the standards used by various carriers of a particular country. If that carrier is on GSM, you would need a GSM-compliant mobile phone and the device should be unlocked meaning it should be able to accept SIM cards of other carriers.
2. The other important factor is the frequency band  that carriers are using in the country where you are travelling to.
For instance, mobile networks in India use the 900 MHz and 1800 MHz frequency bands while GSM carriers in America operate on 850 MHz and 1900 MHz frequencies. Thus, if you are planning to buy a mobile phone from Amazon.com for use in India, the phone should support the 900 / 1800 MHz frequencies....

Dropbox Makes It Easy to Capture and Share Screenshot

Super Market Shelving Ready Stock. Customization Possible Design and Layout service for Free www.retaildetailz.com
Print Screen to Dropbox Screenshots
The upcoming release of Dropbox desktop software includes a new feature that will help you capture and share screenshot images of your computer screen with a simple keyboard shortcut.
While Dropbox is running in the system tray, press Ctrl PrtScn (Print Screen) and a screenshot image of your entire desktop will be saved in the Screenshots folder of your Dropbox installation.
Alternatively, you may press Ctrl Alt PrtScn and Dropbox will save a screenshot of the program window that’s currently open in the foreground.
The best part is that while the image is getting uploaded to Dropbox, a public link of the screenshot image will be auto-generated and copied to your clipboard thus making it easier for you to share the screenshot image with the outside world.
This captures the entire screen (or window) and you may another screen capture app – like the built-in Snipping Tool of Windows or SnagIt – to capture a fixed region. Also, if you would like to disable the screenshots feature of Dropbox, open Preferences and disable the “Share Screenshots” option under the Import tab.
The download links for the new Dropbox release can be found at forums.dropbox.com..

A Less Confusing View of World Time Zones,.

time zones
If you ever need to schedule an online meeting or a conference call with your co-workers who are located in different cities and countries, EveryTimeZone.com should come handy.
In Every Time Zone, you just have to drag the green bar to see the corresponding time (and date) in the different time zones of the world. The shades of blue indicate the hours of the day and the lighter the shade, the more suitable that time would be for the meeting for colleagues located in that particular time zone. The app works offline too.

Find a Common Meeting Time Across Timezones

TimeZen.com is another useful web app for finding a common meeting time across multiple timezones. While Every Time Zone provides the world time at a glance, Time Zen lets you pick cities where your colleagues are located.
To get started, add one or more cities to the list and then move the slider to see the time across each of these cities. The green area on the slider represents the time when all the selected cities are in the time range of 8am – 10pm which is generally considered a good time for a global meeting /conference call.
Related: Online World Time Clocks
.

Amazon Affiliate Program Goes Live in India/.

Amazon earlier this week launched amazon.in, an online marketplace for books and DVDs in India. The new shopping site, according to a press release from Amazon, includes a selection of over 200 million books (physical books and not Kindle ebooks) while mobile phones and digital cameras will be added to the catalogue in the coming weeks.
Amazon India
The shopping experience at Amazon.in is quite similar to other Amazon sites though their Indian store is the only one that offers Cash on Delivery as a payment option. You do however need to pay an extra fee (INR39) for COD.
Other than the marketplace, Amazon has quietly launched Associates, their popular affiliate program for bloggers and website owners in India. Amazon will pay 10% commission when visitors follow affiliated links from your website to Amazon.in and make a purchase.
To get started, go to affiliate-program.amazon.in and sign-in with your existing Amazon account. Fill in the form and they’ll manually approve your site with 24 hours. Once you are approved, you can use your Amazon Affiliate IDs to link to products listed on amazon.in and earn referral fees for sales that happen via your affiliated link.

How to Build Affiliate Links for Amazon.in

You can easily build affiliated HTML links from your Amazon Associates dashboard but there’s a simple way that will create clean affiliate hyperlinks.
All products listed on the Amazon website have a unique ASIN code and for printed books, this ASIN code is the same as the 10-digit ISBN code of that book. For instance, the ISBN and ASIN code for Sheryl Sandberg’s latest book is 0753541637. This code can be found on the Product Details section of any Amazon listing.

Ads by Google Free Full Ebooks Download www.readingfanatic.com
Choose From 1 Million Free Titles Download Now for Free eBooks!
Once you that have the ASIN/ISBN and your Amazon Associate ID, just build an HTML hyperlink in the following format.
http://www.amazon.in/dp/ASINCode/?tag=AffiliateID (see sample link)
Competing online book stores like Flipkart and Infibeam offer 6% and 5% commission on books respectively while eBay’s affiliate program is not available in India. Since Amazon India pays a higher commission (10%), blogs and websites owners in India are more likely to link to the Amazon.in website and that is likely to push them up in the organic search results.
Also see: How to embed Amazon book previews in your website
.

Tutorial: How to Setup Google DFP for Selling Ads.

Consider the following scenarios:
  • You use an advertising network like Google AdSense for serving ads on your website but would also like to accept ad campaigns from brands, digital agencies and other direct advertisers.
  • You have partnered with multiple CPM based ad networks – say AdSense, BuySellAds, TribalFusion, etc. – but would only like to run ads from the network that pays you the most money (or maximum CPM)
  • You would like to display ads based on certain criteria. For instance, visitors from U.S. are shown one set of ads while visitors who are in India and use Windows are targeted with a different set of ads.
  • You are using AdSense across your website and the CPMs may vary. Instead of serving low-cost Google AdSense ads, say when the CPM is less than $1, you would like to display in-house ads that promote your older article or your other website.
Google DFP, or DoubleClick for Publishers, is a perfect solution in either of the above scenarios. DFP is a free ad server from Google that lets you sell ad space on your website more effectively and also helps maximize your advertising revenue.
Google DFP
With DFP, you may run standard banner ads, text ads (JavaScript based) or even rich-media campaigns that use video and Flash creatives. The tool, which was formerly known as Google Ad Manager, requires no downloads or installation and any website publisher can sign-up for the DFP program as long as they have an active Google AdSense account.

Sell Your Advertising Space with Google DFP

Say you have a blog where you cover a variety of topics including technology, sports and entertainment. An advertiser wants to serve banner ad campaigns on all your tech related pages. As part of the deal, he has agreed to pay $20 CPM for all US impressions and you can fill your remnant inventory through Google AdSense ads.
Let’s see how we can easily setup such an ad campaign through Google DFP.
Step 1: Create Ad Units

Ads by Google Post Free Ads Now www.Quikr.com/Post-Ad
Create & Post Your Own Ad for Free Go Now. Sign up at Quikr™100% Free
We need to tell DFP about all the advertising spaces on our web pages. For this example, we’ll create three ad units – the 300×250 rectangle, the 160×600 skyscraper and the 468×60 banner. These are standard IAB units though you can define custom ad sizes as well.
Go to DFP –> Inventory –> Ad Units –> New Ad Unit (choose Web or Mobile). Give your ad unit a descriptive name so that you can easily determine where that ad unit will be displayed and also include the size of that unit. You may check the option “Maximize revenue of unsold and remnant inventory with AdSense” in case you wish to display Google Ads when there are no direct ads or when Google is offering better CPM than the direct advertiser.
new_ad_unit
Bonus Tip: If you set the target windows in the Ad Unit as “_blank”, the ads will open in a new window. Google doesn’t allow you to open AdSense ads in a new window but if you are using DFP, AdSense ads can be configured to open in a new window without breaking the AdSense program policies.
Step 2: Define Placements
You have multiple ad units on the website and there’s a possibility that an advertiser may want to target one or more of these ad units. For instance, an advertiser may want to target your Medium Rectangle and Skyscraper ad units on tech-related pages of the site. You can group these ad units into a placement that can be targeted by advertisers.
Go to the Inventory tab –> Placements –> New Placement and add your placement. To keep things simple, we will associate only one ad unit (300×250) with our ad placement. Check the option that says “Offer this placement to advertisers” through AdWords to attract more advertisers. You should carefully fill the AdSense targeting section for that placement since whatever you write here will be viewable by AdWords advertisers.
placement
Step 3. Create an Order
Now that we have defined our ad inventory, it’s time to create the client’s order (or campaign). The client /advertiser will specify where he wants to place the ad, what kind of demographics he wants to target, what’s the price he is willing to pay and how long will the campaign run on the website.
Go to DFP –> Orders –> New Order. Create a company for the advertiser and then fill-in the order details under “New Line Item.” Set the Type to “Price Priority” if you want the highest paying ads to be served on your site. Set Value CPM equal to the price that the client will pay and then add the targeting criteria.
ad_target
Also see: Increase AdSense Revenue with Google DFP
Step 4. Upload the Ad Creative
Next you have to upload the ad creative that will display on your web pages. You can either upload images, Flash videos or even snippets of HTML and JavaScript in case you’re going with text ads.
Go to DFP – > Line Items and select the “Line Item” that you’ve created in the previous step. Click Add Creatives and either upload the image / SWF Flash file or choose the Text Ad format to enter a text-on ad (like the one you see on Google search pages).
You can even upload multiple creative ads per line item and they’ll display evenly across the site – you can compare the click-through rates of these creatives to determine the ad copy that performs best with your visitors.
upload_creative
Step 5. Get the Ad Tags for your Site
We’ll grab the JavaScript code from Google Ad Manager DFP and copy-paste it into our website /blog template.
Click the Inventory tab in your DFP dashboard and choose “Generate Tags” – select the appropriate ad unit (the one you created in Step #1) and choose “Generate Tags.”   Use the Google Publisher Tag (asynchronous) option from the drop-down and add this code to your website. Google DFP should begin serving ads on your pages in the next 10-15 minutes.
Here’s a narration-less screencast that captures all the above steps in a quick video.
If you ever have trouble serving ads through DFP , just open any page of your website, add ?google_debug to the URL and reload. This will generate a tracing log that should help you debug the problem, if any.
...

Show How Busy you are with the Gmail Counter.

Would you like to know how many unread email messages are there currently in my Gmail inbox? Click here. What you’ve seen is a real-time counter that displays the number of unread emails in my Gmail. And I made it using a very simple Google Script.
If you are feeling overwhelmed by the volume of email in your mailbox, you can probably include a link to this Gmail counter in your email signature, or in your website’s contact form, and it may deter people from sending you more messages. Or it will at least let them know how busy you are.
Gmail Counter

Gmail Counter for your Unread Messages

Here’s how you can publish your own Gmail counter to the world.
  1. Click here to copy the Gmail counter script to your Google Drive.
  2. Go to Run -> doGet and click Authorize -> Grant Access to allow the script to read the count of unread messages in your Gmail mailbox.
  3. Go to File -> Manage Version and click the Save New Version button. Click OK.
  4. Go to Publish -> Deploy as web app and choose “Anyone, even anonymous” under “Who has access to this app.” Click the Deploy button.
Google Script will now provide you with a unique web URL and that is where people (anyone on the Internet) can view your Gmail counter.
While the above Google Script is basic and only display the unread count, advanced users may actually log this value in a spreadsheet daily (using automated triggers) and build a chart illustrating their email overload. Google Scripts cannot  however be embedded inside web pages as IFRAMEs due to save-origin policies.
..

Generate Disposable Email Addresses That Do Not Expire.

Sometimes a website may require your email address but if that site isn’t trustworthy, you are very likely to use a disposable email service like 10minutemail.com or Mailinator.com to complete the sign-up process.
disposable email address
We tend to have a transactional and very temporary relationship with these disposable email accounts. Once the purpose is solved, the mailbox is abandoned and we will generate a new address the next time another website asks for our “real” email address.
MailDrop.cc is a new provider of disposable addresses but what makes them a little different is that they let you use custom (memorable) aliases for your temporary email address and your mailbox will stay around forever so you can use the same address later on other sites as well.
There are some rules though. Your inbox will hold a total of 10 messages and all the messages will be deleted if the mailbox stays inactive for 24 hours. The email address itself will however continue to exist. Also, the service accepts only text mails and any file attachments will be removed before the message is delivered to your inbox.
One more thing. Since MailDrop requires no logins or passwords, anyone can see your mailbox if they know, or happen to guess, your email alias. Thus, use the service purely for throwaway and temporary e-mail addresses.
.

How Use Google as a Proxy Server to Bypass Paywalls, Download Files

If you have trouble accessing a web page either because the website is blocked at your workplace, or because that page happens to be behind a paywall, there are a couple of undocumented Google proxy servers that may help you read that page.
Google Proxy Server
When you access any page via one of these Google proxies, the content of that page gets downloaded on Google servers and then served to you. The lesser-known gmodules.com proxy, discussed later, will even allow you to download documents, videos and other web files that are otherwise blocked.

1. Google Translate as a Proxy

To use Google Translate as a proxy, set the destination language as the actual language of the page and the source language as anything but the destination language.
For instance, if you are to access a page written in English, set the destination language (tl) in the translate URL as “en” and the source language (sl) as “ja” for Japanese. (example)
http://translate.google.com/translate?sl=ja&tl=en&u=http://example.com/
Google Translate Proxy (bookmarklet) Advantage: This is the most popular Google proxy and the download web pages looks exactly like the original provided the domains serving the images and CSS aren’t blocked at your place.

2. Google Mobilizer as a Proxy

Next in the list is Google’s Mobilizer service. Google has discontinued the main mobilizer service on google.com (secure) but you can still access it through any country-specific Google domain like google.co.in or google.ie. The URL would be:

Ads by Google Looking For New Customers www.Google.com/AdWords
Drive Customers To Your Website W/ Free Rs.2000 Advertising Credit
http://www.google.ie/gwt/x?u=http://example.com/ (example)
Google Mobilizer Proxy (bookmarklet) Advantage: The presentation (CSS) isn’t retained but this mode is perfect for reading text-heavy pages and do have the option of disabling inline images for faster loading.

3. Google Modules as a Proxy

The gmodules.com domain is part of the Google personalized homepage service and is primarily used for hosting gadgets that are available for the Google homepage.
http://www.gmodules.com/ig/proxy?url=http://example.com/ (example)
Google Modules Proxy (bookmarklet) Advantage: This is the only Google proxy that will let you download files (like PDFs, .MP4 videos, etc) in addition to viewing regular web pages.
Finally, if none of the above proxies work, you can always check the Google Cache or create your proxy server using either this Google Script or the more advanced Google App Engine....

Download Google Maps Offline on your iPhone and iPad freely

One of the most useful feature of the new Google Maps app is that you can download any area of the map for offline use. The offline mode has been available on Google Maps for Android for some time and now iOS users too will be able to navigate the maps without using data or in areas that have no cellular connectivity.
How do you download an area on Google Maps? That’s a little tricky.
Search for a place in Google Maps and zoom in such that all the area that you wish to cache locally is visible on the screen. Now tap the search box and type “ok maps” without the quotes. Tap the Search button on the keyboard and all the visible area will download to your iOS device almost instantly.
You cannot cache a large area of the map in one go but you can obviously divide that area into multiple parts, virtually, and download them one after other.try it it is free

Thursday, 18 July 2013

How to Open iTunes Links inside Chrome for iOS

Google Chrome is a good alternative to the default Safari web browser on iOS devices but there’s one little problem – Chrome doesn’t know how to properly handle iTunes URLs.
For instance, if you happen to click a link that points to an iPhone app, Chrome will show the HTML source of the itunes.apple.com page instead of opening the iTunes Apps Store (app). Here’s a screenshot image of Google Chrome running on an iPad and the gibberish text is actually the iTunes store listing for a popular iOS game. You shouldn’t be seeing this.
Chrome on iTunes
There are two ways to fix this problem.
You can copy the itunes.apple.com URL from Chrome’s address bar, switch to Safari and paste the URL in a new tab. Safari will automatically launch the app’s page inside the Apps Store.
There’s an easier option as well. While in Chrome, tap the Hamburger menu button in the upper right and choose the “Request Desktop Site” option. Chrome will now render the regular itunes page – similar to the ones you see on desktop computers – and you can tap the “View in iTunes” button to open that app inside the Apps Store.
You may use a similar workaround for opening movies and music album listings inside the iTunes app from the Google Chrome browser.

Tuesday, 9 July 2013

How to Test your Eyes using the Computer

They say that you should get your eyes checked every two years but if haven’t had the chance to see a doctor all this time, you can test your vision on your computer as well.
Of course these self eye tests are no substitute for visiting your doctor but if you follow the steps well, you may get some idea about how good (or bad) your vision is.
Snellen Eye Chart
Test your Eyes Online with the Snellen Eye Chart

The Snellen Eye Chart

Most of us are familiar with the Snellen Chart that has rows of alphabets of different sizes – you read these letters from a distance, usually twenty feet, and the smallest row that you can recognize accurately indicates whether you have normal vision or not.
The various eye testing tools that are available online make use of the same Snellen chart.

Test your Eyesight Online

You should start with University at Buffalo’s IVAC tool. Use a physical ruler to measure the length of the line on the screen (the length will vary depending on your screen resolution). Also measure the distance of your eyes from the computer screen. Now read the row of letters on the screen and press ‘smaller’ to display more rows in decreasing sizes.
While performing the test, you need to cover one eye and when you have read all the characters from top-to-bottom, read them again but cover the other eye this time. When you can no longer read the letters, stop!
Also see: Relax your Eyes with 20/20/20 Rule

Ads by Google ETDRS Cabinet & Charts Precision-Vision.com
Precision Vision provides the World Standard ETDRS Cabinet & Eye Charts
Another Flash based eye testing tool is hosted on thinkquest.org – this can work accurately only with computer monitors that are either 15”, 17” or 19” in size. Stand four feet from the screen and then follow the on-screen instructions. When the characters are no longer readable, hit the stop button and it will display your visual acuity.
Finally, if you are looking for more DIY solution, try this. Open the Snellen Chart image on your computer screen and measure the size of the big letter E using a ruler. Multiply that number by 2.838 and stand that far from the screen while taking the test. Now try reading the different letters, top to bottom, to check your vision.

How to Test your Eyes using the Computer

They say that you should get your eyes checked every two years but if haven’t had the chance to see a doctor all this time, you can test your vision on your computer as well.
Of course these self eye tests are no substitute for visiting your doctor but if you follow the steps well, you may get some idea about how good (or bad) your vision is.
Snellen Eye Chart
Test your Eyes Online with the Snellen Eye Chart

The Snellen Eye Chart

Most of us are familiar with the Snellen Chart that has rows of alphabets of different sizes – you read these letters from a distance, usually twenty feet, and the smallest row that you can recognize accurately indicates whether you have normal vision or not.
The various eye testing tools that are available online make use of the same Snellen chart.

Test your Eyesight Online

You should start with University at Buffalo’s IVAC tool. Use a physical ruler to measure the length of the line on the screen (the length will vary depending on your screen resolution). Also measure the distance of your eyes from the computer screen. Now read the row of letters on the screen and press ‘smaller’ to display more rows in decreasing sizes.
While performing the test, you need to cover one eye and when you have read all the characters from top-to-bottom, read them again but cover the other eye this time. When you can no longer read the letters, stop!
Also see: Relax your Eyes with 20/20/20 Rule

Ads by Google ETDRS Cabinet & Charts Precision-Vision.com
Precision Vision provides the World Standard ETDRS Cabinet & Eye Charts
Another Flash based eye testing tool is hosted on thinkquest.org – this can work accurately only with computer monitors that are either 15”, 17” or 19” in size. Stand four feet from the screen and then follow the on-screen instructions. When the characters are no longer readable, hit the stop button and it will display your visual acuity.
Finally, if you are looking for more DIY solution, try this. Open the Snellen Chart image on your computer screen and measure the size of the big letter E using a ruler. Multiply that number by 2.838 and stand that far from the screen while taking the test. Now try reading the different letters, top to bottom, to check your vision.

How to Use Google AdSense Ads on your Responsive Website

Responsive web design is a simple technique that makes your website look good across all screen sizes – be it the mobile phone, tablets, desktop computer or even the large-screen TV.
Google has also officially recommended that website owners use the responsive design approach instead of maintaining separate mobile and desktop website as responsive design “keeps your desktop and mobile content on a single URL.”
Responsive Google AdSense Ads

Responsive Google AdSense Ads

If you been using Google AdSense Ads on your responsive website, you may have noticed that, unlike your content, Google AdSense ads have a fixed width and they will not shrink or expand based on the screen size of the visitor.
For instance, if you are using the standard 728×90 leaderboard unit on your website, the ad unit may extend well beyond the screen if someone is viewing your website on a mobile phone that can only accomodate 320 pixels.
Google AdSense Ads aren’t responsive by default but there’s a simple JavaScript based workaround that will make your Google Ads respond to the screen size. Best of all, the Google AdSense team has officially approved our Responsive Ads technique.
Before we dive into the code, please take a look at this demo page.

Ads by Google Increase Advertising ROI Advertise.com
Exclusive Search & Display Network. 20 Billion Searches. Start Here!
The demo has exactly one AdSense unit above the fold but the size of the unit will vary depening on visitor’s screen. If you are viewing the demo on a widescreen, you’ll see a leaderboard ad while a mobile user will see a medium rectangle or even a 180×90 link unit depending on the screen resolution.

Making Google AdSense Ads Responsive with JavaScript

  1. <!-- You can add multiple Adsense Ad units -->
  2. <!-- Just change the ad on Line #4 and Line #7 -->
  3.  
  4. <div id="google-ads-1">
  5. <script type="text/javascript">
  6.  
  7. adUnit = document.getElementById("google-ads-1");
  8. adWidth = adUnit.offsetWidth;
  9.  
  10. /* Replace this with your AdSense Publisher ID */
  11. google_ad_client = "ca-pub-1234567890";
  12.  
  13. if ( adWidth >= 768 ) {
  14. /* Leaderboard 728x90 */
  15. google_ad_slot = "AAA";
  16. google_ad_width = 768;
  17. google_ad_height = 90;
  18. } else if ( adWidth >= 468 ) {
  19. /* Banner (468 x 60) */
  20. google_ad_slot = "BBB";
  21. google_ad_width = 468;
  22. google_ad_height = 60;
  23. } else if ( adWidth >= 336 ) {
  24. /* Large Rectangle (336 x 280) */
  25. google_ad_slot = "CCC";
  26. google_ad_width = 336;
  27. google_ad_height = 280;
  28. } else if ( adWidth >= 300 ) {
  29. /* Medium Rectangle (300 x 250) */
  30. google_ad_slot = "DDD";
  31. google_ad_width = 300;
  32. google_ad_height = 250;
  33. } else if ( adWidth >= 250 ) {
  34. /* Square (250 x 250) */
  35. google_ad_slot = "EEE";
  36. google_ad_width = 250;
  37. google_ad_height = 250;
  38. } else {
  39. /* Ad Link Unit (200 x 90) */
  40. google_ad_slot = "FFF";
  41. google_ad_width = 200;
  42. google_ad_height = 90;
  43. }
  44. </script>
  45.  
  46. <script type="text/javascript"
  47. src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
  48. </script>
  49. </div>
To get started, create multiple ad units (say 768×90, 468×60 and 300×250) inside your AdSense dashbaord and replace the relevant google_ad_client (ca-pub-1234) and google_ad_slot (AAA, BBB, etc.) identifiers in the code with your own values.
Next, copy-paste the above snippet anywhere on your web page and, based on the size (resolution) of the user’s device, the most appropriate AdSense Ad format will get served automatically. If you wish to include multiple AdSense ad units on the same responsive website, just use the same snippet of code but increment the ID (line #4 & line #8) such that they read google-ads-1, google-ads-2 and so on.

What’s New?

I wrote the first version in August 2012 and the updated code includes several enhancements:
  • The previous version used window.innerWidth and window.clientWidth properties to calculate the screen width but there were compatibility issues with older browsers. We are now using offsetWidth to compute the available width for ads which is even more reliable.
  • You can now configure JavaScript to not display AdSense ads on very small screens. This is done by not specifying a valid google_ad_slot and setting the display property of the ad unit to “none” so that there’s no blank space anywhere.
  • It is now easier to include multiple responsive ad units on single web page.
While it is always a good idea to confirm with your account manager, this technique isn’t against AdSense TOS as we aren’t resizing the ads or modifying the JavaScript code – we are just serving a different ad unit based on the visitor’s browser size.
AdSense publishers routinely perform split A/B testing to determine which colors schemes and banners sizes perform the best on their website – this is a similar technique.
Also see: Google AdSense Sandbox
Update: The previous version of the AdSense snippet was hiding Google ads when the screen size was 200 pixels or less. This change wasn’t approved by the AdSense team in Germany and therefore we now display the smaller link units on smaller screen instead of hiding the ad.

See more tutorials on: