This text introduces the spirit and theory of hacking as well as the science behind it all it also provides some core techniques and tricks of hacking so you can think like a hacker, write your own hacks or thwart potential system attacks.
譯作:《黑客入侵的藝術(shù)》,也是從朋友的寶箱中搜來的,以前層大致瀏覽過,是難得一件的好資料。
This article shows that by using the tools available and understanding the programming system, it is possible to improve programming productivity. Microsoft Foundation Classes (MFC) and other tools let the user build GUIs while working in the same development program that was used to write the rest of the test code. MFC comes bundled with Microsoft Visual C++ and other development systems such as Watcom C/C++ and Borland Inprise C++ Builder.
This tutorial attempts to get you started developing with the Win32 API as quickly and clearly as possible. It is meant to be read as a whole, so please read it from beginning to end before asking questions... most of them will probably be answered. Each section builds on the sections before it. I have also added some solutions to common errors in Appendix A. If you ask me a question that is answered on this page, you will look very silly.
This example application is a collection of Flash Lite do s and don ts from the
usability point of view. The application contains real examples and animations
of static examples that help you to see problematic issues in real life on a
Nokia device. The application is optimized for devices with the resolution 170 x 208
pixels used in portrait mode.
This example application is closely related to the document Flash Lite: Visual Guide,
and it is highly recommended to read the document before going through this example.
Basic Compression Library
by Marcus Geelnard
Release 1.2.0
2006-07-22
Introduction
The Basic Compression Library is a library of well known compression algorithms implemented in portable ANSI C code.
For more information about the Basic Compression Library, please read the manual (doc/manual.pdf) and, of course, the source code.
We often get questions about how the deflate() and inflate() functions should be used. Users wonder when they should provide more input, when they should use more output, what to do with a Z_BUF_ERROR, how to make sure the process terminates properly, and so on. So for those who have read zlib.h (a few times), and would like further edification, below is an annotated example in C of simple routines to compress and decompress from an input file to an output file using deflate() and inflate() respectively. The annotations are interspersed between lines of the code. So please read between the lines. We hope this helps explain some of the intricacies of zlib.
Zlib函數(shù)列表 We often get questions about how the deflate() and inflate() functions should be used. Users wonder when they should provide more input, when they should use more output, what to do with a Z_BUF_ERROR, how to make sure the process terminates properly, and so on. So for those who have read zlib.h (a few times), and would like further edification, below is an annotated example in C of simple routines to compress and decompress from an input file to an output file using deflate() and inflate() respectively. The annotations are interspersed between lines of the code. So please read between the lines. We hope this helps explain some of the intricacies of zlib.