We will present here a list the most important search engines that will help you in obtaining traffic to your site. Google and Yahoo are important, since most of the traffic come from there. Some people think that is also important to be listed with the rest of search engines too, so here is the list. Some of search engines use information database from other engines.
http://www.google.com
http://www.yahoo.com
http://www.askjeeves.com
http://www.alltheweb.com/
http://www.hotbot.com/
http://www.teoma.com/
http://www.altavista.com/
http://www.looksmart.com/
http://www.lycos.com/
http://search.msn.com/
http://search.netscape.com/
http://www.gigablast.com/
http://dmoz.org/
http://www.about.com/
http://www.excite.com/
http://www.iwon.com/
http://www.webwombat.com.au/
http://www.webcrawler.com/
http://www.pepesearch.com/
http://www.aeiwi.com/
http://www.links2go.com/
http://www.searchking.com/
http://www.qango.com/
http://www.dogpile.com/
http://www.freefind.com/
http://go.com/
http://www.beaucoup.com/
http://a9.com
http://vivisimo.com/
http://www.kartoo.com/ -nice
http://www.ixquick.com/
http://www.profusion.com
http://www.ditto.com/ - image search
http://www.allsearchengines.com/
Tuesday, May 15, 2012
TCP View
TCP View is one of my “must have” utilities. I use this quite often to watch connections or for troubleshooting. Everyone should have this on their computer. It is one of the best security tools you can use. TCP View will instantly show you who is connected to you and who you are connected to. If you see something unusual in the list, you should check into it. I would recommend for most usage to uncheck the “show unconnected endpoints” for any troubleshooting purposes. This will then show only the current connections happening, you can watch them connect and disconnect as they happen.

TCP View Information Page and Download.
TCP View Information Page and Download.
Quick and Easy Lists
A straight forward easy list maker. Have a thought in your head and want to quickly get it down so you don’t forget. Here is a simple 40k no-frills program to quickly manage a list. All data is written to a text file for easy printing or copying.
The text file where the list is written. The text file is always created in the same folder as the program.

Download Quick List
The text file where the list is written. The text file is always created in the same folder as the program.
Download Quick List
Monday, May 14, 2012
Blocking based on a specific IP with htaccess
Do you have a certain IP address or a (handful) that is always causing you problems on your site? Redirect them with this easy few lines of code in your .htaccess file. Replace the xx’s with the IP numbers.
RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_ADDR} ^xx\.xx\.xx\.xx$ [OR]
RewriteCond %{REMOTE_ADDR} ^xx\.xx\.xx\.xx$
RewriteRule .* http://en.wikipedia.org/wiki/404_error [R,L]
AcroRd32.exe Prevent Acrobat Reader from staying open
When you visit a website that links to a pdf, then close the pdf file, the AcroRd32.exe will not close, it will sit open, using your resources and memory on your PC until you restart.
This simple fix will disable that function of Acrobat reader and take back the memory.

3) Click on “Internet”, then uncheck “Display PDF in browser”.

4) Hit OK
Now AcroRd32.exe will close when you close the reader, not stay open forever!
This simple fix will disable that function of Acrobat reader and take back the memory.
- Open Acrobat Reader
- Choose “Edit”, then “Preferences”
3) Click on “Internet”, then uncheck “Display PDF in browser”.
4) Hit OK
Now AcroRd32.exe will close when you close the reader, not stay open forever!
Quick edit for your hosts file
Open notepad and paste in the code below, then save as hosts.vbs and save it inside your windows directory.
Then all you need to do is type start -> run and type “hosts.vbs” and it will fire up your windows hosts file inside notepad
Then all you need to do is type start -> run and type “hosts.vbs” and it will fire up your windows hosts file inside notepad
Set Sh = WScript.CreateObject("WScript.Shell")
On Error Resume Next
sOStype = Sh.RegRead(_
"HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions\ProductType")
If Err.Number<>0 Then
Wscript.Echo " This doesn't appear to be an NT-like operating system;" _
& vbcrlf & "on Win9x use sysedit or msconfig."
Else
Set FSO = CreateObject("Scripting.FileSystemObject")
dirConfPath = "%SYSTEMROOT%\System32\"
On Error Resume Next
Sh.Run "Notepad " & dirConfPath & "drivers\etc\hosts"
End If
Wednesday, May 9, 2012
PHP Redirect Code
100 => "HTTP/1.1 100 Continue",
101 => "HTTP/1.1 101 Switching Protocols",
200 => "HTTP/1.1 200 OK",
201 => "HTTP/1.1 201 Created",
202 => "HTTP/1.1 202 Accepted",
203 => "HTTP/1.1 203 Non-Authoritative Information",
204 => "HTTP/1.1 204 No Content",
205 => "HTTP/1.1 205 Reset Content",
206 => "HTTP/1.1 206 Partial Content",
300 => "HTTP/1.1 300 Multiple Choices",
301 => "HTTP/1.1 301 Moved Permanently",
302 => "HTTP/1.1 302 Found",
303 => "HTTP/1.1 303 See Other",
304 => "HTTP/1.1 304 Not Modified",
305 => "HTTP/1.1 305 Use Proxy",
307 => "HTTP/1.1 307 Temporary Redirect",
400 => "HTTP/1.1 400 Bad Request",
401 => "HTTP/1.1 401 Unauthorized",
402 => "HTTP/1.1 402 Payment Required",
403 => "HTTP/1.1 403 Forbidden",
404 => "HTTP/1.1 404 Not Found",
405 => "HTTP/1.1 405 Method Not Allowed",
406 => "HTTP/1.1 406 Not Acceptable",
407 => "HTTP/1.1 407 Proxy Authentication Required",
408 => "HTTP/1.1 408 Request Time-out",
409 => "HTTP/1.1 409 Conflict",
410 => "HTTP/1.1 410 Gone",
411 => "HTTP/1.1 411 Length Required",
412 => "HTTP/1.1 412 Precondition Failed",
413 => "HTTP/1.1 413 Request Entity Too Large",
414 => "HTTP/1.1 414 Request-URI Too Large",
415 => "HTTP/1.1 415 Unsupported Media Type",
416 => "HTTP/1.1 416 Requested range not satisfiable",
417 => "HTTP/1.1 417 Expectation Failed",
500 => "HTTP/1.1 500 Internal Server Error",
501 => "HTTP/1.1 501 Not Implemented",
502 => "HTTP/1.1 502 Bad Gateway",
503 => "HTTP/1.1 503 Service Unavailable",
504 => "HTTP/1.1 504 Gateway Time-out"
Subscribe to:
Posts (Atom)