《基础篇》
http://www.cnblogs.com/lhb25/archive/2013/01/10/talks-to-help-you-become-a-better-front-end-engineer-a.html《CSS篇》
http://www.cnblogs.com/lhb25/a...
分类:
其他好文 时间:
2014-05-26 21:58:08
阅读次数:
257
In Unity scripting, there are a number of event
functions that get executed in a predetermined order as a script executes. This
execution order is des...
分类:
其他好文 时间:
2014-05-26 12:20:20
阅读次数:
368
(一) 判断二进制末尾 ff.seekg(0,ios::end) ; 可以找到末尾,但是那里没有内容。
我们用 int END =ff.seekg(0,ios::end) ; 记录这个位置 。 然后 pos = ff.tellg(); if(pos == END)
break ; 这样就避免读到非法...
分类:
其他好文 时间:
2014-05-26 12:19:37
阅读次数:
244
基本上一次过,要注意边界条件的问题:如果在recursion里有两个参数int begin, end,
递归写作recursion(num, mid+1, end), 因为+号的原因,递归中是会出现begin > end
的情况的,所以考虑初始条件的时候应该要考虑充分。 1 /** 2 * Def....
分类:
其他好文 时间:
2014-05-26 12:12:49
阅读次数:
257
#define TEST_EVENT QEvent::User + 100class
CVxActuatorMain : public QMainWindow{ protected: void customEvent(QEvent
*event);}CVxActuatorMain::CVxActua...
分类:
其他好文 时间:
2014-05-26 11:49:23
阅读次数:
256
Given a linked list, remove the nth node from
the end of list and return its head. For example, Given linked list:
1->2->3->4->5, and n = 2. After rem...
分类:
其他好文 时间:
2014-05-26 09:08:23
阅读次数:
262
Session Options -- Terminal -- EmulationTerminal 选择
Linux OK来自为知笔记(Wiz)
分类:
其他好文 时间:
2014-05-26 08:20:03
阅读次数:
456
1. oncontextmenu="window.event.returnValue=false"
将彻底屏蔽鼠标右键no 可用于Table2. 取消选取、防止复制3. onpaste="return false" 不准粘贴4. oncopy="return
false;" oncut="retu....
分类:
编程语言 时间:
2014-05-26 07:36:55
阅读次数:
350
一、buffer overflow,limit of 10000 bytes
declare
begin
for c in 1..1000 loop
dbms_output.put_line('测试测试测试');
end loop;
end;
缓冲区默认大小为10000 bytes。循环1000次一共有6000个汉字,也就是12000 bytes。在SQL窗口的输出标签页可设置缓冲...
分类:
数据库 时间:
2014-05-26 06:14:00
阅读次数:
333
本文主要介绍va_start和va_end的使用及原理。介绍这两个宏之前先看一下C中传递函数的参数时的用法和原理:1.在C中,当我们无法列出传递函数的所有实参的类型和数目时,可以用省略号指定参数表void
foo(...);void foo(parm_list,...);这种方式和我们以前认识的不大...
分类:
其他好文 时间:
2014-05-24 13:09:18
阅读次数:
275