Digital Inspiration Technology Blog: An Easy Way to Access Hulu from Outside the US

Friday, 9 November 2012

Digital Inspiration Technology Blog



Digital Inspiration is an award-winning how-to tech blog around all things related to computer software, web applications, mobile and personal productivity.



An Easy Way to Access Hulu from Outside the US

http://www.labnol.org/internet/watch-hulu-outside-us/26689/

Nov 9th 2012, 12:24



→Hulu.com is one of the best places on the web where you can watch movies and popular TV shows for free. All you need is a web browser with the Flash Player and you are good to go.Hulu at this is time is only available in US but there's an a new browser add-on called MediaNet that makes it dead-simple for anyone to access Hulu from anywhere in the world. Just install the extension and there's absolutely no configuration required.MediaNet is available for Firefox and Google Chrome. I was looking at the source code of the Chrome add-on and turns out that it merely changes the proxy server settings of your browser when you try accessing a Hulu video. Here's the relevant snippet:

function FindProxyForURL(url, host) {

var usa = ['hulu.com', 'netflix.com', 'pandora.com'];



var direct = ['assets.hulu.com', 'll.a.hulu.com', 'ads.hulu.com', 'stats.pandora.com', 'blog.netflix.com', 'nordicsblog.netflix.com', 'blog.pandora.com'];

for (var i = 0; i < direct.length; i++) {

if (host.indexOf(direct[i]) > -1) {

return 'DIRECT';

}

}



if (host.match(/audio.*\.pandora\.com/) || host.match(/const.*\.pandora\.com/) || host.match(/mediaserver.*\.pandora\.com/) || host.match(/cont.*\.pandora\.com/)) {

return 'DIRECT';

}



for (var i = 0; i < usa.length; i++) {

if (host.indexOf(usa[i]) > -1) {

return 'PROXY 50.116.59.63:80';

}

}

return 'DIRECT';

}

In addition to Hulu, the same add-on may also be used for accessing music site Pandora and movie-streaming site Netflix from outside the US. [via Reddit]Also see: How to Access Pandora Anywhere This story, An Easy Way to Access Hulu from Outside the US, was originally published at Digital Inspiration on 09/11/2012 under Hulu, Proxy, Internet.













You are receiving this email because you subscribed to this feed at http://blogtrottr.com



If you no longer wish to receive these emails, you can unsubscribe here:

http://blogtrottr.com/unsubscribe/crB/ZwM84m

FileHippo.com: uTorrent 3.2.2 Build 28500

FileHippo.com



FileHippo.com provides you with all the latest software news and updates to download from one site!



uTorrent 3.2.2 Build 28500

http://www.filehippo.com/download_utorrent/

Nov 9th 2012, 10:15



µTorrent is a small and incredibly popular BitTorrent client.

















You are receiving this email because you subscribed to this feed at http://blogtrottr.com



If you no longer wish to receive these emails, you can unsubscribe here:

http://blogtrottr.com/unsubscribe/crB/Fc67kD

FileHippo.com: AVG Free Edition 2013.0.2793 (32-bit)

FileHippo.com



FileHippo.com provides you with all the latest software news and updates to download from one site!



AVG Free Edition 2013.0.2793 (32-bit)

http://www.filehippo.com/download_avg_antivirus_32/

Nov 9th 2012, 05:29



AVG Anti-Virus Free Edition is trusted antivirus and antispyware protection for Windows available to download for free. In addition, the new included LinkScanner® Active Surf-Shield checks web pages for threats at the only time that matters - when you're about to click that link.

















You are receiving this email because you subscribed to this feed at http://blogtrottr.com



If you no longer wish to receive these emails, you can unsubscribe here:

http://blogtrottr.com/unsubscribe/crB/Fc67kD

FileHippo.com: Orbit Downloader 4.1.1.13

FileHippo.com



FileHippo.com provides you with all the latest software news and updates to download from one site!



