- 博客(90)
- 资源 (1)
- 收藏
- 关注
转载 PHP-ExcelReader错误修改办法
首先,下载地址:http://sourceforge.net/projects/phpexcelreader/下载之后,运行里面的example.php会出现如下错误:错误一:Deprecated: Assigning the return value of new by reference is deprecated inD:\wamp\www\phpExcelReader\Ex
2017-04-07 15:31:17 673
转载 macOS 安装gevent1.2.0
命令安装gevent时,sudo pip install gevent==1.2.0报错如下:The directory '/Users/pynew/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Plea
2017-02-11 10:44:07 4370
转载 nmap_main主程序分析
转载自 http://blog.csdn.net/xundh/article/details/46591361学习要点:程序在1650行,新建一个主机的单例对象,#ifndef NOLUA /* Only NSE scripts can add targets */ NewTargets *new_targets = NULL; /* Pre-Scan and Po
2016-08-15 17:06:15 1192
转载 nmap 源码编译
windows下源码编译1.install svn;2.svn checkout https://svn.nmap.org/nmap-mswin32-aux3.svn checkout https://svn.nmap.org/nmap4.install vs2013.(Most important, not 2015 or 2012)
2016-08-15 16:42:06 1948
转载 mac安装pycham组件
在mac上安装pycharm后,却少组件,在命令行中使用pip install ’something‘后,始终报权限问题,加上sudo后也不能正常安装最后使用sudo pip install --ignore-installed ‘something’后,安装成功,原因是与mac自带的python有冲突安装完组件后,要将当前项目的解释器选择进行修改,就可以使
2016-08-15 15:15:42 824
转载 sqlserver入库时库表的时间插入
表格对应字段为datetime,对应的值可以写为convert(archer(19), get date(), 120)入库的格式为yy-mm-dd HH:MM:SS表格对应字段为datetime,对应的值可以写为convert(archer(10), get date(), 120)入库的格式为yy-mm-dd
2016-04-06 17:06:12 2935
转载 mapi pst
MAPI Session Handlinghttp://etutorials.org/Programming/Pocket+pc+network+programming/Chapter+11.+E-mail/MAPI+Session+Handling/About the Sample Wrapped PST Store Providerhttps://msdn.mi
2016-03-09 15:23:34 570
转载 判断是否虚拟机
Opt("MustDeclareVars", 1)If _VCheck() Then MsgBox(0, "", "True")Else MsgBox(0, "", "False")EndIf Func _VCheck() Local $strComputer = ".", $sMake, $sModel, $sBIOSVersion, $
2015-02-11 15:10:22 1226
转载 森林与二叉树的转换
对于一般树,树中孩子的次序并不重要,只要双亲与孩子的关系正确即可。但在二叉树中,左、右孩子的次序是严格区分的。所以在讨论二叉树与一般树之间的转换时,为了不引起混淆,约定按树上现有结点次序进行转换。这里研究二叉树与一般树之间的转换,可以了解两者之间的内在本质联系,同时在研究解决一般树的问题时,有时可以将其转换为二叉树问题来解决。树或森林与二叉树之间有一个自然的一一对应关系。任何一个森林或一棵树可
2015-02-05 15:21:29 3114
转载 Fedora 21 mp3
the steps of xmmsyum install xmmsyum install gstreamer-plugins-ugly audacious-plugins-freeworld-mp3 xmms-mp3others to read:http://my.oschina.net/matrixchan/blog/367586
2015-01-30 15:38:04 533
转载 sso package or sign error 21338
This error occurs when using sina weibo accout to login some android app solved: unstall weibo app, then login by account and password, solved.reason: weibo's sign and authority may be
2015-01-28 14:37:34 4176 1
原创 Fedora21_eclipse Luna_c++环境搭建
1.安装Fedora212.eclipse官网下载安装Linux c++版本,选择对应的32或者643.解压即可 运行,新建工程,出现问题”Program "g++" not found in PATH“"Program "gcc" not found in PATH" 4.yum install g++ yum install gcc-c++
2015-01-26 16:07:43 1402
转载 VC++动态链接库(DLL)编程深入浅出
1.概论 先来阐述一下DLL(Dynamic Linkable Library)的概念,你可以简单的把DLL看成一种仓库,它提供给你一些可以直接拿来用的变量、函数或类。在仓库的发展史上经历了“无库-静态链接库-动态链接库”的时代。 静态链接库与动态链接库都是共享代码的方式,如果采用静态链接库,则无论你愿不愿意,lib中的指令都被直接包含在最终生成的EXE文件中了。但是若使用DLL,该D
2014-08-13 08:06:46 650
转载 疯狂IOS学习--FKAppDelegate之新得
在进行该章节的学习时,对于自动生成的文件FKAppDelegate.h没有进行足够的细致关注和比较,默认直接采用。导致在程序进行编译和运行时,出现了
2014-07-11 14:43:58 485
转载 IPStore-->ReadItem, read rather than decode
IPStore::ReadItem method[Protected Storage (Pstore) is available for use in Windows Server 2003 and Windows XP. It is only available for read-only operations in Windows Server 2008 and Windo
2014-05-12 09:49:21 485
转载 C#操作注册服务卸载服务启动服务停止服务.. .
using System;using System.Configuration.Install;using System.Collections;using System.Collections.Specialized;IDictionary stateSaver = new Hashtable();一、安装服务:private void InstallServic
2014-05-07 09:11:35 533
转载 Stream.Write 与 StreamWriter.Write 的不同
Stream.Write 与 StreamWriter.Write 是我们在向流中写数据时,最常用的方法。下面就详细讲解这两个方法。一、测试方法是否结果相同首先看下面两段代码1是StreamWriter.Write 2是Stream.Write:1复制代码 代码如下:Stream ms = new MemoryStream()
2014-04-09 16:24:44 1488
转载 wireshark捕捉ip数据遇到的问题Header checksum: 0x0000
wireshark捕捉ip数据遇到的问题Header checksum: 0x0000 [incorrect, should be...(maybe caused by “ip)调程序时需要分析实验板与计算机之间的数据传输,用到网络抓包软件。使用wireshark抓取UDP报时总是出现Header checksum: 0x0000 [incorrect, should be...(
2014-04-01 09:20:30 21079
转载 Microsoft Xpress Compression
Microsoft uses a compression algorithm called "Microsoft Xpress Compression" for storing data in places, Exchange 2010 for example.4.1.10.5.19 CompressOrDecompressWin2k3This topic has not ye
2014-03-17 16:24:08 1198
转载 LZ77算法
LZ77 and LZ78 are the two lossless data compression algorithms published in papers by Abraham Lempel and Jacob Ziv in 1977[1] and 1978.[2] They are also known as LZ1 and LZ2 respectively.[
2014-03-14 08:59:19 827
转载 Exchange 2010 Database Compression
One of the features of Exchange versions up to 2007 is Single Instance Storage (SIS). What SIS does is that it creates a single instance of messages sent to multiple recipients within the same databas
2014-03-14 08:50:32 821
转载 Exchange Storage
In Exchange Server 2010, there is no more single instance storage (SIS). To help understand why SIS is gone, let's review a brief history of Exchange.During the development of Exchange 4.0, we
2014-03-13 11:04:02 580
转载 教你使用微软小型数据库esent
#include #include #include #pragma comment (lib, "esent.lib")using namespace std;JET_ERR WriteTest(JET_SESID& sessionID,JET_DBID& dbID){ JET_TABLEID iTableID; JET_COLUMNID iC
2014-02-21 20:07:47 1304 1
转载 Exchange的邮件存储和日志
一、IS服务和ESE的层次关系 IS服务我们一定很了解了,它是EXCHANGE服务器中重要的服务之一,它控制着对邮箱和PF的存储操作请求。我们也知道,EXCHANGE服务器的存储实际上是由叫ESE的数据库引擎来管理的。这个ESE引擎是微软专门为保存非关系型数据而开发的,目前在微软的很多产品中都有广泛的应用,如:AD数据库、DHCP、WINS、SRS等等。 EXCHANGE的数据
2014-02-19 16:53:48 1824
转载 Exchange Storage Architecture
26 out of 31 rated this helpful - Rate this topic Topic Last Modified: 2005-05-23Exchange servers store data in two files: an .edb file and an .stm file. Together, the .edb file and the
2014-02-18 09:14:59 928
转载 使用openssl实现一个简单的服务器
使用openssl实现一个简单的服务器#include #include #include #include #include #include #include #include #include #include #include #include #define MAXBUF 1024#define SERVER_CERT_FI
2014-01-13 11:28:45 1236 1
转载 看CC中代码需要学习的地方
在InitInstance中加了这么一段,具体的还需要验证。 // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式, //则需要 InitCommonControlsEx()。否则,将无法创建窗口。 INITCOMMONCONTROLSEX InitCtrls; InitCtrls.dwSize = sizeof(InitCtrls); // 将它设置为包括所
2014-01-13 11:28:16 479
原创 Windows核心服务器的搭建过程
1.cmd下运行powershell;2.设置当前服务器为DNS服务器:获取当前网络设置 Get-NetIPInterface修改12 Interface为静态 IPNew-NetIPAddress -InterfaceIndex 12 -IPAddress 192.168.0.2 -PrefixLength 24 -DefaultGateway 192.168.0.1获取完整安装
2014-01-13 11:26:28 641
转载 Fedora首次使用
1. sourcehttp://mirrors.163.comhttp://mirrors.sohu.comhttp://mirrors.ustc.edu.cnyum makecache2.play mp3http://rpmfusion.org/Configuration/command:$ su -c "yum install xmms-mp3 gstr
2014-01-10 16:09:19 527
转载 关于读取注册表是报的ERROR_MORE_DATA错误
读取注册表函数RegQueryValueEx调用时报的错误ERROR_MORE_DATA,是由于没有初始化其最后一个参数,LPDWORD lpcbdata。解决方法:调用前,将lpcbdata的值赋值上最大值,即可.
2013-11-14 20:37:02 2756
转载 DBX文件的读取(部分)
www.pudn.com > OeDbxViewer.rar > Unit1.cpp, change:2004-01-06,size:17460b //--------------------------------------------------------------------------- #include #pragm
2013-11-13 16:12:16 1522
转载 更改文件时间属性需要注意的问题
The following example sets the last-write time for a file to the current system time using theSetFileTime function.The NTFS file system stores time values in UTC format, so they are not affected
2013-08-15 08:54:14 546
转载 VC编程分析套接字发送带附件的电子邮件过程
本文要分析的是带附件电子邮件的发送。发送邮件有几种方法,可以使用控件,使用MAPI,这些似乎都是基于Outlook客户端的了。但在没有安装Outlook的电脑是上就要使用套接字实现了。简单邮件的发送以前已经有人给出了,对于搞安全的人来说,如果邮件没有附件,其实是没有什么攻击力的,用纯文本来实现攻击的可能性其实非常小(至少也是需要一个网页吧)。所以这篇文章将从协议开始出发,使用套接字编写一个可
2013-08-06 17:08:12 2293
转载 如何: 保存到文件的邮件附件
如何: 保存到文件的邮件附件文章编号: 173353 - 查看本文应用于的产品查看机器翻译免责声明Microsoft 支持页面的机器翻译展开全部 | 关闭全部本页概要下面的代码示例演示如何打开附件,并将内容复制到当前目录中的文件。回到顶端 | 提供反馈更多信息使用以下步骤来打开附件,并将内容复制到当前目录中的文件:打开
2013-08-01 11:17:46 1945
转载 error LNK2001: unresolved external symbol _CLSID_
error LNK2001: unresolved external symbol _CLSID_这个问题有多种可能,按顺序逐个说1./mktyplib203 问题 在发布COM前编译MIDL时,如果没有用/mktyplib203选项,那么产生的.h中会是这样的EXTERN_C const IID IID_IXX而其实际定义是在xxx_i.c
2013-07-31 09:32:44 1510
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人