14 March 2014

Easily Share Your Home Wi-Fi With Friends



wifi-zone

Do you use a complicated password for your Wi-Fi network? You should. But that password can feel like a liability when letting trusted friends connect to your network. Well, it turns out there’s a simple and pain-free way to allow them to access your network without having to type anything. There’s also a fancy, newfangled way. Let me show you both. Simple Wi-Fi Sharing For Android Users Assuming your friends use Android, there’s a laughably simple and free way to share access to your Wi-Fi network with them: Generate a QR code for your network. When you click the link,...


Read the full article: Easily Share Your Home Wi-Fi With Friends



How to Check if an Email Address is Valid and Exists



How do you know if an email address exists or not? The easy option would be that you send a dummy mail to that email address, wait for an hour or so and if your message bounces, it is very likely that the particular email address does not exist. The approach works but wouldn’t it be nice if you could check any email address instantly without even sending that test message?


The other slightly technical option to verify an email address is by querying the mail server. You connect to the mail server through telnet (see video), enter your email address and the other email address that you are trying to verify. If the server response is an error code, the email address is probably not valid.


How to Check Email Addresses Instantly


Let me share an extremely simple method for checking if an email address is valid and exists or not.


Go to the login page of the email service and pretend that you no longer remember the password of your email account. The service will ask for your email address where they can send the password recovery instructions. Here if you enter an email address that does exist, the service is mostly likely to tell you that the particular user name does not exist. I have tested this with Google Apps, Yahoo Mail and Outlook (Hotmail) and the method works with them all.


Check Email Address


For Gmail and Google Apps Accounts


Go to Google’s password assistance page at http://ift.tt/KYAzLW and choose the I don’t know my password option. Enter the email address that you are trying to verify – it could be an @gmail address or a Google Apps address – and choose Continue. If that address is not valid, Google will throw an error saying No account found with that email address.


Alternatively, you can go to the Gmail Sign-up page at http://ift.tt/1d25puB and try creating a new Gmail account with the address that you are trying to verify. For valid email address, the error would say Someone already has that username.


For Outlook, Hotmail and Live.com Addresses


Go to http://ift.tt/1d25mPC, choose the I forgot my password option and enter the Outlook email address. You will get an error saying The Microsoft account is incorrect. for addresses that do not exist.


For Verifying Yahoo Email Addresses


Go to Yahoo’s account recovery page at http://ift.tt/1d25mPJ, enter the @yahoo.com email address that you are checking for validity and click the Next button. Yahoo will say We couldn’t match the Yahoo ID you entered with information in our database if the email address does not exist.


Related tutorial: How to Guess Someone’s Email Address




This story, How to Check if an Email Address is Valid and Exists, was originally published at Digital Inspiration on 14/03/2014 under Email, GMail, Internet

VLC Media Player Beta For Windows 8 Spotted In Microsoft’s Windows Store



vlc-player-windows-8

VLC media player has legions of fans. Now, it could get a few more to join its fan club. The beta version of VLC’s media player has been spotted in the Windows Store. VLC for Windows 8 is an experimental port of VLC media player for the WinRT platform. The download is supported on Windows 8.0 and 8.1, though there might be stability issues in this beta stage. Support for Microsoft’s Surface RT and Surface 2 is lacking for the moment, but is expected to arrive shortly. VLC for Windows 8 is the fruition of a Kickstarter campaign that was...


Read the full article: VLC Media Player Beta For Windows 8 Spotted In Microsoft’s Windows Store



Google Starts Encrypting Search, Slashes Storage Prices For Google Drive



Google-Encrypt-Search-China-Google-Drive-Price-Cut

There’s big news coming out of Mountain View as Google gears up to take on the governments as well as rival online storage companies like Dropbox. In what is being seen as a strong move to thwart Internet censorship and online privacy snoops, Google has started encrypting web searches made out of China. Before you scoff, this kind of security is not just for the paranoid, there are good reasons to encrypt your digital life. The Washington Post reports: The company says the move is part of a global expansion of privacy technology designed to thwart surveillance by government intelligence...


Read the full article: Google Starts Encrypting Search, Slashes Storage Prices For Google Drive



4 Classic Operating Systems You Can Access In Your Browser



old-os

Ever wonder what the operating systems of the past were like? Find out now, online, without the need to install anything. You can try Windows 1.0, Mac System 7, Amiga OS and DOS – along with a few games – without leaving your browser. Welcome to the world of online emulators. The history of computers is fascinating, but reading will only get you so far. If you really want to know what, say, Windows was like in 1985, you don’t need to find a computer from that age. A variety of enthusiasts have used existing emulators to offer classic systems...


Read the full article: 4 Classic Operating Systems You Can Access In Your Browser



Scrape Google Using Another Google Product



John Q. Public owns a website example.com and would like to get a list of all pages on his site that are indexed in Google search. He would also like to monitor his web page rankings in Google for particular search keywords vis-a-vis other rival websites.


There are powerful command-line tools like curl and wget that one can use to download Google search result pages automatically. The HTML pages can then be parsed using Python’s Beautiful Soup library or the Simple HTML DOM parser of PHP but these methods are too technical and involve coding. The other issue is that Google is very likely to temporarily block your IP address should you send them a couple of automated requests in quick succession.


Scrape Google Search Results


Web Scraping Google using Google Docs


If you ever need to extract data from Google search results, Google offers a free tool that might just do the job. It’s called Google Docs and since docs will be fetching Google search pages within Google’s own network, the scraping requests are less likely to get blocked.


The idea is simple. The Google Sheet will fetch and import Google search results using the built-in ImportXML function. It then extracts the page titles and URLs using XPath expressions and then grabs the favicons of the web domain using another Google’s own favicon converter.


You can further customize the Google Search results by changing the sort order – you can sort results by relevance or by date published – the results can be restricted to pages that were published in the last hour, week, month or year. The number of results appearing in search results can be modified as well.


To get started, open this Google sheet and choose File -> Make a copy to clone the sheet in your Google Drive. You can now play with the various parameters in cells that are highlighted in light blue color.


Spreadsheet Functions for Scraping Web Pages


Writing a scraping tool with Google sheets is simple and involve a few formulas and built-in functions. Here’s how it was done:


1. Construct the Google Search URL with the search query and sorting parameters. You can also use advanced Google search operators like site, inurl, around and others.



http://ift.tt/1fuqcXQ

2. Get the title of pages in search results using the XPath //h3 (in Google search results, all titles are served inside the H3 tag).



=IMPORTXML(STEP1, "//h3[@class='r']")

You can find the XPath of any element using Chrome Dev Tools

Find the XPath of any element using Chrome Dev Tools



3. Get the URL of pages in search results using another XPath expression



=IMPORTXML(STEP1, "//h3/a/@href")

4. All external URLs in Google Search results have tracking enabled and we’ll use Regular Expression to extract clean URLs.



=REGEXEXTRACT(STEP3, "\/url\?q=(.+)&sa")

5. Now that we have the page URL, we can again use Regular Expression to extract the website domain from the URL.



=REGEXEXTRACT(STEP4, "https?:\/\/(.[^\/]+)")

6. And finally, we can use this website with Google’s S2 Favicon converter to show the favicon image of the website in the sheet.



=IMAGE(CONCAT("http://ift.tt/ArJoPd", STEP5))

And now that you have the Google Search results inside the sheet, you can export the data as a CSV file, publish the sheet as an HTML page (and it will refresh automatically) or you can go a step further and write a Google Script that will send you the sheet as PDF daily.




This story, Scrape Google Using Another Google Product, was originally published at Digital Inspiration on 13/03/2014 under Google, Google Docs, Internet