Posts Tagged ‘Web’

Popular HTTP response status code in the web development

The popular HTTP response code with simple description:

2xx Success

200 OK

Good status, server return successful

3xx Redirection

301 Moved Permanently

Permanently redirect to new URL, better in the SEO (Recommend)

302 Found

Temporary redirect to new URL(Default)

304 Not Modified

The request resource has not been modified since last requested. Browser will load the content from cached (IE may not)

Read the rest of this entry »

 

Share my online tools

I developed some online tools for my self. share at here now .

Existing features:

  • Hashing Functions
  • Base64 Encode and Decode
  • Password Generator
  • Syntax Highlighter

Planning:

  • CSS Compressor
  • JavaScript Encode and Decode

Online Tools Homepage:

http://tools.yctin.com/

 

[PHP] Web Proxy – PHProxy

PHProxy is free and open source web proxy application, under GNU General Public License (GPL) license.
It is no longer under active development, but still is a best.

PHProxy is a web HTTP proxy programmed in PHP meant to bypass firewalls and access otherwise inaccessible resources (i.e. blocked websites). If the server this script is run on can access a resource, so can you!

Quoted from PHProxy sourceforge project page

Read the rest of this entry »

 

jQuery Overview

jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.

All of the code is available in two formats:

  • Compressed (which allows you to have a significantly smaller file size) and
  • Uncompressed (good for debugging and to understand what is behind the magic).

jQuery is provided under the following MIT and GPL licenses.

Quoted from jQuery homepage

You can download jQuery from project home page.
http://jquery.com/