自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 资源 (34)
  • 收藏
  • 关注

转载 cygwin编译的win32程序不需要cygwin1.dll库的方法

以下文章翻译自国外网站http://digipen2.xmmg.com/dpweb/docs/mno-cygwin.html简单的代码view plain#include     int main(void)  {    printf("Hello\n");    return 0;  }  编译链接如下:

2012-07-29 21:37:46 5234

转载 Visual C++编译环境免安装命令行版

VC的IDE开发环境很好,但太大了,经常是2005/2008/2010装一大堆,占用几十G的空间。用惯了Linux的命令行方式,觉得小巧精致。于是想把VC的基本命令提取出来,也做一个绿色版本。保留基本的编译命令,cl、lib、link、ml之类的。编译工程只能用nmake了。vcproj工程文件怎么办?用scons重写一个吧。(其实命令行也有个vcbuild)。制作绿色版之前,首先要安装一

2012-07-27 13:31:33 3520

转载 在 console mode 中使用 C/C++ 编译器

在 console mode 中使用 C/C++ 编译器侯捷 1999.04.08我总是鼓励 C/C++ 的学习者,在刚接触这个程式语言的时候,先以 console mode(DOS-like)程式为目标。换言之,不要一开始就想写 GUI 程式、想开视窗、想有眩目亮丽的画面 -- 那只是未走先飞,揠苗助长罢了。所谓 console 程式,就是文字模式的程式,我们可以

2012-07-27 11:02:34 1494

转载 编译Windows版Android Emulator(Cupcake)

Android SDK提供了一个基于Qemu的模拟器来模拟Android系统的智能手机,得益于Qemu的跨平台特性,不论是Linux、Mac OS还是Windows的用户都可以通过模拟器大大提高开发效率。不过归根结底,Qemu还是在类Unix平台上发展起来的项目,所以在Windows平台上的编译还是值得一看。Google在git上描述如何编译Android Eclipse插件ADT的时候顺带提到了

2012-07-26 14:49:49 2188

原创 手动插int 3实现程序主动断点

gdb的条件断点可以让程序在满足一定条件时停下break ... if cond但有时程序逻辑复杂无比,或者条件复杂无比,让gdb的被动断点很难设。这时可以在程序中加中断语句来进行主动的中断。毕竟大多调试器也是靠在断点处插异常指令实现的,原理一样。 例:test.c#include #include int main(){ printf("hell

2012-07-26 08:14:34 2401

原创 Git常见使用

原文地址:http://blog.csdn.net/ariesjzj/article/details/7747876Git和SVN,CVS一样,是一种源代码管理系统。和后两者不同的是,它不仅可以集中式管理,也可以以分布式的形式工作,即所有操作都在本地,速度快,且本地提交不会影响共享的代码仓库。Git功能很多,本文列了一些常见用法。配置和创建代码仓库设置提交时的编辑器(默认是nano):

2012-07-15 00:02:54 19141 1

翻译 Android下的图形渲染配置文件egl.cfg

Android中的EGL/GLES库不是在运行时直接链接的,而是在第一次使用时根据配置选择性载入的。更具体的,libEGL.so文件包含了一个“载入器”,它会尝试载入硬件图形库或是软件图形库(libagl)。载入器的源代码位于:frameworks/base/openl/libs/EGL/Loader.cpp。载入什么库取决于配置文件/system/lib/egl/egl.cfg,egl.cfg有

2012-07-09 15:37:10 9291 1

原创 Linux下二进制代码的阅读

大多数时候,我们研究的是如何阅读源代码。但在一些情况下,比如源代码不公开或得到源代码的代价很高的情况下,我们又不得不需要了解程序的行为,这时阅读二进制文件就非常重要。假设现在有一个二进制可执行文件,我们木有源代码,但要了解它的实现,这里仅简单列出一些常用的工具。 阅读方式可分为两个方面:静态阅读和动态阅读。静态阅读首先,file命令可以查看可执行文件的大体信息。比如是哪种格式的,哪个体

2012-07-08 14:00:44 3420

原创 GDB使用备忘

调试带参数的程序$ gdb program(gdb) run param 使用core dump调试首先打开core dumpulimit -c unlimitedcore文件产生后,使用core dumpgdb  --core=core.XXX 设置watch point(gdb) watch *((int*)0x00ABCDEF)查看反汇

2012-07-08 01:37:32 3128

转载 GDB中应该知道的几个调试方法

七、八年前写过一篇《用GDB调试程序》,于是,从那以后,很多朋友在MSN上以及给我发邮件询问我关于GDB的问题,一直到今天,还有人在问GDB的相关问题。这么多年来,有一些问题是大家反复在问的,一方面,我觉得我以前的文章可能没有说清楚,另一方面,我觉得大家常问的问题正是最有用的,所以,在这里罗列出来。希望大家补充。一、多线程调试多线程调试可能是问得最多的。其实,重要就是下面几个命令:

2012-07-08 01:23:24 1184

转载 windows bat

虽然windows中bat不如linux中shell强大,但是也是很好用的,看到了放这里 当字典用。-----批处理文件,在MS-DOS中,.bat文件是可执行文件,有一系列命令构成,其中可以包含对其他程序的调用。首先,批处理文件是一个文本文件,这个文件的每一行都是一条DOS命令(大部分时候就好像我们在DOS提示符下执行的命令行一样),你可以使用DOS下的Edit或者Windows

2012-07-04 18:18:42 1232

转载 cygwin中访问windows分区

cygwin中有个隐藏目录 /cygdrive通过这个目录就可以访问到windows的各个分区了

