leetcode-535-encode-and-decode-tinyurl

TinyURL is a URL shortening service where you enter a URL such as https://leetcode.com/problems/design-tinyurl and it returns a short URL such as http://tinyurl.com/4e9iAk.

Design the encode and decode methods for the TinyURL service. There is no restriction on how your encode/decode algorithm should work. You just need to ensure that a URL can be encoded to a tiny URL and the tiny URL can be decoded to the original URL.

Read More

了解web及网络基础

在浏览器中输入URL后 信息会被送往某处,Web浏览器从Web服务端获取文件资源等信息,从而显示出web页面。
像这种通过发送请求获取服务器资源的web浏览器,都可以被称为客户端。web使用一种名为HTTP的协议作为规范完成从客户端到服务器端一系列的运作流程。

Read More

iis学习笔记1

IIS的架构介绍

微软Internet信息服务(Internet Information Service, IIS),是在Windows平台上提供的一款微软官方的web容器服务。iis支持HTTP/FTP协议的web应用程序;同Apache类似,也需要有Tomcat的参与才可以运行JSP技术的动态网站;IIS也需要ASP.net平台的配合才能运行ASP.net的web应用程序。

Read More