Google Calendar Gets Smarter, Helps You Stay Up To Date

Google Calendar Gets Smarter, Helps You Stay Up To DateThe folks over at Google have been doing pretty well when it comes to making sure that you are able to keep track of all your appointments in a precise and concise manner, thanks to the introduction of Google Calendar for quite some time already. Needless to say, it makes perfect sense then, for the Google Calendar team to deliver updates so that it will be even more powerful and to help you make your life all the more efficient. Having said that, the new bunch of improvements have arrived just in time, especially when you consider that most of us would be experiencing a rather crazy holiday season that is set to happen in slightly more than a couple of weeks’ time.

For instance, you can now have a far more precise idea on knowing where you would go with Google Maps autocomplete, where creating events in Google Calendar would be a whole lot more speedy. Since Google Calendar will ensure that addresses get the autocomplete treatment even as you type, you would be able to save time when adding locations to your events. Apart from that, your mates can just click on the “map” link before heading out, hence arriving at the correct destination. [Press Release]

  • Follow: Computers, , , ,
  • Google Calendar Gets Smarter, Helps You Stay Up To Date original content from Ubergizmo.

        



    Go Invisible with Gmail Chat

    This article was written on February 25, 2008 by CyberNet.

    invisible gmail chat For the longest time, the one thing I’ve liked about Windows Live Messenger over Google Talk is the option to “Appear Offline.”  There are times when I’ve wanted to set myself to “offline” in Google Talk without actually being offline for those instances when I’m really trying to focus and get something done and I don’t want to be interrupted. Up until recently, the only thing I could do was set my status to “Busy” but even then, people still talked to me to see if I really was busy. Google has partially solved my dilemma by adding an “invisible” option.

    This new “invisible” option is found only in Gmail Chat (not Google Talk) in the drop-down menu with the other status options. Once you click “invisible,” you will appear offline to your contacts but you’ll still be able to see who is online. You’ll also be able to talk to someone even with your status set to invisible, which is nice.

    For those of you who only use Google Talk and would like a similar feature available to you, there’s a Freeware application called gAlwaysIdle which will allow you to always appear Idle. It’s not exactly the same as being invisible because you’ll still appear online, but it shows that you’re away from your computer. The only downside is that at this point, it’s available only for Windows. A screenshot below shows the menu options you’ll see once you install gAlwaysIdle.

    galwaysidle

    Source: Lifehacker and ZDNet

    Copyright © 2013 CyberNetNews.com

    Helpful Tip: Using Gmail as a Journal…

    This article was written on May 16, 2008 by CyberNet.

    use gmail for journal.pngA bout a week ago, I came across an article over at Webware about using Gmail as a baby book. Rafe Needleman pointed out how setting up a new Gmail account would be a really simple solution for parents who want to keep a record of what is going on in their children’s lives. He said, “although it’s not elegant, it sure is easy.” With that in mind, we thought about how easy it would be to take this idea a little further and to use Gmail as a journal.

    The easiest way to go about doing this would probably be to create a new email address for your journal so that its sole purpose is to keep a record of what’s going on in your life. Think about how simple yet really organized this could be. You could create labels for each month of the year so that later on, it’ll be easy to go back and read entries from a certain date. You could even create a simple filtering system (learn how here). Including important pictures from events that happened in your life would be a cinch and then they’d always be there for later reference.

    One benefit of using Gmail is that your whole journal is searchable. Want to find the entires where you talked about a wedding you went to months or years ago? Just search for wedding and Gmail will pull up every “message” that had the word wedding in it. Another benefit is that it’s private. You don’t have to worry about anybody snooping into your business because the messages are only there for you to see, unless of course you wanted to share it, and then you could easily forward the entry on to someone.

    Again, life Rafe said, it’s not that this is an elegant solution for keeping a journal, but it is very simple to do.

    Copyright © 2013 CyberNetNews.com

    Using VBScript to Send Emails with Gmail

    This article was written on August 20, 2010 by CyberNet.

    I normally don’t post scripts and batch files that I use, but I wanted to share this particular script because I use it all the time. VBScript files are nice because typically they are simply coded, and work across virtually all Windows-powered machines. You just have to throw the code in a .VBS file, and from there it can be executed in your batch files very easily.

    The contents of the file are below, and once set up you’ll be able to send emails using any Gmail account straight from the command prompt. In the code there are two things that you need to configure: the email address and password of the account you want to send as. When executing the VBScript file you simply pass it three parameters: recipient email address, subject line, and the body of the email. There is an optional fourth parameter that it accepts which is the file path to a file you want to attach to the email. That’s it.

    Why do I use this all the time? I can easily call this file from other scripts or batch files so that it sends me an email notification whenever something completes. Sometimes I use it just to have a nice history of when some of my batch files complete (or to verify that they even ran), but other times I will insert “dynamic” text into the body of the email. For example, if an error occurred I may have it put the error message in the body of the email. An alternative to that would be attaching a log file using the optional fourth parameter.

    The nice thing about the way this script works is that you’ll be able to send emails without setting up an SMTP server on your machine. Of course you won’t be able to send out mass quantities of emails since Google limits you to around 500 sent messages per day, but that should be more than adequate for personal purposes.

    Let’s take a look at what the code looks like…

    Code begins here:

    'Usage: cscript sendemail.vbs <email_recipient@example.com> "<subject_line>" "<email_body>" "<optional:email_attachment_path>" 'Ex. No attach: cscript sendemail.vbs example@gmail.com "test subject line" "test email body" 'Ex. W/ attach: cscript sendemail.vbs example@gmail.com "test subject line" "test email body" "c:\scripts\log.txt" '*********** '****CONFIGURE THE FROM EMAIL ADDRESS AND PASSWORD Const fromEmail = "email_sender@gmail.com" Const password = "password" '****END OF CONFIGURATION '*********** Dim emailObj, emailConfig Set emailObj = CreateObject("CDO.Message") emailObj.From = fromEmail emailObj.To = WScript.Arguments.Item(0) emailObj.Subject = WScript.Arguments.Item(1) emailObj.TextBody = WScript.Arguments.Item(2) If WScript.Arguments.Count > 3 Then emailObj.AddAttachment WScript.Arguments.Item(3) End If Set emailConfig = emailObj.Configuration emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.gmail.com" emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 465 emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = true emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/sendusername") = fromEmail emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/sendpassword") = password emailConfig.Fields.Update emailObj.Send Set emailobj = nothing Set emailConfig = nothing

    ^ That is the end of the code (Download the Script) ^

    You can see that the code starts with example usage of how you can call the VBScript file. Given the nature of executing VBScript files you may or may not have to include the “cscript” portion, but in general you are always better off having it there to ensure that it will run on your computer just fine. Here’s an example of what it looks like when being executed from the command prompt:

    vbscript send email gmail.png
    Note: The “sendemail.vbs” file was located at the root of the C Drive when I ran this.

    Armed with this script you should be able to take it and throw it into batch files, or call it from anywhere that can execute things via the command line. One thing you may want to consider is creating an extra email account just for sending these emails. Not only will that keep your “sent mail” clean in your primary Gmail account, but it will also be a bit more secure since the password for the sender account is stored in plain text within the script.

    Here is a nicely formatted version of the VBScript from above that you can download, and have all ready to go for you (after you fill in the two email/password inside the script file, of course):

    Download a Zipped Copy of the VBScript

    Copyright © 2013 CyberNetNews.com

    Gmail For iPad Updated With Full-Screen Reading

    Gmail For iPad Updated With Full Screen Reading

    After making several major updates to Gmail on the web, Google today rolled out an updated Gmail for iPad app. It brings a host of new features, including but not limited to full-screen reading. That’s right, the app is now capable of allowing users to read their emails in full-screen on the iPad. The visuals have also been tweaked for iOS 7, making the app more visually compatible with Apple’s latest and greatest iOS firmware.

    The Gmail for iPad app now has a slimmer navigation bar on the left, which can be used to switch between accounts as well as various inbox categories in landscape view. For each category a new message counter will be displayed, this will help users get through their email faster, as they’ll know from one glance how many emails are unread across the different categories. The new left hand navigation bar appears in landscape mode and allows easy switching with just a single tap. Holding the iPad in portrait mode enables users to read their emails in full-screen. That’s not all, users will also be able to compose new messages in full-screen. The updated Gmail for iPad app receives the usual slew of bug fixes and performance improvements as well, which is said to improve scrolling in the app. Gmail for iPad is available as a free download from the iTunes App Store.

  • Follow: Apple, Tablets, , ,
  • Gmail For iPad Updated With Full-Screen Reading original content from Ubergizmo.

        



    Gmail Attachments Can Now Directly Be Saved To Google Drive

    Gmail Attachments Can Now Directly Be Saved To Google Drive

    Google has announced yet another new feature for Gmail today, its the ability to save documents directly to Google Drive from within the email itself. Just yesterday Gmail was updated to supercharge “quick action” buttons, which now support a variety of different services like OpenTable, Google Offers and more. The ability to save documents directly to Google Drive eliminates the need for downloading attachments on the device if you don’t want to, and since attachments are stored in the cloud, they’re easily accessible any time through any device, be it a computer, phone or tablet.

    Emails in the Gmail inbox will now show previews of attached files at the bottom, everything from photos and videos to spreadsheets and PDFs will be previewed. Clicking on the preview will open a full screen view of the document in Gmail, here users can search for a particular phrase, browse through multiple attachments to just take a a quick peek at a file. Hover the cursor over the preview and a Drive button will appear, clicking on it will save the file to Google Drive. Those who want to download the attachments on their computer can click the arrow button. This new attachment experience will be rolling out over next week to Gmail desktop users.

  • Follow: Web, , ,
  • Gmail Attachments Can Now Directly Be Saved To Google Drive original content from Ubergizmo.

        



    Gmail bakes in Google Drive uploads for attachment boost

    Google has fully baked Google Drive integration into Gmail, aiming to circumvent traditional attachment downloads by saving them straight to its chunk of cloud storage. The functionality, Google says, effectively bypasses the usual download/upload routine of receiving email attachments and then storing them to the cloud, with a one-click shuttling from email to Drive and […]

    Gmail adds more quick action buttons to subject lines

    Google today announced its “quick action buttons” for Gmail have expanded to more Google and third-party developers. If you’ve never seen these, quick action buttons are little grey rectangular buttons that appear inline with subject lines in your inbox which you can click or touch to take some sort of action on the contents. For […]

    Gmail’s New Buttons Let You Take Care of Business Without Opening Email

    Gmail's New Buttons Let You Take Care of Business Without Opening Email

    Anything Google does to prevent my needing to dive into my email to perform simple tasks gets a big old thumbs up, which is why I’m stoked (*STOKED*) that Gmail is getting a new set of "quick action" buttons that’ll let you do more directly from your inbox subject lines, without actually opening up an email.

    Read more…


        



    Gmail ‘Quick Action’ Buttons Now Support Dropbox, OpenTable And More

    Gmail Quick Action Buttons Now Support Dropbox, OpenTable And More

    Google announced today that it has supercharged the Gmail “quick action” buttons. These buttons appear in your inbox alongside the emails, and they have now gained one-click access to a host of services such as Dropbox, OpenTable, Google Offers, Seamless and more. So users can now rate and review restaurants they ordered from through Seamless and even modify OpenTable reservations straight from their Gmail inbox, without actually having to open an email. The quick action buttons can also be used to view YouTube and Vimeo videos, open Dropbox folders and save promotions from Google Offers.

    The buttons can also be used to open Google Docs, Sheets and Slides that have been shared with a user. Checking real-time flight status, double checking flight details and even RSVP’ing to events is made possible by quick action buttons. The list of services supported by quick action buttons will continue to grow, and Google says that it will continue to add more buttons to make it easier for users to accomplish various tasks from within the inbox itself. Not only will the buttons make relevant emails stand out, particularly in inboxes that are crowded, they’ll also drive interaction for the services they’re linked to. Sounds like a win-win, doesn’t it?

  • Follow: Web, ,
  • Gmail ‘Quick Action’ Buttons Now Support Dropbox, OpenTable And More original content from Ubergizmo.