大约有 2,300 项符合查询结果(耗时:0.0092秒) [XML]
常用Linux命令详解(持续更新) - 更多技术 - 清泛网 - 专注C/C++及内核技术
... tcpdump 命令
使用 tcpdump 命令可以获取到Liunx平台经过的数据包并保存下来,方便对Linux平台收发数据进行分析。下面用一个最简单的例子进行基本命令分析。
tcpdump -i eth0 -w 111.cap -s 0
-i<网络界面> 获取指定网口收发的数据包
...
C++使用OLE/COM高速读写EXCEL的源码 - C/C++ - 清泛网 - 专注C/C++及内核技术
...XCEL的源码VC对Excel表格的操作的方法有多种,如:通过ODBC数据库实现,通过解析Excel表格文件,通过OLE COM的实现。本文主要研究通过OLE COM实现对Excel表格的操作。另外,本文主代码中汇聚各网友的智慧进行了优化(比如预加载等...
【内核源码】linux UDP实现 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术
...t(),listen(). 但是可以bind(), connect().
直接通过sendto()等发送数据即可
int __sock_create(struct net *net, int family, int type, int protocol,
struct socket **res, int kern)
{
...
pf = rcu_dereference(net_families[family]); // inet_family_ops
err = pf->crea...
Understanding ibeacon distancing
... basic concept of how distancing with ibeacon (beacon/ Bluetooth-lowenergy/BLE) can work. Is there any true documentation on how far exactly an ibeacon can measure. Lets say I am 300 feet away...is it possible for an ibeacon to detect this?
...
import module from string variable
...
importlib should be avaliable on pypi for < python2.7
– Jeffrey Jose
Aug 19 '12 at 12:12
51
...
How to set an environment variable only for the duration of the script?
On Linux (Ubuntu 11.04) in bash, is it possible to temporarily set an environment variable that will only be different from the normal variable for the duration of the script? For example, in a shell script, making an app that saves to HOME portable by temporarily setting HOME to a folder in the pre...
MVC演化史 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...区分,历史上习惯的称之为Classic MVC。
Model:封装领域数据及逻辑
View:查询领域数据并展现给用户
Conctroller:截获用户请求并改变领域数据
注意:从依赖关系看,Model不依赖View和Controller,而View和Controller依赖Model。
Classic...
windbg 备忘 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...点编号。br OldID NewID
9.调试命令之内存读写
d* 读取内存数据
da 显示Ascii码
db 显示字节和ascii码
dc 显示双字(4个字节)和Ascii码
dd 显示双字
dD 显示双精度浮点数
df 显示单精度浮点数
du 显示unicode
dw 显示一个字
e* 向内存写入...
Linux环境离线安装docker&docker-compose - 大数据 & AI - 清泛网 - 专注C/C++及内核技术
Linux环境离线安装docker&docker-composelinux_docker_install一、docker离线安装1、下载docker离线安装包下载最新版本的 docker (或者选择自己想要安装的版本)到本地。1)docker下载地址:Docker版本下载 ||Docker-compose版本下载备注...
一、docker...
OnNotify函数 ON_NOTIFY消息总结 - C/C++ - 清泛网 - 专注C/C++及内核技术
...lParam保存控件的句柄。此时注意,wParam与lParam已经装满了数据,再也传递不了别的数据了,这些消息只能是简单的通告消息。举个例子,BN_CLICKED通告消息,无法发送按下鼠标按键时鼠标的位置信息。
当Windows 3.x下的控件需要发...
