- 浏览: 57477 次
- 性别:
- 来自: 广州
最新评论
-
Joson_Coney:
11.
while( (*strDest++ = *strSr ...
c++笔试题汇总 -
Joson_Coney:
③ 1.
int func(x)
{
int countx = ...
c++笔试题汇总 -
Joson_Coney:
链表反向1:
#include <cstdlib&g ...
c++笔试题汇总
文章列表
( From: http://developer.apple.com/internet/webcontent/iframe.html )
As web sites become more and more like traditional applications, the call-response-reload model used in HTTP transactions becomes increasingly cumbersome. Instead of delivering a single dynamic page, the DHTML or JavaScript develop ...
HTTP multipart/form-data 上传方式说明
文章分类:互联网 转载自:http://blog.csdn.net/joedan0104/archive/2009/11/25/4872338.aspxhttp上传文件方面的功能使用的协议是rfc1867 (http://www.ietf.org/rfc/rfc1867.txt) 为 http 协议。客户端的浏览器,如 Microsoft IE, Mozila, Opera 等,按照此规范将用户指定的文件发送到服务器。服务器端的网页程序,如 php, asp, jsp 等,可以按照此规范,解析出用户发送来的文件。Microso ...
【转】HTTP协议报文格式
- 博客分类:
- web开发
(From: http://book.51cto.com/art/200902/109036.htm)(与我所看到的报文略有不同 (form表单post提交,multipart/form-data),这篇文章是Unix下C编程)
接下来我们看看HTTP协议(Hypertext Transfer Protocol――超文本传输协议)浏览器端(客户端)向WEB服务器端访问页面的过程和HTTP协议报文的格式。
基于HTTP协议的客户机访问包括4个过程,分别是建立TCP套接字连接、发送HTTP请求报文、接收HTTP应答报文和关闭TCP套接字连接:
1. 创建TCP套接字连接
客户端与W ...
( From: http://www.javascriptkit.com/dhtmltutors/domready.shtml)( Crazy implementation with pure javascript. Just in order to take place of " $(document).ready(function(){...});".......)
Relying on DOM readiness to invoke a function (instead of window.onload)
One of the most common event ...
(From: http://www.simple-talk.com/dotnet/asp.net/calling-cross-domain-web-services-in-ajax/)( Joson: Here is the most excellent article about cross-domain http request, so far as I searched. And some helpful comments attached. Before reading this article I've thought about dynamic script tag. ...
http://caniuse.com/#
HTTP Status Code
- 博客分类:
- web开发
(From: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html)part of Hypertext Transfer Protocol -- HTTP/1.1RFC 2616 Fielding, et al.
10 Status Code Definitions
Each Status-Code is described below, including a description of which method(s) it can follow and any metainformation required in the re ...
引用> 3 in [1,2,3,4]
true
> -1 in [1,2,-1,-2]
false
testing negative number, it always returns false, no matter this number is actually in the array.
Directory permissions
- 博客分类:
- 操作系统
(Cut From: http://articles.techrepublic.com.com/5100-10878_11-1047531.html )Directory permissionsPermissions for directories aren't exactly the same as they are for files. Here are some typical permissions required on directories:
Execute permission is required for a user to cd into a directory.
R ...
今天跑了一个程序,用upnp在路由器上循环打开新的端口映射,想测试这路由器最多能开几个映射。
测试结果记录如下:Environment:
Router: TL-R410
Original Ports: 8 // 8 ports have existed in the upnp port mapping before testing.
OS: Debian 2.6
Server: nodejs v0.2.0 (modified)
Software Meta:
Language: javascript
Protocol: UPNP
Test Info.:
Be ...
(转)UPNP协议细节
- 博客分类:
- web开发
(From: http://www.cnblogs.com/semo/archive/2008/07/21/1247950.html)UPNP的全称是 Universal plug-and-play( 通用即插即用).UPnP 是针对智能家电、无线设备以及各种外观尺寸的个人电脑的普遍对等(peer-to-peer)网络连接而设计的一种架构。它旨在为家庭 ...
Node / v8 1gb memory limit?(From google group: nodejs@googlegroup.com)
From: Bert Belder <bertbel...@gmail.com>
Date: Tue, 24 Aug 2010 15:29:25 -0700 (PDT)
Local: Tues, Aug 24 2010 6:29 pm
Subject: Node / v8 1gb memory limit?
For some reason my node application never us ...
http://www.kernel.org/doc/man-pages/
April 1, 2010
Writing Daemons in Javascript with node.JS
At some point, while developing a web-framework with node.js, I thought it would be nice if I could create Daemons in Javascript(no wrappers!). So I've created this very simple module for node.js. It's called daemon.node. Basically, it ...
用openssl编写ssl,tls程序实例
2008年12月02日 星期二 16:17
◆ 用openssl编写ssl,tls程序 作者:yawl(yawl@nsfocus.com) 日期:2000-8-15 一:简介: ssl(secure socket layer)是netscape公司提出的主要用于web的安全通信标准,分为2.0版和3.0版.tls(transport layer security)是ietf的tls工作组在ssl3.0基础之上提出的安全通信标准,目前版本是1.0,即rfc2246.ssl/tls提供的安全机制可以保证应用层数据在互联 ...