11 March 2014

How To Become Super-Productive By Outsourcing Your Day-To-Day Tasks



Elance

We all know that one person who appears to glide through life getting more done in a day than most of us could possibly manage in a week. But by learning what you can outsource, plus a few ‘best practice’ tips for delegating your day-to-day chores, you too can become super-productive. This article will explain how to choose tasks to outsource online, show you a few examples, and give you some tips on how to become an efficient and proficient online outsourcer. What is Outsourcing? In a word, delegation. Since the launch (and subsequent success) of books and blogs such...


Read the full article: How To Become Super-Productive By Outsourcing Your Day-To-Day Tasks



The Best Add-ons for Google Docs and Sheets



Google today introduced add-ons for Google Docs & Sheets and they certainly make the Google Office productivity suite more capable and more useful. If you haven’t tried them yet, open any Google document or spreadsheet in your Google Drive and look for the new add-ons menu.


For starters, add-ons in Google Docs are like extensions for Chrome. Just like Chrome extensions add new features to your browser, add-ons extend the functionality of Google Docs and Google Sheets. To give you an example, here’s the screenshot of a Twitter add-on I wrote for Google Docs and Google Sheets that you can use to find and curate tweets right inside your documents.


Twitter Curator is an add-on for Google Docs and Sheets

Twitter Curator is an add-on for Google Docs and Sheets



Anyone can write an add-on for Google Docs. All you need to have is some basic understanding of HTML, CSS (for styling the add-on) and JavaScript. The server side code is written in Google Apps Script which is similar to JavaScript but running on the Google Cloud.


Google Scripts vs Google Add-on


Google Add-ons are also written in the Google Apps Script language but while regular Google Scripts can work on any document in your Google Drive, add-ons only work against the document or sheet that’s currently open in your browser.


Also, while Google Scripts support triggers and can run in the background (like this Website Monitor), add-ons can only run while a document or sheet is open and active.


The other big difference is that you can view the source code of regular Google Scripts while in the case of add-ons, the code is hidden from the end user. This helps developers protect their code but a downside is that the user has no clue about what’s happening behind the scenes.


We have seen issues with Chrome extensions and add-ons for Google Docs can be a target as well. For instance, an add-on can possibly email a copy of the current document or sheet to another email address? Or maybe it can share a folder in Google Drive with someone else. All add-ons currently listed in the Chrome store have been tested and reviewed by Google but if they open the gates for all, I would be a little hesitant to install add-ons created by unknown developers.


One more thing. Google Add-ons are only available for the new version of Google Sheets while Google Scripts can work on both old and new Sheets.


The Best Add-on For Google Docs & Sheets


The Chrome store has about 50 Google add-ons at the time of launch and here are some of favorite ones that you should have in your Google Docs.



  1. HelloFax – You can now send a fax to any number worldwide directly from inside Google documents. The free version lets you fax up to 5 pages.

  2. UberConference – You can have an audio conference with up to 10 people while working on a Google Document. There’s an option to record the call too.

  3. PanDoc – You can send the current document to the client from within Google Docs to request their legally-binding signature.

  4. Avery – Create address labels inside Google Docs for printing.

  5. Sudoku – Create and solve Sudoku puzzles inside a Google Spreadsheet.

  6. MailChimp – Send mails in bulk using the Mandrill service of MailChimp. The mails do not go via your Gmail account.

  7. MindMeister – Create a hierarchical bulleted list inthe the Google document and MindMeister will converted that list into a visual mind map.

  8. EasyBib – Cite books, journal articles and websites and add them to your Google Documents in MLA, APA and Chicago style.

  9. Gliffy & Lucidchart – Create flow charts, diagrams, site mockups, org charts and other technical drawings inside your Google Documents.

  10. Mapping Sheets – Create a spreadsheet with a list of places and the sheets add-on will plot them on a Google Map.

  11. TextHelp – This is like the yellow highlighter for your Google Documents. Select and highlight passages and save the annotations in a separate document.

  12. Analytics Canvas – It helps import your Google Analytics reports into Google spreadsheets for further analysis.


Related tutorial: How to Create a Google Docs Add-on




