• 博客(0)
  • 资源 (15)

空空如也

Common.Lisp编程 中文版本

《实用Common Lisp 编程》是一本不同寻常的Common Lisp 入门书。本书首先从作者的学习经过及语言历史出发,随后用21个章节讲述了各种基础知识,主要包括:REPL 及Common Lisp 的各种实现、S- 表达式、函数与变量、标准宏与自定义宏、数字与字符以及字符串、集合与向量、列表处理、文件与文件I/O 处理、类、FORMAT格式、符号与包,等等。而接下来的9 个章节则翔实地介绍了几个有代表性的实例,其中包含如何构建垃圾过滤器、解析二进制文件、构建ID3 解析器,以及如何编写一个完整的MP3 Web 应用程序等内容。最后还对一些未介绍内容加以延伸。   《实用Common Lisp 编程》内容适合Common Lisp 初学者及对之感兴趣的相关人士。

2011-10-28

clisp-2.49-win32 clisp for windows

CLISP is a portable ANSI Common Lisp implementation and development environment by Bruno Haible. Interpreter, compiler, debugger, CLOS, MOP, FFI, Unicode, sockets, CLX. UI in English, German, French, Spanish, Dutch, Russian, and Danish.

2011-07-04

Common lisp入门教程

你可以像下面的例子一样的使用符号 。 (在 > 提示符号后面的就是你的输入给 Lisp 解释器的内容,而其它的就是 Lisp 解释器所回显的结果。而 ";" 分号则是 Lisp 的注释符号,在分号之后到该行结束的数据都会被解释器忽略。) > (setq a 5) ; 把数值 5 存入 a 这个符号里面。 5 > a ; 取得 a 这个符号所存的值。 5 > (let ((a 6)) a) ; 暂时性地把 a 这个符号的值给设定成 6 6 > a ; 当脱离 let 区块之后, a 的值又变回到 5 5 > (+ a 6) ; 把 a 这个符号的值当作是加法函数的参数 11 > b ; 尝试着取得并没有值的 b 这个符号的值看会发生什么事情? Error: Attempt to take the value of the unbound symbol B

2011-07-04

实战XML 第二版 PDF

HTML 已经成为全球信息网的基础。它提供标准化的方法将信息格式化并经由因特网传送给全世 界的使用者。HTML 为人们的传送和接受信息带来了革命性的变化。但是HTML 主要是被设计 为资料显示之用,因此,HTML 的焦点几乎完全放在信息应如何显示上,而不是信息的内容及它 的结构。 这便是我们需要XML 的原因。 XML 是一个开放的,以文字为基础的卷标语言,它可以提供结构的以及与语意有关的信息给数 据。这些「关于数据的数据」或中继数据(metadata)提供附加的意义和目录给使用那些数据 的应用程序,而且也将以网络为基础的信息管理和操作提升到一个新的水平。XML 是SGML 的 一个子集合,并且为了要在网络上应用而作了最佳化的设计。这使XML 成为HTML 一个强而有 力且标准化的互补,作为在网络上传递信息的一个重要的功能。

2011-06-21

XML原理及应用 PDF文档

XML 是不同于HTML 的标记语言,就像所有的语言一样,它有自己特定的语法规则。 语法(Syntax)表示组成XML 文档的字符组合。XML 文档是由Unicode 字符集组成的纯文 本文档,XML 语法描述如何将字符串组合成结构良好的XML 文档。XML 可以为各种对象、 应用程序定义语法和文件格式,而令人鼓舞的是,这种定义规则是由用户确定的。XML 仅 要求用户定义的XML 文档是结构良好的、有效的。 XML 的一个显著特点是区分大小写,element 与Element 是不同的实体,因此文档作者 要养成适当的书写习惯,如:要么全小写、要么全大写,或者单词首字母大写,避免随意性。 XML 文档中,标记之间所包含的部分构成字符数据。XML 处理器不关心字符数据本 身,它分解并分析标记,处理器只将字符数据传送给应用程序。

2011-06-21

Blender从入门到精通-2008.9-张海军

Blender从入门到精通-2008.9-张海军

2011-05-19

BizFAXClientUserManua

BizFAX无纸传真系统是将传真技术与网络技术相结合的一种智能型的传真服务器。所 有员工都可在自己电脑上收发传真;接收到的传真按照设定的规则,通过BizFAX服务器自 动分发到对应的员工电脑上,所有可打印的文件都可以直接发送。传真全面备份,可方便地 分类管理,还可进行传真内部审批、电子签章、异地远程传真(Mail to Fax 和 FAX to Mail) 等功能,实现了传真的全程无纸化处理。BizFAX与互联网、邮件、短信的结合,更实现了 传真随时随地的收发。

2011-05-19

pgadmin3 1.12.2 for windows

pgadmin3 1.12.2 for windows

2011-02-17

Glade 3-3.6.1 for Python GUI

Glade 3-3.6.1 for Python GUI

2011-02-17

postgresql 8.2.3 中文文档.CHM

postgresql 8.2.3 中文文档 CHM

2011-02-17

Windows powershell 2 for dummies

Windows PowerShell 2 For Dummies is an introductory guide to this relatively new and fascinating Windows scripting environment that’s revolutionizing the way programmers think about Windows scripting. Before Windows PowerShell 2, there was Windows PowerShell 1.0 (what a shocker!). Windows PowerShell 2 takes the best elements of Windows PowerShell 1.0 and greatly improves on them, thanks in great part to the feedback from the Windows PowerShell community. My goal in this book is to give you a concrete understanding of how things work in Windows PowerShell and fortify that knowledge with plenty of real-world examples that I’m sure you’ll be able to relate to. In many cases, very short and quick examples are sufficient, but I also make sure to provide larger, slightly more complicated (yet infinitely useful) scripts whenever possible so that you can see how various concepts can be strung together into one cohesive unit. This book is logically organized so that if you read it from cover to cover, you’ll build on knowledge from earlier chapters to keep advancing your Windows PowerShell skills and level up (as they say in the role playing gaming world). Each chapter, however, is written as an independent unit that you can use as a reference for years to come as you find the need to go back and brush up on things.

2010-05-30

python & Xml

Python is an ideal language for manipulating XML, and this new volume gives you a solid foundation for using these two languages together. Complete with practical examples that highlight common application tasks, the book starts with the basics then quickly progresses to complex topics like transforming XML with XSLT and querying XML with XPath. It also explores more advanced subjects, such as SOAP and distributed web services.

2010-05-30

空空如也

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

TA关注的人

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