标题: carol's book shelf
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-4-23 21:06  资料  个人空间  短消息  加为好友 
清华C语言服务器
ftp://cpp:cpp@166.111.168.29

ebook 在 pub/Documents/Books/ 目录下
c++
算法等等,好书很多,看得偶偶开心阿~ hoho~~~

顶部
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-4-29 12:40  资料  个人空间  短消息  加为好友 
O'Reilly's CD bookshelf

include JAVA / PERL / TCP/IP / UNIX /WWW

http://www.serve.com/josh/books/


顶部
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-4-29 15:13  资料  个人空间  短消息  加为好友 
The Essence of Object Oriented Programming with Java and UML
by
Bruce E. Wampler, Ph.D.

http://www.objectcentral.com/oobook/EOOPTOC.html

顶部
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-5-6 16:31  资料  个人空间  短消息  加为好友 
online ebook:

Structure and Interpretation of Computer Programs

http://mitpress.mit.edu/sicp/full-text/book/book.html

QUOTE
Contents


    Foreword


    Preface to the Second Edition


    Preface to the First Edition


    Acknowledgments


    1  Building Abstractions with Procedures
        1.1  The Elements of Programming
            1.1.1  Expressions
            1.1.2  Naming and the Environment
            1.1.3  Evaluating Combinations
            1.1.4  Compound Procedures
            1.1.5  The Substitution Model for Procedure Application
            1.1.6  Conditional Expressions and Predicates
            1.1.7  Example: Square Roots by Newton's Method
            1.1.8  Procedures as Black-Box Abstractions
        1.2  Procedures and the Processes They Generate
            1.2.1  Linear Recursion and Iteration
            1.2.2  Tree Recursion
            1.2.3  Orders of Growth
            1.2.4  Exponentiation
            1.2.5  Greatest Common Divisors
            1.2.6  Example: Testing for Primality
        1.3  Formulating Abstractions with Higher-Order Procedures
            1.3.1  Procedures as Arguments
            1.3.2  Constructing Procedures Using Lambda
            1.3.3  Procedures as General Methods
            1.3.4  Procedures as Returned Values


    2  Building Abstractions with Data
        2.1  Introduction to Data Abstraction
            2.1.1  Example: Arithmetic Operations for Rational Numbers
            2.1.2  Abstraction Barriers
            2.1.3  What Is Meant by Data?
            2.1.4  Extended Exercise: Interval Arithmetic
        2.2  Hierarchical Data and the Closure Property
            2.2.1  Representing Sequences
            2.2.2  Hierarchical Structures
            2.2.3  Sequences as Conventional Interfaces
            2.2.4  Example: A Picture Language
        2.3  Symbolic Data
            2.3.1  Quotation
            2.3.2  Example: Symbolic Differentiation
            2.3.3  Example: Representing Sets
            2.3.4  Example: Huffman Encoding Trees
        2.4  Multiple Representations for Abstract Data
            2.4.1  Representations for Complex Numbers
            2.4.2  Tagged data
            2.4.3  Data-Directed Programming and Additivity
        2.5  Systems with Generic Operations
            2.5.1  Generic Arithmetic Operations
            2.5.2  Combining Data of Different Types
            2.5.3  Example: Symbolic Algebra


    3  Modularity, Objects, and State
        3.1  Assignment and Local State
            3.1.1  Local State Variables
            3.1.2  The Benefits of Introducing Assignment
            3.1.3  The Costs of Introducing Assignment
        3.2  The Environment Model of Evaluation
            3.2.1  The Rules for Evaluation
            3.2.2  Applying Simple Procedures
            3.2.3  Frames as the Repository of Local State
            3.2.4  Internal Definitions
        3.3  Modeling with Mutable Data
            3.3.1  Mutable List Structure
            3.3.2  Representing Queues
            3.3.3  Representing Tables
            3.3.4  A Simulator for Digital Circuits
            3.3.5  Propagation of Constraints
        3.4  Concurrency: Time Is of the Essence
            3.4.1  The Nature of Time in Concurrent Systems
            3.4.2  Mechanisms for Controlling Concurrency
        3.5  Streams
            3.5.1  Streams Are Delayed Lists
            3.5.2  Infinite Streams
            3.5.3  Exploiting the Stream Paradigm
            3.5.4  Streams and Delayed Evaluation
            3.5.5  Modularity of Functional Programs and Modularity of Objects


    4  Metalinguistic Abstraction
        4.1  The Metacircular Evaluator
            4.1.1  The Core of the Evaluator
            4.1.2  Representing Expressions
            4.1.3  Evaluator Data Structures
            4.1.4  Running the Evaluator as a Program
            4.1.5  Data as Programs
            4.1.6  Internal Definitions
            4.1.7  Separating Syntactic Analysis from Execution
        4.2  Variations on a Scheme -- Lazy Evaluation
            4.2.1  Normal Order and Applicative Order
            4.2.2  An Interpreter with Lazy Evaluation
            4.2.3  Streams as Lazy Lists
        4.3  Variations on a Scheme -- Nondeterministic Computing
            4.3.1  Amb and Search
            4.3.2  Examples of Nondeterministic Programs
            4.3.3  Implementing the Amb Evaluator
        4.4  Logic Programming
            4.4.1  Deductive Information Retrieval
            4.4.2  How the Query System Works
            4.4.3  Is Logic Programming Mathematical Logic?
            4.4.4  Implementing the Query System


    5  Computing with Register Machines
        5.1  Designing Register Machines
            5.1.1  A Language for Describing Register Machines
            5.1.2  Abstraction in Machine Design
            5.1.3  Subroutines
            5.1.4  Using a Stack to Implement Recursion
            5.1.5  Instruction Summary
        5.2  A Register-Machine Simulator
            5.2.1  The Machine Model
            5.2.2  The Assembler
            5.2.3  Generating Execution Procedures for Instructions
            5.2.4  Monitoring Machine Performance
        5.3  Storage Allocation and Garbage Collection
            5.3.1  Memory as Vectors
            5.3.2  Maintaining the Illusion of Infinite Memory
        5.4  The Explicit-Control Evaluator
            5.4.1  The Core of the Explicit-Control Evaluator
            5.4.2  Sequence Evaluation and Tail Recursion
            5.4.3  Conditionals, Assignments, and Definitions
            5.4.4  Running the Evaluator
        5.5  Compilation
            5.5.1  Structure of the Compiler
            5.5.2  Compiling Expressions
            5.5.3  Compiling Combinations
            5.5.4  Combining Instruction Sequences
            5.5.5  An Example of Compiled Code
            5.5.6  Lexical Addressing
            5.5.7  Interfacing Compiled Code to the Evaluator


    References


    List of Exercises


    Index