This story, The Best Add-ons for Google Docs and Sheets, was originally published at Digital Inspiration on 11/03/2014 under Google Docs, Internet

How to Write an Add-on for Google Docs



You have seen examples of some really useful add-ons for Google Docs but wouldn’t it be great if you could write your own add-on, one that adds new features to your Google Docs, one that makes you a rock star among the millions of Google Docs users.


Well, it ain’t that difficult. If you know some HTML, CSS and JavaScript, you can create a Google Docs add-on.



Create a Google Add-on for Docs & Sheets


This step-by-step tutorial (download) will walk you through the process of creating your own add-on for Google Docs. The add-on used in the demo lets you insert a image of any address on Google Maps inside a Google Document without requiring any screen capture software.


Ok, lets’s get going.


Step 1. Open a new document inside Google Drive and choose Tools -> Script Editor. This is the Apps Script IDE where we’ll write the code for the add-on.


Step 2. Choose File -> New HTML to create a new HTML file inside the Script Editor and name your file as googlemaps.html (or anything you like).


Step 3. Copy-paste the following code in the HTML file and save your changes. This is the code that will be used to render the sidebar in your Google Documents.



<!-- Use this CSS stylesheet to ensure that add-ons styling
matches the default Google Docs styles -->
<link href="http://ift.tt/1fndSbJ;
rel="stylesheet">

<!-- The sidebar will have a input box and the search button -->
<div class="sidebar">

<!-- The search box for Google Maps -->
<div class="block form-group">
<input type="text" id="search" placeholder="Enter address.. " />
<button class="blue" id="load_maps">Search Google Maps</button>
</div>

<!-- The container for the Google Maps static image -->
<div id='maps'></div>

</div>

<!-- Load the jQuery library from the Google CDN -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
</script>

<script>
// Attach click handlers after the Sidebar has loaded in Google Docs
$(function() {

// Use Static Maps to generate an image of the address entered by the user
$('#load_maps').click(function() {
var mapURL = 'http://ift.tt/1dMMMP4;
+ encodeURIComponent($('#search').val())
+ '&zoom=14&size=200x400&sensor=false';
$('#maps').html('<img src=" ' + mapURL + ' "/>');
});

// If the user presses the Enter key in the search box, perform a search
$('#search').keyup(function(e) {
if (e.keyCode === 13) {
$('#load_maps').click();
}
});

// When a user clicks the thumbnail image in the sidebar, call
// insertGoogleMap to insert the maps image in the current document
$('#maps').click(function() {
google.script.run.insertGoogleMap($('#search').val());
});

});
</script>

Step 4. Next we will write the server side JavaScript (Google Script) that will actually render the sidebar and insert Google Maps images in the document.



/* What should the add-on do after it is installed */
function onInstall() {
onOpen();
}

/* What should the add-on do when a document is opened */
function onOpen() {
DocumentApp.getUi()
.createAddonMenu() // Add a new option in the Google Docs Add-ons Menu
.addItem("Google Maps", "showSidebar")
.addToUi(); // Run the showSidebar function when someone clicks the menu
}

/* Show a 300px sidebar with the HTML from googlemaps.html */
function showSidebar() {
var html = HtmlService.createTemplateFromFile("googlemaps")
.evaluate()
.setTitle("Google Maps - Search"); // The title shows in the sidebar
DocumentApp.getUi().showSidebar(html);
}

/* This Google Script function does all the magic. */
function insertGoogleMap(e) {
var map = Maps.newStaticMap()
.setSize(800, 600) // Insert a Google Map 800x600 px
.setZoom(15)
.setCenter(e); // e contains the address entered by the user

DocumentApp.getActiveDocument()
.getCursor() // Find the location of the cursor in the document
.insertInlineImage(map.getBlob()); // insert the image at the cursor
}

Save your changes and then choose onOpen from the Run menu inside the Script editor. Authorize the script and switch to your Google Document.


You’ll see a new Google Maps option under the Add-ons menu. Select the menu item and you’ll be able to insert maps images inside your Google Documents without using any screen capture software.


Share your Google Add-ons with other Google Docs users


