Thursday 30 July 2015

How to Save your Gmail to Google Drive Automatically


Introducing Save Emails, a new Google Docs add-on that will help you easily save email messages and file attachments from Gmail to your Google Drive automatically. The emails threads are converted and saved as PDF files in Drive while the attachments are saved in their native format.

You can use the Google add-on to save images, videos, Office documents, project backups and everything else from Gmail to your Google Drive. It also supports the Gmail size search operator so if your mailbox is running out of space, use the add-on to quickly move the large file attachmetns to Drive and delete the corresponding email from Gmail.

Download Gmail Attachments & Emails to Google Drive

The YouTube video will help you get started in 2 minutes.

All you have to do is visually create a rule, similar to how your create filters in Gmail, and then specify a folder in your Google drive. The add-on runs in the background and will automatically download the matching emails to the corresponding Drive folder. You can choose to save the email message only, the included attachments or both.

The add-on runs every hour but if you would like to speed up things a bit, you can manually start the downloads as well. While you are inside the Google Sheet, go to Addons, Save Emails and Attachments and then choose Manage Rules. Now pick any of available rules that you have previously created and tap the Run button to instantly download the matching emails to your Google Drive.

Once an email thread is added to Google Drive, a label “Saved” is applied to the message in Gmail to indicate that the thread has been processed by the add-on and it won’t be processed in the next iteration.

Save Gmail Attachments to Google Drive

Download Save Emails

Internally, there’s a Google Script that is doing all the hard work. It connects to your Gmail, pulls the matching threads and saves them to Drive via the various Google Apps Script APIs.

The add-on is completely free but there’s a premium version as well that offers a few additional benefits. With premium, you can create unlimited number of mapping rules, the Gmails are saved to Drive at a much faster rate (within 10-15 minutes) and you get email support as well.

If you are wondering why use an add-on where you have services like Zapier or IFTTT that offer similar features, here’s a clue. The Save Emails add-on can process both new (incoming) email as well as old messages in your mailbox. It converts your email messages into high-quality, print-ready and searchable PDF files. And you can run the add-on manually to save emails on demand.


The story, How to Save your Gmail to Google Drive Automatically, was originally published at Digital Inspiration by Amit Agarwal on 30/07/2015 under GMail, Google Drive, Internet. via Digital Inspiration Technology Blog http://ift.tt/IEnkaM

Tuesday 28 July 2015

Moto X Style Impressions!



from Marques Brownlee http://www.youtube.com/watch?v=cqLMQCG5pCs
via IFTTT

Evernote Drops Email-to-Note for Free Accounts, Alternative


Your Evernote account has a unique and secret email address. Any email messages forwarded to this address are automatically saved as notes in your Evernote notebook. The feature has been around for a while and is particularly handy for quickly archiving email messages and included file attachments into Evernote that can be retrieved later from any device.

Earlier this month, Evernote made a little change. The Email to Evernote feature still exists but only if you have a premium account. From the support page:

After July 15, 2015, you can continue saving up to five more emails into Evernote. After you send your fifth email, you won’t be able to save any additional emails into Evernote until you’ve upgraded to Evernote Plus or Premium.

In the meantime, Evernote has introduced a new Email Clipper for sending your Gmail messages to Evernote but it only works inside desktop browsers. How do you send email messages to Evernote from a mobile device?

A good alternative is IFTTT. Assuming that you have activated the Evernote and Gmail channels in your IFTTT account, here are the 2 recipes that will help you email notes into Evernote but without having to upgrade to premium.

  • Recipe 1 – Forward any email message to trigger@recipe.ifttt.com with #Evernote in the subject line and it will create a note in your default Evernote notebook.
  • Recipe 2 – Apply the label Evernote to any email message inside Gmail and it will magically appear in your Evernote notebook via IFTTT.

You will however miss the option to create reminder notes via email nor can your redirect notes to different Evernote notebook based on the subject line.

See more Evernote Tips & Tricks


The story, Evernote Drops Email-to-Note for Free Accounts, Alternative, was originally published at Digital Inspiration by Amit Agarwal on 28/07/2015 under Evernote, Internet. via Digital Inspiration Technology Blog http://ift.tt/1DLM26x