2012-07-03 21:01:26 1283

MS-DOS 7.10完整安装版

要研究操作系统,玩实模式,dos还真是利器。 这是完整安装版,内置cd-rom驱动等等。

2013-02-23

The.Art.of.Multiprocessor.Programming.Source.Code

The.Art.of.Multiprocessor.Programming.Source.Code 多处理器编程的艺术 源代码

2012-02-14

《Programming Perl》3th

by Larry Wall, Tom Christiansen & Jon Orwant

2011-07-16

《Perl Cookbook》 2nd

By Tom Christiansen, Nathan Torkington August 2003

2011-07-16

PDP11 processor handbook

第一版本的UNIX在该平台上开发的,阅读代码代码时需要点体系知识可以参看

2011-02-01

Windows Internals Fifth Edition

Windows® Internals: Including Windows Server 2008 and Windows Vista, Fifth Edition (PRO-Developer) windows内核圣经

2011-01-28

Data.Mining.Practical.Machine.Learning.Tools.and.Techniques.Second.Edition

Highly anticipated second edition of the highly-acclaimed reference on data mining and machine learning

2010-09-08

Principles of Data Mining

by David Hand, Heikki Mannila and Padhraic Smyth A comprehensive, highly technical look at the math and science behind extracting useful information from large databases.

2010-09-08

Understanding Search Engines: Mathematical Modeling and Text Retrieval

Understanding Search Engines discusses many of the key design issues for building search engines and emphasizes the important roles that applied mathematics can play in improving information retrieval. The authors discuss not only important data structures, algorithms, and software but also user-centered issues such as interfaces, manual indexing, and document preparation. The authors bridge the gap between applied mathematics and information retrieval. They discuss some of the current problems in information retrieval that may not be familiar to applied mathematicians and computer scientists and present some of the driving computational methods (SVD, SDD) for automated conceptual indexing. This book uses a new approach to the subject by introducing topics in a nontechnical way and provides insights into common problems found in information retrieval. The more mathematical details are offset from the regular text.

2010-09-08

Mining the Web-Discovering Knowledge from Hypertext Data

The definitive book on mining the Web from the preeminent authority.

2010-09-08

Search Engines, Link Analysis, and User’s Web Behavior

George Meghabghab and Abraham Kandel This book presents a specific and unified approach framework to three major components: Search Engines Performance, Link Analysis, and User s Web Behavior. The explosive growth and the widespread accessibility of the WWW has led to a surge of research activity in the area of information retrieval on the WWW. The book can be used by researchers in the fields of information sciences, engineering (especially software), computer science, statistics and management, who are looking for a unified theoretical approach to finding relevant information on the WWW and a way of interpreting it from a data perspective to a user perspective. It specifically stresses the importance of the involvement of the user looking for information to the relevance of information sought to the performance of the medium used to find information on the WWW.

2010-09-08

Professional Linux Kernel Architecture

众所周知,Linux操作系统的源代码复杂、文档少,对程序员的要求高,要想看懂这些代码并不是一件容易事。本书结合内核版本2.6.24源代码中最关键的部分,深入讨论Linux内核的概念、结构和实现。具体包括进程管理和调度、虚拟内存、进程间通信、设备驱动程序、虚拟文件系统、网络、时间管理、数据同步等方面的内容。本书引导你阅读内核源代码,熟悉Linux所有的内在工作机理,充分展现Linux系统的魅力。 本书适合Linux的系统编程人员、系统管理者以及Linux爱好者学习使用。

2010-08-29

无线网络密码破解教程

我也没看过,因为暂时没有这方面的需要,先留着

2010-07-11

《convex optimization》solution

优化理论中的经典。原书在作者主页上有下,这是习题解

2010-07-05

《Dynamic Programming and Optimal Control》 Vol 2

Dynamic Programming and Optimal Control, Vol 2 貌似vol1有人发了,这是vol2

2010-07-05

《The Latex Companion》source code

《The Latex Companion》 学习latex的经典,这里是源代码。

2010-07-05

《The Latex Companion》完整版

《The Latex Companion》 上次传的不是非完整版,我也是传完了才发现,现在重新上传

2010-07-05

《Learning Debian GNU Linux》

Debian在linux的发行版中是用得比较多的。学习Debian linux的好书.

2010-07-05

《statistical inference》

讲统计推理的书,有需要的同学可以下来看看

2010-03-23

《Learning with kernels》

kernel的大牛级人物写的书,那一定是必读的了

2010-01-23

《The Latex Companion》

不好意思,这个是非完整版,我也是传完才发现,我已另开资源传了完整版及源码

2010-01-23

《The nature of statistical learning theory》Vapnik V.N.

《The nature of statistical learning theory》 统计学习的经典

2009-10-25

《programming python》 3rd

《programming python》 第三版 python入门经典

2009-10-25

《Elements of the Theory of Computation》

《Elements of the Theory of Computation》计算理论经典之作,已绝版

2009-10-02

《Maximum Wireless Security》

《Maximum Wireless Security》 无线网络的安全 经典必读

2009-10-02

PDP-11 instruction reference

PDP-11 instruction reference 第一代UNIX工作的平台

2009-10-02

《The Design of The Unix Operating System》(unix操作系统设计)

《The Design of The Unix Operating System》(unix操作系统设计)

2009-10-02

《UNIX网络编程》3rd 源代码

《UNIX网络编程》3rd 源代码 包括一二卷的源代码

2009-08-21

core java source code

Core java 2ed Volume I & Volume II 's Code

2009-08-21

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除