自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

猫的菜园子

滴水石穿,绳锯木断。

  • 博客(3)
  • 资源 (70)
  • 收藏
  • 关注

原创 Java中用iText导出DPF文档的纯文本内容

iText作为在Java中处理PDF文档的工具被广泛使用,各种开源项目中都比较常见。现在就使用iText提供的API将PDF文档中的文本信息导出为纯文本,虽然现在很多工具中都已经支持这样的操作,这是第一步也算是读取PDF文件最常见的需求。     首先下载iText包,地址为http://sourceforge.net/projects/itext/,最新版本为5.1.2,完整包名为iText-

2011-11-10 17:20:09 4256 2

原创 C++中使用Lambda演算

由于自己没有接触Boost C++类库,据说里面提供了优美的Lambda演算,现在说的是标准C++中支持的Lambda表达式。新的C++规范中支持了此类演算,这类似于Ruby语言中的模块,无非是想让代码编写者尽量少些代码,且良好地处理闭包问题,下列程序演示了这类演算过程。 #include using namespace std; template int max(int x,i

2011-11-02 04:20:20 887

原创 C++中使用正规表达式操作字符串

一、前言   之前在C++中使用正规表达式是比较头痛的问题,要么需要引用第三方库,要么需要自己实现匹配过程。虽然使用第三方的库确实可行,但对程序的移植带来一定的困难,有时不得不带上笨重的Boost库或使用为Perl开发的C语言库,新的C++标准中加入了对正规表达式的支持,这的确是大快人心,因为在字符串处理中或多或少使用正规表达式能达到事半功倍的效果,且程序的健壮性得到很好的保持。下面就使用C++

2011-11-02 03:11:28 898

PKCS #11 v2.11: Cryptographic Token Interface Standard(包含C头文件)

PKCS #11 v2.11: Cryptographic Token Interface Standard

2022-01-02

Steinberg SDKs.zip

VST 3 Audio Plug-Ins SDK 3.6.14 ASIO SDK 2.3.3 GameAudioConnect SDK 2.1.1 VST Module Architecture SDK

2020-05-24

VST SDK 3.612

VST SDK 3.6.12 •The VST 3 API •VST 3 Implementation Helper Classes •AAX, AU and VST 2 wrappers •VST 3 Plug-ins Examples About VST 3 VST 3 is a general rework of the long-serving VST Plug-in interface. It is not compatible with the older VST versions, but it includes some new features and possibilities. We have redesigned the API to make it not only far easier and more reliable for developers to work with, but have also provided completely new possibilities for Plug-ins. These include: 1. Improved Performance with the Silence Flag Processing can optionally be applied to Plug-ins only when audio signals are present on their respective inputs, so VST 3 Plug-ins can apply their processing economically and only when it is needed. 2. Multiple Dynamic I/Os VST 3 Plug-ins are no longer limited to a fixed number of inputs and outputs, and their I/O configuration can dynamically adapt to the channel configuration. Side-chains are also very easily realizable. This includes the possibility to deactivate unused buses after loading and even reactivate those when needed. This cleans up the mixer and further helps to reduce CPU load. 3. Sample-accurate Automation VST 3 also features vastly improved parameter automation with sample accuracy and support for ramped automation data, allowing completely accurate and rapid parameter automation changes. 4. Logical Parameter Organization The VST 3 Plug-in parameters are displayed in a tree structure. Parameters are grouped into sections which represent the structure of the Plug-in. Plug-ins can communicate their internal structure for the purpose of overview, but also for some associated functionality (eg. program-lists). 5. Resizeable UI Editor VST 3 defines a way to allow resizing of the Plug-in editor by a user. 6. Mouse Over Support The Host could ask the Plug-in which parameter is under the mouse. 7. Context Menu Support VST 3 defines a way to allow the host to add its own entries in the Plug-in context menu of a specific parameter. 8. Channel Context Information A VST 3 Plug-in could access some channel information where it is instantiated: name, color,... 9. Note Expression VST 3 defines with Note Expression a new way of event controller editing. The Plug-in is able to break free from the limitations of MIDI controller events by providing access to new VST 3 controller events that circumvent the laws of MIDI and provide articulation information for each individual note (event) in a polyphonic arrangement according to its noteId. 10. 3D Support VST 3 supports new speaker configurations like Ambisonic, Atmos, Auro 3D or 22.2. 11. Factory Concept VST 3 Plug-in library could export multiple Plug-ins and in this way replaces the shell concept of VST 2 (kPlugCategShell). 12. Support Remote control Representation VST 3 Plug-in can deliver a specific parameter mapping for remote controls like Nuage. 13. Others While designing VST 3, we performed a careful analysis of the existing functionality of VST and rewrote the interfaces from scratch. In doing so, we focused a lot on providing clear interfaces and their documentation in order to avoid usage errors from the deepest possible layer. Some more features implemented specifically for developers include: - More stable technical Host/Plug-in environment - Advanced technical definition of the standard - Modular approach - Separation of UI and processing - Advanced Preset System - Multiple Plug-ins per Library - Test Host included - Automated Testing Environment - Validator (small command line Test Host) and Plug-in examples code included