Embedded Tweets can be Easily Faked


You can easily embed tweets in your website by adding a little HTML snippet to your site’s template. The embedded tweets are interactive in the sense that they’ve a follow button, they show live retweet counts, and you also use CSS to change the formatting of tweets.

Now CSS does help you control the tweet’s appearance but you may be surprised to know that it is also possible to change the other elements of an embedded tweet. For instance, you may modify the actual text of the tweet. The favorite & retweet counts can be altered as well. Let me illustrate that with an example:

This is the original tweet:

This is the same tweet, but altered with JavaScript:

Notice any difference? Well, there are quite a few.

The altered tweet uses a different font family, there’s minimal Twitter branding, the favorite & retweet numbers are made up, some extra words were appended to the tweet itself and the date has been replaced with custom text. And it is not a fake screenshot.

Embed Tweet

Also see: Learn Coding Online

How to Alter an Embedded Tweet

Twitter allows you embed tweets with JavaScript and when you take this route, you not only gain control over how the tweets are rendered but also over what’s rendered inside the tweet.

Here’s the complete JavaScript snippet that allows use to modify most of the elements of an embedded tweet.

<div id="tweet"></div>

<script src="https://platform.twitter.com/widgets.js"></script>

<script>
  twttr.ready(function() {

    twttr.widgets.createTweet(
      
      // Replace this with the Tweet ID
      'TWEET ID', document.getElementById("tweet"))
      .then(function(el) {

        var e = el.contentDocument;

        // Change the tweet text
        var html = e.querySelector(".Tweet-text");
        html.innerHTML = "[How-to Guide] " + html.innerHTML;

        // Hide the Follow Button
        e.querySelector(".FollowButton").style.display = "none";

        // Change the retweet count
        e.querySelector(".TweetAction--retweet .TweetAction-stat").innerHTML = "123";

        // Change the favorites count
        e.querySelector(".TweetAction--favorite .TweetAction-stat").innerHTML = "999";

        // Replace the date with text
        e.querySelector(".dt-updated").innerHTML = "Contact the author of this tweet at amit@labnol.org";
      });
  });
</script>

You pass the tweet ID (line #11) and also specify the DIV element where the tweet will be rendered.

After the tweet is rendered, you can use standard DOM methods to change the various inner elements based on class names. For instance, you can change the innerHTML property of the element with the Tweet-text class to modify the tweet text. Similarly, if you set the display property of class FollowButton to none, the follow button is hidden.

Fake tweets are known to have crashed markets so the next time you come across an embedded tweet with unbelievable retweets or favorites, it may be a good idea to verify the numbers.


The story, Embedded Tweets can be Easily Faked, was originally published at Digital Inspiration by Amit Agarwal on 28/07/2015 under Embed, Twitter, Internet. via Digital Inspiration Technology Blog http://ift.tt/1D8usyy

Monday 27 July 2015

Five OnePlus 2 Impressions!



from Marques Brownlee http://www.youtube.com/watch?v=91av8wCH7CI
via IFTTT

Friday 24 July 2015

GoPro Hero 4 Session Review!



from Marques Brownlee http://www.youtube.com/watch?v=xpc07Lbgrow
via IFTTT

Friday 17 July 2015

iPod Touch 2015 Review!



from Marques Brownlee http://www.youtube.com/watch?v=orPHNS-0CZI
via IFTTT

Wednesday 15 July 2015

'Darkode' goes dark: Police shut down infamous cybercrime marketplace


The forum was used by cybercriminals to buy and sell malicious software, stolen data and more. It was, says an official, the "most sophisticated English-speaking forum for criminal computer hackers in the world."









via CNET News http://ift.tt/1CExzOP

Gett revamps ride-hailing app with help from visually-impaired teen


Blind users can now order an on-demand ride by speaking to their smartphone, rather than having to rely on touch technology.









via CNET News http://ift.tt/1f4zgKj

Darkode cybercrime forum seized as police arrest 28 members


In a coordinated takedown, law enforcement agents around the world have teamed up to shut down the well-known cybercrime forum Darkode, pursuing 70 of its members and associates resulting in 28 arrests so far. In the US, the Department of Justice and... via Engadget RSS Feed http://ift.tt/1f4AbdD

Neil Young says his music is too good for streaming services


Neil Young's been touting the merits of high-resolution audio for some time now, and he's had enough of streaming services' quality. The singer is pulling his music from those subscription-based libraries, a move fellow artist Prince made just days a... via Engadget RSS Feed http://ift.tt/1CEwdn8

Watch the McLaren 675LT supercar get loose on the track in this beautiful video


I'm a sucker for a gorgeous video of a supercar being loud, bellowing smoke, and getting sideways on a track. (Who isn't?) Today, such a video comes courtesy of McLaren, which has posted three-odd minutes of gratuitous footage of a bright green 675LT doing the absolutely silly things on smooth asphalt that it was designed specifically to do.