Now that your first Google add-on is ready, you may want to distribute it to other users of Google Docs. The easiest option would be that you share your document with public and set the permission as Anyone can view. Now anyone can create a copy of your document in their own Google Drive and use your add-on.


Google Add-ons can also be published to the Chrome store, the process is similar to publishing Chrome extensions, but this isn’t available to all Google developers yet.




This story, How to Write an Add-on for Google Docs, was originally published at Digital Inspiration on 11/03/2014 under Google Docs, Internet

Power Up Your Instagram Experience With These IFTTT Recipes



ifttt-instagram

For automation on the Web, there’s nothing like IFTTT (If This Then That). If you’re not familiar with it, you’re missing out. IFTTT lets you automate almost any service you use, saving you time you didn’t even know you were spending. Among the numerous things you can automate with IFTTT are your Facebook photos and videos, your Facebook Page, your eBook reading, and even your iPhone. So why not Instagram? Instagram is a great way to share your photos and enjoy others’, but with IFTTT, it can become much more than that. All it takes are a few clicks. Backup...


Read the full article: Power Up Your Instagram Experience With These IFTTT Recipes



How Your Email Messages Can Make People Love You Or Hate You



bad-good-emails

I know you think you know how to write a good email, but I’d like to take a moment to tell you the correct way to write an email. How did that sentence make you feel? Kinda like I was talking to you like you’re a three year old, right? That’s how easily an email can offend people. If you want to come across in a positive way — as a team player, a competent leader or a trusted friend — the words you choose and the way you string them together has a tremendous impact. This matters even more...


Read the full article: How Your Email Messages Can Make People Love You Or Hate You



Snowden At SXSW, MtGox Bankruptcy, Titanfall Time, 8-Bit True Detective [Tech News Digest]



snowden-mosaic

Today in Tech News Digest, Edward Snowden appears at SXSW, MtGox secures bankruptcy protection, Twitter fixes “rare” bug, Titanfall drops, Microsoft finally releases the Power Cover for Surface 2, UC Browser HD v3.0 arrives, and an 8-bit version of True Detective pops up on YouTube. Snowden Securely Screened At SXSW NSA whistleblower Edward Snowden appeared at SXSW (South by Southwest) via a Google Hangout encrypted to hide his location. In an hour-long interview conducted by Ben Wizner of the American Civil Liberties Union (ACLU), Snowden spoke about the kind of practices that need to be adopted in order to prevent...


Read the full article: Snowden At SXSW, MtGox Bankruptcy, Titanfall Time, 8-Bit True Detective [Tech News Digest]



Relive The Long Lost Web Of The 90s With Net Cafe [Stuff to Watch]



net-cafe-stw

There was something about the emerging Internet that made it a very exciting place to be in the 1990s. Maybe it was my young age, but the early web was somewhat of a community all by itself – a small number of connected users, packing into a limited number of services, stepping on each others toes. No television program documented the early web quite like Net Cafe, which was first broadcast in 1996 and ran until 2002; interviewing then-aspiring dotcom pioneers and winning awards for journalistic excellence along the way. Just like geeky broadcast predecessor Computer Files, Net Cafe has...


Read the full article: Relive The Long Lost Web Of The 90s With Net Cafe [Stuff to Watch]



4 Ways To Creatively Use Canned Responses For Email Productivity



canned-responses

Efficiency means doing things at the right time, automating what you can, and going through them in one go. If you’re effective, you’re doing something right. That’s why you should use email filters and schedule email time. One trick is to prepare canned responses for emails you frequently write. Here is a list for your inspiration. Seasons Greetings, Birthday Wishes & Other Special Occasions Merry Christmas, Happy New Year, Happy Easter, and wishing you a Happy Birthday, too. When it’s time to send out annual greetings, you probably repeat the same verbiage over and over again, like a broken record....


Read the full article: 4 Ways To Creatively Use Canned Responses For Email Productivity



Windows 9 Skin Pack For Windows 7/8.1



CLICK HERE TO SEE FULL POST