顶部
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-5-12 11:17  资料  个人空间  短消息  加为好友 
1M


<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=v1 colSpan=2><IMG height=100 src="mk:@MSITStore:C:\Documents%20and%20Settings\mli\Desktop\Oreilly.Building.Embedded.Linux.Systems.eBook-LiB.chm::/images/059600222X/belinuxsys_xs.gif" width=76 border=0></TD></TR>
<TR>
<TD class=v1 width="13%">&nbsp;</TD>
<TD class=v1 width="87%" height=17>&nbsp;</TD></TR>
<TR>
<TD class=v1 width="13%">•&nbsp;</TD>
<TD class=v1 width="87%" height=17><A class=v1 href="mk:@MSITStore:C:\Documents%20and%20Settings\mli\Desktop\Oreilly.Building.Embedded.Linux.Systems.eBook-LiB.chm::/toc.html">Table of Contents</A></TD></TR>
<TR>
<TD class=v1 width="13%">•&nbsp;</TD>
<TD class=v1 width="87%" height=17><A class=v1 href="mk:@MSITStore:C:\Documents%20and%20Settings\mli\Desktop\Oreilly.Building.Embedded.Linux.Systems.eBook-LiB.chm::/index.html">Index</A></TD></TR>
<TR>
<TD class=v1 width="13%">•&nbsp;</TD>
<TD class=v1 width="87%" height=17><A class=v1 href="http://www.oreilly.com/catalog/belinuxsys/reviews.html" target=_new>Reviews</A></TD></TR>
<TR>
<TD class=v1 width="13%">•&nbsp;</TD>
<TD class=v1 width="87%" height=17><A class=v1 href="http://www.oreilly.com/cgi-bin/reviews?bookident=belinuxsys" target=_new>Reader Reviews</A></TD></TR>
<TR>
<TD class=v1 width="13%">•&nbsp;</TD>
<TD class=v1 width="87%" height=17><A class=v1 href="http://www.oreilly.com/catalog/belinuxsys/errata/" target=_new>Errata</A></TD></TR></TBODY></TABLE></TD><TD class=v2 width="488">
<TABLE cellSpacing=0 cellPadding=0 width=469 border=0>
<TBODY>
<TR vAlign=top>
<TD class=v2 colSpan=3 height=20><B>Building Embedded Linux Systems</B></TD></TR>
<TR>
<TD class=v2 colSpan=3 height=18>By <A class=v1 href="http://www.oreillynet.com/cs/catalog/view/au/1113?x-t=book.view" target=_new>Karim&nbsp;Yaghmour</A></TD></TR>
<TR>
<TD class=v2 width=68 height=18>&nbsp;</TD>
<TD class=v2 align=right colSpan=2></TD></TR>
<TR>
<TD class=v2 align=right width=68 height=18>Publisher</TD>
<TD class=v2 colSpan=2>: O'Reilly</TD></TR>
<TR>
<TD class=v2 align=right width=68 height=18>Pub Date</TD>
<TD class=v2 colSpan=2>: April 2003</TD></TR>
<TR>
<TD class=v2 align=right width=68 height=18>ISBN</TD>
<TD class=v2 colSpan=2>: 0-596-00222-X</TD></TR>
<TR>
<TD class=v2 align=right width=68 height=18>Pages</TD>
<TD class=v2 colSpan=2>: 416</TD></TR>
<TR>
<TD class=v2 align=right width=68 height=18>Slots</TD>
<TD class=v2>: 1</TD>
<TD class=v2 align=right width="75%">&nbsp; &nbsp;</TD></TR></TBODY></TABLE><BR><BR>
<P class=docText><SPAN class=docEmphasis>Building Embedded Linux Systems</SPAN> shows you how to design and build your own embedded systems using Linux&reg; as the kernel and freely available open source tools as the framework. Written by an active member of the open source community, the book is structured to gradually introduce readers to the intricacies of embedded Linux, with detailed information and examples in each chapter that culminate in describing how Linux is actually put on an embedded device.</P>

