摘要:
参考:http://www.jquerycn.cn/a_13001 1)、将mysql中的数据批量导入文件中 指定a,b,c字段 复制代码 代码如下: select a,b,c from table1 into OUTFILE '/home/me/data/table1.data' FIELDS T 阅读全文
摘要:
参考:https://blog.csdn.net/lamb7758/article/details/89147474 三次握手图 四次握手图 三次握手Three-way Handshake 一个虚拟连接的建立是通过三次握手来实现的 1. (B) --> [SYN] --> (A) 假如服务器A和客户 阅读全文
摘要:
参考:https://www.cnblogs.com/yrm1160029237/p/14246166.html C++ 11 auto关键字 decltype关键字 nullptr字面值 constexpr关键字 for(declaration : expression) Lambda表达式 in 阅读全文
摘要:
参考:https://bbs.pediy.com/thread-160200.htm 张帆《驱动详解》中讲到: 当程序的中断请求级在DISPATCH_LEVEL之上时(包括DISPATCH_LEVEL层),程序只能使用非分页内存,否则将导致蓝屏死机。 我的疑问是: 1.代码本身只能被加载到非分页内存 阅读全文
摘要:
参考:https://blog.csdn.net/ruyanhai/article/details/7199858 本文主要内容: 在bochs中运行dos程序,如何在程序的开始处中断 使用bochs调试,如何在程序的任意位置下断点 虽然在程序的入口处中断后,我们就可以随意使用bochs下断点了,但 阅读全文
摘要:
参考:http://ruanyifeng.com/blog/2015/07/flex-grammar.html 网页布局(layout)是 CSS 的一个重点应用。 布局的传统解决方案,基于盒状模型,依赖 display 属性 + position属性 + float属性。它对于那些特殊布局非常不方 阅读全文
摘要:
参考:https://blog.csdn.net/liujiayu2/article/details/73947357 一、中断处理的过程 根据Intel 64 and IA-32 Architectures Software Developer’s Manual 的介绍,在中断或异常产生是,CPU 阅读全文
摘要:
参考:https://blog.csdn.net/xundh/article/details/108139462 一、Bochs简介 Bochs是一个x86 的软件模拟器,用来模拟x86CPU、一些硬件和BIOS等,可以用来运行Windows、Linux等软件。 由于它是纯软件模板,所以运行速度比起 阅读全文