2019-03-02

MFC调用Delphi开发的ActiveX控件

一般地,高版本Delphi向导开发的ActiveX控件直接在MFC应用程序中使用是有问题的,其中一个问题就是MFC中出现双接口标识的断言,或者直接初始化应用时出现其它断言,解决办法包括修改MFC头文件等暴力办法,该Hello World演示了如何不加修改让MFC应用程序使用Delphi开发的ActiveX控件,需要删除Delphi向导生成的一些不必要的接口和方法导出,在Delphi项目中处理就OK,MFC中正常使用。

2019-02-14

Julia学习材料合集

六册Julia学习材料,可用于突击学习: 《Beginning Julia Programming》 《Beginning Julia Programming For Engineers and Scientists》 《Julia High performance》 《learning julia》 《Mastering Julia》 《Julia学习资料》

2018-09-10

Flex(The Fast Lexical Analyzer)用户手册(pdf)

使用github托管的flex项目构建,因windows下不方便生成,故在ubuntu环境生成该手册,构建起来依赖解决比较繁琐,提供给赶时间的程序员查看。

2018-08-31

Borland C++ 5.5.1 命令行工具

该程序由Embarcadero提供,提供给怀旧的C++开发人员,编译一些古老的代码缅怀一下吧。

2014-09-20

VST SDK 3.6

官网提供VST SDK包,3.60版本,体积略大,官网龟速且频繁出错,下载不容易。

2014-04-29

VST Module Architecture SDK

官网提供VST Module Architecture SDK包,含文档和示例代码。

2014-04-29

Steinberg ASIO SDK 2.3

官网提供的ASIO SDK包,含文档和示例代码。

2014-04-29

Dive Into Python 3 examples

Dive Into Python 3 examples,随书示例代码包。

2012-04-26

Data Structures and Algorithms Using Python

Data Structures and Algorithms Using Python,数据结构和算法的Python描述。

2012-04-26

Beginning Perl

Beginning Perl,官方推荐的入门教材。

2012-04-26

Tcl Tk 8.5 Programming Cookbook

Tcl语言包编程介绍,内容较完整,可作为学习Tcl语言和应用Tcl语言的人士使用。

2012-04-26

PLSQL Developer 906 永久试用

插件方式永久试用破解,绿色破解,无修改软件本身任何内容。

2012-04-26

Ruby Cookbook

Ruby Cookbook,2006年出的书。

2012-04-26

Programming Python 4th Edition

从篇幅看,应该些得还不错吧,作者是Python的培训老师,十几年的培训经验,对学习者的心理有较好的把握。

2012-04-26

Windows编译TortoiseSVN所需的修正hunspell

已修正的affixmgr.cxx、hashmgr.cxx和hunspell.cxx。

2012-04-22

The Java™ Language Specification Java SE 7 Edition

The Java™ Language Specification Java SE 7 Edition,Oracle出台的Java语言规范,7.0版。

2011-10-30

SecureCRT 6.72永久试用版

SecureCRT和SecureFX循环试用版本,压缩包中包含了官方试用安装包,包括Win32和Win64的,方法虽然笨拙,不过可以永久试用官方最新的版本。

2011-10-20

Steinberg VST插件开发包

Steinberg VST Plugin SDK,10月2日构建的版本,大版本号为3.5。

2011-10-20

VST插件开发工具包

VST插件开发工具包,内含HTML格式文档说明。

2011-10-20

ss5 3.8.5源代码

Sock5代理服务器C源码,支持平台众多,运行稳定。

2011-10-20

PL/SQL Developer 9.0.2.1621一直试用版

无线循环试用,使用插件的方式重新计算使用日期。

2011-10-18

Hackers & Painters(黑客和画家)

