public void ProcessRequest(HttpContext context) { context.Response.Clear(); context.Response.Buffer = true; /...
分类:
Web程序 时间:
2014-07-20 09:04:44
阅读次数:
178
关于Vertex Array Objects(VAOs), Vertex
Buffer Objects(VBOs), Vertex and Fragment Shaders的概念还是看官方说明理解的好!
The OpenGL 3.2 core specification removes the majority of the fixed function pipeline previou...
分类:
其他好文 时间:
2014-07-19 23:31:48
阅读次数:
241
转载请包含网址:http://blog.csdn.net/pathuang68/article/details/7351317一、SurfaceSurface就是“表面”的意思。在SDK的文档中,对Surface的描述是这样的:“Handle onto a raw buffer that is be...
分类:
其他好文 时间:
2014-07-19 17:22:55
阅读次数:
288
pythonsocket服务端#!/usr/bin/python
#-*-coding:utf-8-*-
importsocket
importos,sys
host=‘127.0.0.1‘#监听的IP
port=60000#监听的端口
buffer=1024#接受的字节数
sock=socket.socket(socket.AF_INET,socket.SOCK_STREAM)#建立socket对象
sock.bind((host,port))#绑定IP和端..
分类:
编程语言 时间:
2014-07-19 16:21:30
阅读次数:
256
序列是python中最基本的数据,序列中每个元素分配一个序号,即元素的位置,也称为索引。python包含6中内置的序列,除了列表和元组,还有字符串、unicode字符串、buffer对象和xrange对象(后续介绍),今天且看列表和元组。1、列表和元组的区别(1)两者最大的区别在于能否对数..
分类:
其他好文 时间:
2014-07-19 02:38:26
阅读次数:
206
1. Cap'n Protoprotocol buffer的主要作者之一创建的新项目。其主页描述Cap'n Proto的性能比PB快很多。http://kentonv.github.io/capnproto/index.html2. FlatBufferFlatBuffers is a serial...
分类:
其他好文 时间:
2014-07-19 00:28:17
阅读次数:
291
缓存溢出缓存溢出(Buffer overflow),是指在存在缓存溢出安全漏洞的计算机中,攻击者能够用超出常规长度的字符来填满一个域,一般是内存区地址。这篇文章就是解说简单的缓存溢出问题。文章以x86_32 和 linux 系统平台为蓝本。为了介绍缓存溢出,数据的存储地址、基本的汇编指令、重要的寄存...
分类:
其他好文 时间:
2014-07-18 19:38:37
阅读次数:
316
bool iconv_convert(const std::string& in, std::string& out, const char* fromcode, const char* tocode)
{
char buffer[128];
auto cd = iconv_open(tocode, fromcode);
if (cd != nullptr)
{...
分类:
其他好文 时间:
2014-07-18 11:15:10
阅读次数:
188
1 --查找bad sql的方法: 2 3 select * from (select buffer_gets, sql_text 4 5 from v$sqlarea 6 7 where buffer_gets >500000 8 9 order by buff...
分类:
数据库 时间:
2014-07-18 08:29:41
阅读次数:
252
查看nginx下面两个参数 值是否满足client_header_buffer_size 512k;large_client_header_buffers 4 512k;满足依然出现如果nginx是做反向代理设置gunicorn 参数--limit-request-line 8188 (默认是409...
分类:
其他好文 时间:
2014-07-18 08:15:37
阅读次数:
833