This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>local.tivohme.bonjour</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/bin/dns-sd</string> | |
<string>-R</string> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bypass BBC iPlayer Geo Blocking. | |
function FindProxyForURL(url, host) | |
{ | |
if (shExpMatch(url, "*.bbc.co.uk/iplayer*") | |
|| shExpMatch(url, "*.bbc.co.uk/mediaselector*") | |
|| shExpMatch(url, "*/locator*") ) | |
{ | |
return "PROXY 81.27.79.181:8080"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bypass Channel 4 Geo Blocking. | |
function FindProxyForURL(url, host) | |
{ | |
if (dnsDomainIs(host, "ais.channel4.com")) | |
{ | |
return "PROXY 81.27.79.181:8080"; | |
} | |
else | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bypass ITV Geo Blocking. | |
function FindProxyForURL(url, host) | |
{ | |
if (dnsDomainIs(host, "mercury.itv.com")) | |
{ | |
return "PROXY 81.27.79.181:8080"; | |
} | |
else | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bypass CBC Player Geo Blocking. | |
function FindProxyForURL(url, host) | |
{ | |
if (shExpMatch(url, "*.cbc.ca/video/js/SWFVideoPlayer.js") | |
|| shExpMatch(url, "*.theplatform.com/f/h9dtGB/*")) | |
{ | |
return "PROXY 142.4.192.39:8080"; | |
} | |
else |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bypass CTV Blocking. | |
// Circumventing Geo Blocking Requires Adding A Header | |
// Firefox Plugin Or Using SOCKS 5 Proxy. | |
function FindProxyForURL(url, host) | |
{ | |
if (dnsDomainIs(host, ".esi.ctv.ca") | |
|| dnsDomainIs(host, ".esi2.ctv.ca")) | |
{ | |
return "SOCKS 7207.96.241.74:38261"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Filename: CTABusTracker.sh | |
## Author: Joel Fernandez | |
## Date: | |
## Description: Command Line Utility for CTA's Bus Tracker | |
main() | |
{ | |
############################## | |
## Internal Field Separator ## | |
############################## | |
SAVEIFS=$IFS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Filename: shapesNestedWhileLoops | |
// Author: Joel Fernandez | |
// Date: 03.15.13 | |
// Textbook: Java Programming (6th Edition) - Joyce Farrell | |
// Chapter 6: Looping | |
// Description: Java exercise in creating shapes and formatting numbers through the use | |
// of nested While loops. | |
public class shapesNestedWhileLoops | |
{ | |
public static void main(String[] args) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Filename: shapesNestedForLoops | |
// Author: Joel Fernandez | |
// Date: 03.15.13 | |
// Textbook: Java Programming (6th Edition) - Joyce Farrell | |
// Chapter 6: Looping | |
// Description: Java exercise in creating shapes and formatting numbers through the use | |
// of nested For Loops. | |
public class shapesNestedForLoops | |
{ | |
public static void main(String[] args) |