顶部
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-5-14 09:35  资料  个人空间  短消息  加为好友 
http://www.akaembed.org/Inetpub/uploads/up...oks/Unix-Linux/

QUOTE

Addison.Wesley.The.Art.Of.Unix.Programming.eBook-LiB.chm                              15-Jan-2004 23:24  1.5M 
Freebsd使用大全.chm                                                                   15-Jan-2004 23:26  1.3M 
Linux Device Drivers__2nd Edition/                                                    15-Jan-2004 23:31    -  
Linux Kernel Module Programming Guide.pdf                                             15-Jan-2004 23:31  1.1M 
LinuxUserGuide.pdf                                                                    15-Jan-2004 23:31  1.1M 
Prentice.Unix.Systems.Programming.Communication.Concurrency.And.Threads.eBook-LiB.chm 15-Jan-2004 23:33  2.5M 
Redhat/                                                                               15-Jan-2004 23:36    -  
Sams.Unix.Shell.Programming.3rd.Edition.eBook-LiB.chm                                 15-Jan-2004 23:37  1.1M 
Sybex.Linux.Power.Tools.eBook-LiB.chm                                                 15-Jan-2004 23:45   12M 
Understand Linux Kernel-2nd.pdf                                                       15-Jan-2004 23:40  4.7M 
UnixBible.pdf                                                                         15-Jan-2004 23:43  409K 
Unix Hater's Handbook.pdf                                                             15-Jan-2004 23:43  3.5M 
Wiley.UNIX.Filesystems.Evolution.Design.and.Implementation-NLLiB.pdf                  15-Jan-2004 23:45  4.1M 
dirts-01.pdf                                                                          14-Apr-2004 22:21  228K 
eBook - Linux Programming unleashed.pdf                                               15-Jan-2004 23:26  6.3M 
parportbook.pdf                                                                       15-Jan-2004 23:31  343K 



http://www.akaembed.org/Inetpub/uploads/up...ix/Books/EMBED/

QUOTE

  嵌入式系统及实时软件开发.pdf                                                      15-Jan-2004 23:15  1.9M 
Embedded Everywhere.pdf                                                           15-Jan-2004 23:05  1.0M 
Embedded System Design_Unified Approach(不全,可惜)/                              15-Jan-2004 23:06    -  
MS.Press.Programming.Microsoft.Windows.CE.Dot.NET.3rd.Edition.eBook-LiB.chm       15-Jan-2004 23:09  7.6M 
Oreilly.Building.Embedded.Linux.Systems.eBook-LiB.chm                             15-Jan-2004 23:07  1.0M 
Performance Issues of Variability Design in Embedded System Application Families/ 15-Jan-2004 23:09    -  
Real-Time Concepts for Embedded Systems.chm                                       15-Jan-2004 23:15   10M 
Real-time Systems Specification, Verification and Analysis.pdf                    15-Jan-2004 23:11  2.9M 
Realtime Operating Systems.pdf                                                    15-Jan-2004 23:12  1.3M 
rt_soft/                                                                          15-Jan-2004 23:14    -  



