Skip to main content

Posts

UltraSurf Proxy for UnBlocking Websites

Today Internet privacy with anonymous surfing and browsing is very needed thing. hiding IP addresses and locations, cleaning browsing history, cookies is a must.To do this a very safe method is to use Ultra Surf. some features of  Ultra Surf. http://ultrasurf.us/download/u.zip 1,Privacy Protection 2,Strong Encryption and High Security 3,Support HTTPS Tunneling 4,Support All HTTP Based Protocols 5,Support Secure Data Uploading and Downloading Here is ip and port for this-172.0.0.1:3128 UltraReach uses advanced technology for encryption. All the contents are encrypted. No third party can detect what websites you are visiting. UltraSurf uses advance proxy technology. It will hide your real IP from all websites.UltraSurf provides users with state-of-the-art internet technology to break through firewall safely. It is a popular anti-censorship software, not a Trojan or virus. Some anti-virus software companies classify UltraSurf as a Trojan software simply because UltraSurf is able to...

Public DNS

Free Public DNS Server Service provider: ScrubIt Public dns server address: * 67.138.54.100 * 207.225.209.66 Service provider:OpenDNS OpenDNS free dns server list: * 208.67.222.222 * 208.67.220.220 Service provider: vnsc-pri.sys.gtei.net Public Name server IP address: * 4.2.2.1 * 4.2.2.2 * 4.2.2.3 * 4.2.2.4 * 4.2.2.5 * 4.2.2.6 i recommend OpenDNS  which is faster.Change your dns which your ISPprovide ,any one above.find great diffrence in speed.

Linux Redirection & Pipes

Features: 1. Ability to control input and output Input redirection '<': 1. cat ': 1. cat 123.txt > onetwothree.txt Note: Default nature is to: 1. Clobber the target file 2. Populate with information from input stream Append redirection '>>': 1. cat 123.txt >> numbers.txt - creates 'numbers.txt' if it doesn't exist, or appends if it does 2. cat 456.txt >> numbers.txt Pipes '|': Features: Connects the output stream of one command to the input stream of a subsequent command 1. cat 123.txt | sort 2. cat 456.txt 123.txt | sort 3. cat 456.txt 123.txt | sort | grep 3