The 675LT — introduced at Geneva earlier this year — is a hot, limited version of the workaday 650S that gets an extra 25 horsepower, special bodywork, and hardcore suspension tuning while shedding 100 kilograms (about 220 pounds). The "LT" in the name is an homage to the legendary F1 GTR Longtail, the rarest (and awesomest) variety of the already ridiculously rare F1 — only 10 were made, and of...

Continue reading…

via The Verge - All Posts http://ift.tt/1f4voce

Building a camera that could make it Pluto


New-horizons1
Feed-twFeed-fb

For decades after its discovery in 1930, Pluto looked like nothing more than a gray smudge in the abyss of space. We knew it was there — even knew its size and gravity — but, without better images, we could not answer seemingly basic questions about it. Was it pocked by craters? What was its atmosphere like?

Our understanding of the orb has slowly improved (with the Hubble Space Telescope's help), but this week it takes a cosmic step forward. On Tuesday morning, NASA's New Horizons probe zipped by Pluto and its dwarf moon, Charon. After a nine-year journey from Earth, New Horizons took hundreds of images in mere hours on Tuesday — images that will fill textbooks and museum exhibits for decades, as well as help scientists figure out how our solar system came to support life. Read more...

More about Space, Nasa, Camera, Dev Design, and Us World via Mashable http://ift.tt/1LantrJ

Scientists link DNA variations to major depression for the first time


For the first time, researchers have identified two genetic variants that predispose humans to major depressive disorder, according to a study published in Nature today. The finding is specific to Han Chinese women, so this isn't a universally relevant piece of information. Still, this discovery could help researchers get a handle on the biology of depression — in addition to enabling the identification of new drug targets.

Continue reading…

via The Verge - All Posts http://ift.tt/1JiqCzG

Neil Young is yanking his catalog from streaming services


Neil Young took to Facebook and Twitter today to announce that he's removing his music from all streaming services, a move he's blaming on their poor audio quality rather than any financial frustration. "I don't need my music to be devalued by the worst quality in the history of broadcasting or any other form of distribution. I don't feel right allowing this to be sold to my fans. It's bad for my music," said Young on Facebook. He has some skin in this particular game, of course: Young is the force behind the high fidelity Pono media player and digital music service, which was funded through Kickstarter and became available to the public this January.

Young is a passionate advocate for audio quality, but his decision isn't standing on...

Continue reading…

via The Verge - All Posts http://ift.tt/1f4tSGW

Watch a European Ariane 5 rocket launch two satellites into orbit


One rocket launch down (or up?), one to go.

The second rocket to take off today will be an Ariane 5, the main rocket of commercial European launch provider Arianespace. The mission dubbed VA224 is scheduled to take off at 5:42PM ET and will launch from the Guiana Space Port in French Guiana.

The Ariane 5 is carrying two important passengers. The first is the Star One C4, a communications satellite from Brazilian communication company Embratel. Star One C4 is equipped with 48 transponders to help enhance the transmission of telephone and television services in Brazil, as well as expand telecommunications services to other Latin American countries. The satellite will be deployed around 28 minutes after liftoff.

The Ariane 5 is scheduled...

Continue reading…

via The Verge - All Posts http://ift.tt/1J0X25W

These Amazon Prime Day deals veer into the bizarre


While everyone else is salivating over Kindles and Fire TV Sticks, we've uncovered the stranger side of Prime Day in the form of socks, Laffy Taffy and toilets.









via CNET News http://ift.tt/1Jioloh