数字图像处理
http://www.akaembed.org/Inetpub/uploads/upload_by_he/
QUOTE
数字图像处理学vc实现配套光盘.iso      19-Apr-2004 20:31  19M 
图像处理入门C源码分析.zip              19-Apr-2004 20:35  12M 
图像获取、处理与分析.iso              19-Apr-2004 21:11  98M 
Visual C++高级编程技术----OpenGL篇.rar 19-Apr-2004 21:24  568K 
Visual C++高级编程技术----OpenGL篇/    19-Apr-2004 20:21    - 
VisualC++数字图像处理配套光盘.zip      19-Apr-2004 21:24  2.0M 

顶部
[广告] 记录自己的思想火花,留住每日的技术积累,尽在拥有属于自己独立域名的博客。
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-5-14 15:18  资料  个人空间  短消息  加为好友 
http://www.ecst.csuchico.edu/~beej/guide/

Over the years I've accumulated much information on many computer-related things, and I feel strangely compelled to share them with others. There aren't many things here now, but I'm working on it.



Beej's Guide to Network Programming
中文版: http://member.netease.com/~chcd/socket.htm

This is a beginner's guide to socket programming with Internet sockets. It is meant to be a springboard that will launch you into the exciting world of TCP/IP programming. This document has earned a fair amount of praise.

Beej's Guide to Unix Interprocess Communication

Now that you have extra-process communication going on with sockets, why not try your hand at some interprocess communication, eh? Shared memory, semaphores, signals, and memory mapped files await you!

Beej's Guide to C rough draft, temporary URL

This is a bit of a practice book for later when I write a real book. Since I know C like the back of my hand, it's a good place to start (because I don't need many references to write it!) Keep in mind that this is completely incomplete right now, and I haven't even read most of what I've written. So if you see errors of any kind, and there are a lot of them, feel free to drop me a line so I can fix them. Likewise, if you think the structure could be rearranged, or something was left out (since the book is in progress, lots of stuff is still left out), or if there was something you'd like to see, etc., etc., just let me know and I promise to at least think about it. smile.gif

Beej's Guide to Killing Dragons

If you play Moria, this will help you slay Ancient Multi-Hued Dragons from the safety of your own home.

顶部
[广告] 记录自己的思想火花,留住每日的技术积累,尽在拥有属于自己独立域名的博客。
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-5-14 20:32  资料  个人空间  短消息  加为好友 
《现代汇编语言程序设计》 学习指导 from pku http://arch.cs.pku.edu.cn/users/cgz/assembler/

顶部
[广告] 记录自己的思想火花,留住每日的技术积累,尽在拥有属于自己独立域名的博客。
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-5-18 08:53  资料  个人空间  短消息  加为好友 

顶部
[广告] 记录自己的思想火花,留住每日的技术积累,尽在拥有属于自己独立域名的博客。
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-5-18 21:56  资料  个人空间  短消息  加为好友 
今日又得好书一本,难能可贵的是,中文的!!!

download here: http://www.oldlinux.org/book.html

"A Heavily Commented Linux kernel Source Code"
(Kernel 0.11)

user posted image

书: http://oldlinux.org/download/clk011c-1.2.2.pdf 5M 左右

wub.gif wub.gif wub.gif wub.gif wub.gif wub.gif wub.gif wub.gif wub.gif wub.gif

顶部
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-5-21 14:19  资料  个人空间  短消息  加为好友 
ardio 说是好文章,写得很浅显的黑客入门,先把连接保留下来吧,好多啊。。。。 ninja.gif

BUFFER OVERFLOWS DEMYSTIFIED
http://www.enderunix.org/docs/eng/bof-eng.txt

Exploiting Format String Vulnerabilities
http://www.cs.ucsb.edu/~jzhou/security/formats-teso.html

Basic Integer Overflows
http://www.phrack.org/phrack/60/p60-0x0a.txt

still hungry? see more... ninja.gif
http://www.phrack.org/show.php?p=57&a=9

顶部
carol
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
幻想懒王++


UID 1859
精华 66
积分 5139
帖子 10006
活跃指数 32
LU金币 2596 个
LU金条 0 个
阅读权限 200
注册 2003-11-7
 
发表于 2004-5-21 14:57  资料  个人空间  短消息  加为好友 
Programming in C
UNIX System Calls and Subroutines using C,

http://www.cs.cf.ac.uk/Dave/C/CE.html sleep.gif

顶部
 



当前时区 GMT+8, 现在时间是 2008-12-5 20:48
乐悠LoveUnix论坛-京ICP备05005823号

Thanks to Discuz!  © 2001-2007    Power by LoveUnix.net
Processed in 0.058116 second(s), 6 queries , Gzip enabled

清除 Cookies - 联系我们 - 乐悠LoveUnix - Archiver