栖息谷-管理人的网上家园

[传递书] 关于Cold Reading的书籍

[复制链接] 6
回复
4159
查看
打印 上一主题 下一主题
楼主
跳转到指定楼层
分享到:
发表于 2007-5-30 00:55:29 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

各位前辈大家好,请问各位前辈知不知道国内有关Cold Reading的书籍?如果有的话请告知书名,最好是免费的电子书,在这里先谢谢各位了。

Cold Reading注解:

Cold reading is a technique used by salespeople, interrogators, hypnotists, psychics, graphologists, palmists, astrologers, con men and others to convince another person that they know more about them than they actually do.

Even without prior knowledge of a given person, a cold reader could still quickly obtain a great deal of information about his subject by carefully analyzing his or her clothing or fashion, hairstyle, gender, religion, race or ethnicity, education level, manner of speech, and place of origin. This is called profiling.

Cold reading is sometimes not intended to defraud or deceive. Former New Age practitioner Karla McLaren said, "I didn't understand that I had long used a form of cold reading in my own work! I was never taught cold reading and I never intended to defraud anyone — I simply picked up the technique through cultural osmosis." [1]


[此贴子已经被作者于2007-5-30 0:57:45编辑过]
沙发
 楼主| 发表于 2007-5-31 19:17:36 | 只看该作者
没有朋友知道吗?
板凳
发表于 2007-6-18 18:34:50 | 只看该作者
晕倒,技术书到这里来问。
我记得有一本书写得不错,如下。
耐心搜索,网上有电子版的。中文版叫《代码阅读方法与实践》书店一般也有的买。
http://www.spinellis.gr/codereading/


Code Reading(影印版)
 
定价:49.80元
作者美)迪欧米迪斯
书号:7-5083-2182-0
配盘:光盘
丛书名:原版风暴系列
出版日期:2004年04月
版次:第1版第1次印刷
开本:16开
页数:460页
字数:500千字
读者评定: 发表评论  他人评论  点击次数:1735
内容简介
2004年美国Jolt大奖入围作品。如果你是个程序员的话,那么你就需要本书。可能导致我们阅读代码的原因是:我们不得不去修复它其中所包含的错误;或是对它进行遍查(inspect);或者是改善它。我们阅读代码的方式可能和工程师检查机械的方式一样——找出它的工作原理。或者我们阅读代码的目的是对代码进行清理——找出其中可以被重用的部分。阅读代码有着它自身的技巧,并需要我们能够在重要场合对采用何种技术有着判断能力。在这本不可或缺的书中,Diomidis Spinellis使用了超过600个来自现实世界中的例子来向我们展示如何鉴别好的(或坏的)代码:如何去阅读它,从中去找寻什么,以及如何利用这种技巧来提升我们自身编写的代码的品质。记住这个事实:如果我们养成了阅读好代码的习惯,我们就能写出更高品质的代码。
目录