Microsoft is currently working hard to release a minor update to its struggling Windows 8.1 version. Windows 8.1 Update 1 ( aka Feature Pack for Windows 8.1), which has already been leaked on to the web last week, brings ability to pin Modern or Metro apps to the taskbar, minimize and close buttons to Metro […]

10 March 2014

Try This When Windows Software Won’t Install



windows error

You’ll occasionally run into an error when installing software on Windows. The installer may refuse to run, report an error code, say it’s unable to write to a folder, or even silently fail. You’ll need to troubleshoot the problem so you can install software normally. Run as Administrator Most Windows software needs to be installed with administrator privileges. Thanks to User Account Control (UAC), you’re probably using a limited user account. Most of the time, you won’t have to worry about this. Whenever you install a program you’ll see a UAC pop-up and can grant permission. Modern software installers will...


Read the full article: Try This When Windows Software Won’t Install



5 Amazing Reddit AMAs For Aspiring Developers



coding-reddit

People who participate in Reddit AMAs can be extremely informational and inspirational. As a tech-savvy community, there are plenty of AMAs that are must-reads for aspiring developers. Here are the top 5 AMAs that you will want to get started on. What’s an AMA? Before we begin, I’m sure a few of you who are unfamiliar with Reddit terminology will be asking, “What the heck is an AMA?” The acronym stands for “Ask Me Anything”, and there’s an entire section on Reddit (called a subreddit — subject-specific places where you can learn anything) dedicated to these AMAs. There are also...


Read the full article: 5 Amazing Reddit AMAs For Aspiring Developers



How To Track Flight Prices And Get Ticket Refunds Using Yapta



yapta

It’s a choice of plenty with many websites available for checking airline fares. It can be difficult to find one quality service to stick with. But Yapta has a couple of features that set it apart from the rest: Tracking price drops on flights. Getting you a refund on those flights if the price drops after you buy it. There are some rules to stick to when searching for a flight, and using Yapta can only help you save even more money. The startup behind Yapta joined forces with Kayak a while back, and the two websites are now quite...


Read the full article: How To Track Flight Prices And Get Ticket Refunds Using Yapta



Android Smartwatch SDK, Neil Young’s PonoPlayer, Noisy Marvel Comics [Tech News Digest]



android-toy

Today in Tech News Digest, Google teases an Android SDK for smartwatches, Neil Young reveals his PonoPlayer, Yahoo’s track record with startups is revealed, Marvel adds sound to comics, Samsung releases Milk Music, Facebook Messenger finally comes to Windows Phone, and the CEO of BlackBerry calls iPhone users “wall huggers.” Google Pitches Android Smartwatches Best #smartwatch concept I’ve seen so far. http://t.co/Pd7BE305af http://ift.tt/O4pavj — Meredith Frost (@MeredithFrost) March 8, 2014 Google plans to release an Android SDK for smartwatches in a matter of weeks, according to Sundar Pichai, the man in charge of Android, Chrome, and Google Apps. The SDK...


Read the full article: Android Smartwatch SDK, Neil Young’s PonoPlayer, Noisy Marvel Comics [Tech News Digest]



Turn Any Site’s Search Box Into A Firefox Search Engine



firefox-search-box

Do you visit your favorite websites several times a day to search their archives? Speed that process up. Install Add to Search Bar for Firefox and search all those websites from a single search box. Many people don’t realize it, but you can add more than the standard search engines to Firefox’s search bar. You can choose from other search options like Twitter, YouTube, StumbleUpon, etc. by installing them from Mozilla’s add-on database. But what if you want to search a website that you use frequently, but can’t find in Mozilla’s search database? That’s where Add to Search Bar steps...


Read the full article: Turn Any Site’s Search Box Into A Firefox Search Engine



09 March 2014

Getty Images Makes 35 Million Images Available for Free Use With Embed Code



Getty-Images_Lead_Image

The leading stock photo agency, Getty Images, has made a bold decision to allow photos in its vast image library available for free use and posting, as long as they include the accompanying embedding code. The Getty Images library includes a wide range of stock collections, including sports, entertainment, travel, and news. Craig Peter, Getty’s senior vice president of the business development, said anyone can now visit the site and post images for noncommercial use by embedding the HTML code for a selected image in their website. Similar to how Google allows for embedding YouTube videos on websites, embedded images...