Orbit Downloader 4.1.1.13

http://www.filehippo.com/download_orbit_downloader/

Nov 9th 2012, 05:13



Orbit Downloader, is a download manager specifically designed for the new generation Web (Web 2.0). You can use Orbit to download video/music/files from Myspace, YouTube, Imeem, Pandora, and Rapidshare, or on any site to make general downloading easier and faster.

















You are receiving this email because you subscribed to this feed at http://blogtrottr.com



If you no longer wish to receive these emails, you can unsubscribe here:

http://blogtrottr.com/unsubscribe/crB/Fc67kD

FileHippo.com: Comodo Internet Security 5.12.256249

FileHippo.com



FileHippo.com provides you with all the latest software news and updates to download from one site!



Comodo Internet Security 5.12.256249

http://www.filehippo.com/download_comodo/

Nov 9th 2012, 05:23



Comodo claim that their firewall is unique in that it passes all known leak tests to ensure the integrity of data entering and exiting your system. Comodo has put firewall through all kinds of sophisticated tests to ensure its firewall powerful enough to ward off these attacks with default settings. No other firewall has had to work this hard.

















You are receiving this email because you subscribed to this feed at http://blogtrottr.com



If you no longer wish to receive these emails, you can unsubscribe here:

http://blogtrottr.com/unsubscribe/crB/Fc67kD

FileHippo.com: BitTorrent 7.7.2 Build 28499

FileHippo.com



FileHippo.com provides you with all the latest software news and updates to download from one site!



BitTorrent 7.7.2 Build 28499

http://www.filehippo.com/download_bittorrent/

Nov 9th 2012, 05:05



BitTorrent is a torrent client for sharing data via the BitTorrent protocol. The software enables users to share, search, download and upload application, music, video, document, picture and other files. BitTorrent supports download of multiple files in parallel from different peers. For every download or upload the interface shows download and upl...

















You are receiving this email because you subscribed to this feed at http://blogtrottr.com



If you no longer wish to receive these emails, you can unsubscribe here:

http://blogtrottr.com/unsubscribe/crB/Fc67kD

Digital Inspiration Technology Blog: Undocumented Gmail Search Operator Locates all the Emails with Large Attachments

Digital Inspiration Technology Blog



Digital Inspiration is an award-winning how-to tech blog around all things related to computer software, web applications, mobile and personal productivity.



Undocumented Gmail Search Operator Locates all the Emails with Large Attachments

http://www.labnol.org/internet/gmail-size-search/26669/

Nov 9th 2012, 07:58



Search Gmail messages by Size using the undocumented "size" operatorWondering what email messages are eating up all the Gigabytes of space that you have in your Gmail mailbox? There are Google Scripts and external web apps that let you discover all the space-hogging email attachments but you don't need them anymore. →Gmail supports an undocumented "size" search operator that will let you quickly find all the big emails in the mailbox whose size exceeds a particular threshold. The search syntax is:size:[size in bytes]To give a real example, a Gmail search query like size:5242880 will list all big emails who size is 5 MB or greater while size:10485760 list messages that are bigger than 10 MB.The size operator requires size in bytes (1 MB = 1048576 Bytes) but to make things a bit easier to remember, you can also think of the number as 1 followed by 6 zeros.Once you have spotted the large emails attachments that are taking too much space, apply the #googleDrive label to directly save those attachments to Google Drive before deleting them from your Gmail mailbox.The "size" operator was first discovered by TechSmog [via Lifehacker.com] This story, Undocumented Gmail Search Operator Locates all the Emails with Large Attachments, was originally published at Digital Inspiration on 09/11/2012 under GMail, Internet.













You are receiving this email because you subscribed to this feed at http://blogtrottr.com



If you no longer wish to receive these emails, you can unsubscribe here:

http://blogtrottr.com/unsubscribe/crB/ZwM84m

Newest Items :