Figures xiii
Tables xix
Foreword xxi
Preface xxv
1 Introduction 1
1.1 Why and How to Read Code 2
1.1.1 Code as Literature 2
1.1.2 Code as Exemplar 5
1.1.3 Maintenance 6
1.1.4 Evolution 7
1.1.5 Reuse 9
1.1.6 Inspections 9
1.2 How to Read This Book 10
1.2.1 Typographical Conventions 10
1.2.2 Diagrams 12
1.2.3 Exercises 13
1.2.4 Supplementary Material 14
1.2.5 Tools 14
1.2.6 Outline 15
1.2.7 The Great Language Debate 15
Further Reading 17
2 Basic Programming Elements 19
2.1 A Complete Program 19
2.2 Functions and Global Variables 25
2.3 while Loops, Conditions, and Blocks 28
2.4 switch Statements 32
2.5 for Loops 34
2.6 break and continue Statements 37
2.7 Character and Boolean Expressions 39
2.8 goto Statements 43
2.9 Refactoring in the Small 45
2.10 do Loops and Integer Expressions 51
2.11 Control Structures Revisited 54
Further Reading 60
3 Advanced C Data Types 61
3.1 Pointers 61
3.1.1 Linked Data Structures 62
3.1.2 Dynamic Allocation of Data Structures 62
3.1.3 Call by Reference 63
3.1.4 Data Element Access 65
3.1.5 Arrays as Arguments and Results 65
3.1.6 Function Pointers 67
3.1.7 Pointers as Aliases 70
3.1.8 Pointers and Strings 72
3.1.9 Direct Memory Access 74
3.2 Structures 75
3.2.1 Grouping Together Data Elements 75
3.2.2 Returning Multiple Data Elements from a Function 76
3.2.3 Mapping the Organization of Data 76
3.2.4 Programming in an Object-Oriented Fashion 78
3.3 Unions 80
3.3.1 Using Storage Efficiently 80
3.3.2 Implementing Polymorphism 81
3.3.3 Accessing Free Memory 82
3.4 Dynamic Memory Allocation 84
3.4.1 Managing Free Memory 87
3.4.2 Structures with Dynamically Allocated Arrays 89
3.5 typedef Declarations 91
Further Reading 93
4 C Data Structures 95
4.1 Vectors 96
4.2 Matrices and Tables 101
4.3 Stacks 105
4.4 Queues 107
4.5 Maps 111
4.5.1 Hash Tables 113
4.6 Sets 116
4.7 Linked Lists 117
4.8 Trees 125
4.9 Graphs 131
4.9.1 Node Storage 131
4.9.2 Edge Representation 134
4.9.3 Edge Storage 137
4.9.4 Graph Properties 139
4.9.5 Hidden Structures 139
4.9.6 Other Representations 140
Further Reading 140
5 Advanced Control Flow 143
5.1 Recursion 143
5.2 Exceptions 150
5.3 Parallelism 154
5.3.1 Hardware and Software Parallelism 154
5.3.2 Control Models 156
5.3.3 Thread Implementations 162
5.4 Signals 165
5.5 Nonlocal Jumps 169
5.6 Macro Substitution 172
Further Reading 177
6 Tackling Large Projects 179
6.1 Design and Implementation Techniques 179
6.2 Project Organization 181
6.3 The Build Process and Makefiles 189
6.4 Configuration 197
6.5 Revision Control 202
6.6 Project-Specific Tools 210
6.7 Testing 215
Further Reading 224
7 Coding Standards and Conventions 225
7.1 File Names and Organization 225
7.2 Indentation 228
7.3 Formatting 230
7.4 Naming Conventions 234
7.5 Programming Practices 237
7.6 Process Standards 239
Further Reading 240
8 Documentation 241
8.1 Documentation Types 241
8.2 Reading Documentation 243
8.3 Documentation Problems 254
8.4 Additional Documentation Sources 256
8.5 Common Open-Source Documentation Formats 260
Further Reading 266
9 Architecture 267
9.1 System Structures 268
9.1.1 Centralized Repository and Distributed Approaches 268
9.1.2 Data-Flow Architectures 273
9.1.3 Object-Oriented Structures 275
9.1.4 Layered Architectures 279
9.1.5 Hierarchies 282
9.1.6 Slicing 283
9.2 Control Models 285
9.2.1 Event-Driven Systems 285
9.2.2 System Manager 289
9.2.3 Sate Transition 291
9.3 Element Packaging 292
9.3.1 Modules 293
9.3.2 Namespaces 296
9.3.3 Objects 300
9.3.4 Generic Implementations 313
9.3.5 Abstract Data Types 318
9.3.6 Libraries 319
9.3.7 Processes and Filters 323
9.3.8 Components 325
9.3.9 Data Repositories 325
9.4 Architecture Reuse 328
9.4.1 Frameworks 329
9.4.2 Code Wizards 330
9.4.3 Design Patterns 331
9.4.4 Domain-Specific Architectures 333
Further Reading 337
10 Code-Reading Tools 339
10.1 Regular Expressions 340
10.2 The Editor as a Code Browser 343
10.3 Code Searching with grep 346
10.4 Locating File Differences 355
10.5 Roll Your Own Tool 357
10.6 The Compiler as a Code-Reading Tool 360
10.7 Code Browsers and Beautifiers 365
10.8 Runtime Tools 370
10.9 Nonsoftware Tools 375
Tool Availability and Further Reading 376
11 A Complete Example 379
11.1 Overview 379
11.2 Attack Plan 380
11.3 Code Reuse 382
11.4 Testing and Debugging 388
11.5 Documentation 396
11.6 Observations 397
A Outline of the Code Provided 399
B Source Code Credits 403
C Referenced Source Files 405
D Source Code Licenses 413
D.1 ACE 413
D.2 Apache 415
D.3 ArgoUML 416
D.4 DemoGL 416
D.5 hsqldb 417
D.6 NetBSD 418
D.7 OpenCl 418
D.8 Perl 419
D.9 qtchat 422
D.10 socked 422
D.11 vcf 422
D.12 X Window System 423
E Maxims for Reading Code 425
Bibliography 445
Author Index 459
4
发表于 2007-6-21 13:10:22 | 只看该作者
在三联书店见过
5
 楼主| 发表于 2007-6-27 00:13:27 | 只看该作者
多谢回复,不过我要的是COLD READING,不是CODE。呵呵,多谢拉,我已经找到了。EMULE上有
6
 楼主| 发表于 2007-6-27 00:15:24 | 只看该作者
我查了一下,好像台湾有,大陆没见到过类似的
7
发表于 2007-6-27 17:38:10 | 只看该作者
看来我眼花了,呵呵。

使用高级回帖 (可批量传图、插入视频等)快速回复

您需要登录后才可以回帖 登录 | 加入

本版积分规则   Ctrl + Enter 快速发布  

发帖时请遵守我国法律,网站会将有关你发帖内容、时间以及发帖IP地址等记录保留,只要接到合法请求,即会将信息提供给有关政府机构。
快速回复 返回顶部 返回列表