Read the full article: Getty Images Makes 35 Million Images Available for Free Use With Embed Code



Stop Leaking Money: How To Set Up A Personal Tech Budget



money-water

Technology can rob you blind. It’s expensive and it can leave you swearing to yourself that your bank balance was twice that the last time you checked it. Whether you’re buying a new phone or building a new computer, there are two ways to go about it: the responsible way and the wrong way. Don’t let technology put you in debt — or worse, on the streets. Ready to save some money without cutting technology purchases altogether? Keep reading for tips on devising and maximizing your own personal tech budget. Do You Need A Personal Tech Budget? Long story short,...


Read the full article: Stop Leaking Money: How To Set Up A Personal Tech Budget



08 March 2014

How Much Money Can You Make Off YouTube



YouTube offers a Partner Program to help you easily monetize your videos on YouTube. Once you are accepted into the program, upload a video “that you have created” on to YouTube, enable advertising for that video and wait for the money to pour in.


The current split is 55-45 so if Google sells $100 worth of advertising against a YouTube channel, the partner’s share is $55. But how much many can your really make off YouTube?


Mahalo founder @Jason recently shared some raw numbers for XHIT, a popular fitness channel on YouTube with half a million subscribers, and the revenue graph isn’t very encouraging.


The video channel has accumulated over 33 million views in the last 18 months and the total advertising revenue that the channel generated from YouTube in the same period is around $90k. That’s about $2.7 per 1000 views (CPM) which isn’t an impressive deal considering the kind of effort and resources that go into producing videos.


Total YouTube Video Views


YouTube Earnings (in $)


The advertising revenue is almost directly proportional to the eyeballs.


For a majority of YouTube partners, the advertising revenue from videos may help pay the utility bills but only a few can expect to strike it rich. On the positive side, as @Jason says, YouTube does help build your brand on the Internet.




This story, How Much Money Can You Make Off YouTube, was originally published at Digital Inspiration on 07/03/2014 under Google AdSense, YouTube, Internet

Lock Down These Services Now With Two-Factor Authentication



two-factor-auth

Two-factor authentication is the smart way to protect your online accounts using something you know (like a password) and something you have (like a smartphone). Also known as two-step verification, it involves entering a code when logging in on new devices, and provides an excellent level of protection. With two-factor authentication even if your password isn’t particularly strong, your account is still relatively safe as you’ll need to authorise any log in attempts. Today we’ll be taking a look at few of the services you can lock-down with better security. How Does It Work? We’ve already taken a look at...


Read the full article: Lock Down These Services Now With Two-Factor Authentication



07 March 2014

4 Alternatives To YouTube’s Constantly Changing Interface Mess



youtube-cleanup

Love YouTube, but wish it was laid out differently? You’re not alone. Every time YouTube changes its interface millions protest, but YouTube rarely listens. Some people yell about it for a while, then move on. But not everyone. Some build browser extensions that replace the interface. Some build entire websites for browsing YouTube videos. And some use YouTube’s own TV interface on their desktop, avoiding the things they dislike about the site. Here are the best alternative YouTube interfaces out there. Hopefully one of them makes YouTube better for you. Unique YouTube Skin (Userscript) Videos are the reason you use...


Read the full article: 4 Alternatives To YouTube’s Constantly Changing Interface Mess



4 Alternatives To YouTube’s Constantly Changing Interface Mess



youtube-cleanup

Love YouTube, but wish it was laid out differently? You’re not alone. Every time YouTube changes its interface millions protest, but YouTube rarely listens. Some people yell about it for a while, then move on. But not everyone. Some build browser extensions that replace the interface. Some build entire websites for browsing YouTube videos. And some use YouTube’s own TV interface on their desktop, avoiding the things they dislike about the site. Here are the best alternative YouTube interfaces out there. Hopefully one of them makes YouTube better for you. Unique YouTube Skin (Userscript) Videos are the reason you use...


Read the full article: 4 Alternatives To YouTube’s Constantly Changing Interface Mess