《黑客和画家》的英文原版,保罗的杂文集,读起来很有意思。

2011-10-18

Lua 5.1 Reference Manual

Lua语言参考手册,官方文档的PDF化。

2011-10-18

Programming in Lua,2nd Edition

Lua编程介绍,内容完整,是Lua初学者和使用者身边可备的参考书。

2011-10-18

汇编语言编程艺术

介绍汇编语言编程,此书为扫描版,下载前请看说明。

2011-10-18

MATLAB 的 C++ 数学库使用手册

介绍MATLAB的C++编程接口,电子档全书390页。

2011-10-14

Maple.And.Mathematica.-.A.Problem.So.For.Mathematics

数学专业学生适用教材。包括Maple和Mathematica的内容。

2011-10-07

ObjectPascal中文参考手册(可打印版).

Delphi适用的Object Pascal语言教程,详细介绍语言的各方面内容。

2011-10-07

Oracle错误查看实用工具oerr Windows改编

Oracle在Unix及类Unix中提供了oerr使用程序,可根据错误编号查询错误的描述, 并指出发生错误的可能原因和解决办法,Windows的发布版本中却没有这部分内容, 虽然可使用后台API、SQL语句或者其它的查询工具能看到错误内容,但缺少了原因 和解决办法的内容,网上有Perl写的脚本替代品,但由于以来MinGW,使用起来很 不方便,通过参考类Unix中oerr的实现用Windows的批处理写了一份。

2010-11-14

Linux命令详解(三)

通用Linux命令介绍,内容较全,解说详细,可以为Linux爱好者身边常备的参考工具书。

2009-08-20

Linux命令详解(二)

通用Linux命令介绍,内容较全,解说详细,可以为Linux爱好者身边常备的参考工具书。

2009-08-20

Linux命令详解(一)

通用Linux命令介绍,内容较全,解说详细,可以为Linux爱好者身边常备的参考工具书。

2009-08-20

GNU Make 中文指南

虽然版本稍微低一些,但在翻译的过程中作者加入了自己的经验和理解。

2009-08-20

Bash Shell 高级编程

通透介绍Bash Shell编程,可用作日常开发维护中参考工具书。

2009-08-20

Linux下Bash Shell编程

介绍Linux下的Bash Shell编程,在日常开发和维护中可用作参考工具书。

2009-08-20

XML终极教程(PDF)

Unlike most other XML books on the market, the XML Bible covers XML not from the perspective of a software developer, but rather that of a Web-page author. I don’t spend a lot of time discussing BNF grammars or parsing element trees. Instead, I show you how you can use XML and existing tools today to more efficiently produce attractive, exciting, easy-to-use, easy-to-maintain Web sites that keep your readers coming back for more. This book is aimed directly at Web-site developers. I assume you want to use XML to produce Web sites that are difficult to impossible to create with raw HTML. You’ll be amazed to discover that in conjunction with style sheets and a few free tools, XML enables you to do things that previously required either custom software costing hundreds to thousands of dollars per developer, or extensive knowledge of programming languages like Perl. None of the software in this book will cost you more than a few minutes of download time. None of the tricks require any programming.

2009-06-10

Pragmatic Bookshelf, Programming Ruby 2nd

This book is the second edition of the PickAxe, as Programming Ruby is known to Rubyists. It is a tutorial and reference for the Ruby programming language. If you have the first edition, you’ll find that this version is a significant rewrite. When Andy and I wrote the first edition, we had to explain the background and appeal of Ruby. Among other things, we wrote “When we discovered Ruby, we realized that we’d found what we’d been looking for. More than any other language with which we have worked, Ruby stays out of your way. You can concentrate on solving the problem at hand, instead of struggling with compiler and language issues. That’s how it can help you become a better programmer: by giving you the chance to spend your time creating solutions for your users, not for the compiler.” That belief is even stronger today. Four years later. Ruby is still our language of choice: I use it for client applications, I use it to run our publishing business, and I use it for all those little programming jobs I do just to get things running smoothly. In those four years, Ruby has progressed nicely. A large number of methods have been added to the built-in classes and modules, and the size of the standard library (those libraries included in the Ruby distribution) has grown tremendously. The community now has a standard documentation system (RDoc), and RubyGems may well become the system of choice for packaging Ruby code for distribution. This change has been wonderful, but it left the original PickAxe looking a tad dated. This book remedies that: like its predecessor, it is written for the very latest version of Ruby.

2009-06-10

空空如也

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

TA关注的人

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