自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

彼家有兔,狡兔三窟。

I love tech. I love CSDN.

  • 博客(8)
  • 资源 (8)
  • 收藏
  • 关注

原创 使用 Visual C# .NET 向 Excel 工作簿传输数据

全文: http://support.microsoft.com/default.aspx?scid=kb;zh-cn;306023概述最常用于向 Excel 工作簿传输数据的技术是自动化。利用“自动化”,您可以调用特定于 Excel 任务的方法和属性。“自动化”给您提供了指定数据在工作簿中所处的位置、将工作簿格式化以及在运行时进行各种设置的最大的灵活性。利用“自动化”,您可以使用多种技术来传输数

2005-07-27 11:00:00 1599

原创 常用ASCII 码对照表

   目前计算机中用得最广泛的字符集及其编码,是由美国国家标准局(ANSI)制定的ASCII码(American Standard Code for Information Interchange,美国标准信息交换码),它已被国际标准化组织(ISO)定为国际标准,称为ISO 646标准。适用于所有拉丁文字字母,ASCII码有7位码和8位码两种形式。    因为1位二进制数可以表示(21=)2种状态

2005-07-20 13:11:00 1122

原创 数据验证之特殊字符处理

 转自 netops 的 Blog     一定要对用户可能输入的诸如引号,尖括号等特殊字符给予足够重视,它们可能引发严重的安全问题。SQL注入的基本手法之一,就是利用对单引号未加过滤的安全漏洞。    用户的输入无非两个用途:对数据库操作或显示在页面上,下面分别对这两种情况下特殊字符的处理加以说明。    1. 对数据库操作    用户输入的数据用于对数据库进行操作时,又分为两种情况,一是进行写

2005-07-20 09:02:00 1190

原创 结合asp和存储过程的搜索程序

比较复杂,可以支持多种逻辑符,包括 + - and or 空格等,并且根据需要随便增加。可以根据条件选择在那个表中搜索,对速度也做了优化,可以说是很快的。存储过程中用到几乎所有sql server的特性,如光标(记录集分页)等。asp 函数function AnalyseKeyword(a_strSource)dim m_strDest , m_intLoop dim m_intBeginPos

2005-07-20 08:51:00 850

原创 ASP.NET实现自适应图片大小的弹出窗口(窗口可任意编辑)

来源:http://dev.csdn.net/article/72/72572.shtm      在最近的项目中,遇到一个问题,要实现这样的效果:      点pic_small.Aspx页面的缩略图后弹出pic_all.aspx页面,pic_all.aspx页面的大小要根据图片大小自动调整,而且要有图片的说明信息,还可以点上一幅和下一幅等进行翻页。      实现过程如下:      pic_

2005-07-18 11:23:00 878

原创 另种UBB编辑器

来源:http://blog.csdn.net/AppleBBS//** 功能:UBB编辑控制函数* 参数: tag 为标签名称 val 为标签参数* 返回:[标签名称=参数]修饰文字[/标签名称]* [标签名称]修饰文字[/标签名称]* [标签名称=参数][/标签名称]*/function ubbaction(tag, val){var tag = tag.toUpperCase();if(ty

2005-07-18 10:36:00 1081

原创 Asp.Net上传文件示例(保存文件路径到数据库)

 来源:AppleBBS 的 Blog把下面的代码保存为Upload.aspx即可运行(事先在同目录下建立一个Upload文件夹保存上传的文件,再建立一个数据库、表Upload,字段ID:自动编号,FilePath:文本型):%@Import Namespace =Namespace="System.Data"%>%@Import Namespace="System.Data.OleDb"%> 

2005-07-18 10:32:00 1950

原创 这些样式表,你都用过么?

在Web开发时,不可避免要用到CSS,把我这几年在Web开发过程中积累的一些不常用但是很实用的CSS整理了一下,希望对大家有所帮助!filter:chroma(color:#FFFFFF);让指定的背景色透明,例: 未使用该滤镜使用该滤镜

2005-07-14 10:42:00 1125

Learning Python, 3rd Edition

Learning Python, 3rd Edition Mark Lutz Book Description Publication Date: October 29, 2007 | ISBN-10: 0596513984 | ISBN-13: 978-0596513986 | Edition: Third Edition Portable, powerful, and a breeze to use, Python is ideal for both standalone programs and scripting applications. With this hands-on book, you can master the fundamentals of the core Python language quickly and efficiently, whether you're new to programming or just new to Python. Once you finish, you will know enough about the language to use it in any application domain you choose. Learning Python is based on material from author Mark Lutz's popular training courses, which he's taught over the past decade. Each chapter is a self-contained lesson that helps you thoroughly understand a key component of Python before you continue. Along with plenty of annotated examples, illustrations, and chapter summaries, every chapter also contains Brain Builder, a unique section with practical exercises and review quizzes that let you practice new skills and test your understanding as you go. This book covers: Types and Operations -- Python's major built-in object types in depth: numbers, lists, dictionaries, and more Statements and Syntax -- the code you type to create and process objects in Python, along with Python's general syntax model Functions -- Python's basic procedural tool for structuring and reusing code Modules -- packages of statements, functions, and other tools organized into larger components Classes and OOP -- Python's optional object-oriented programming tool for structuring code for customization and reuse Exceptions and Tools -- exception handling model and statements, plus a look at development tools for writing larger programs. Learning Python gives you a deep and complete understanding of the language that will help you comprehend any application-level examples of Python that you later encounter. If you're ready to discover what Google and YouTube see in Python, this book is the best way to get started.

2012-04-05

Natural Language Processing with Python

Natural Language Processing with Python Steven Bird, Ewan Klein, Edward Loper Book Description Publication Date: July 7, 2009 | ISBN-10: 0596516495 | ISBN-13: 978-0596516499 | Edition: 1 This book offers a highly accessible introduction to natural language processing, the field that supports a variety of language technologies, from predictive text and email filtering to automatic summarization and translation. With it, you'll learn how to write Python programs that work with large collections of unstructured text. You'll access richly annotated datasets using a comprehensive range of linguistic data structures, and you'll understand the main algorithms for analyzing the content and structure of written communication. Packed with examples and exercises, Natural Language Processing with Python will help you: Extract information from unstructured text, either to guess the topic or identify "named entities" Analyze linguistic structure in text, including parsing and semantic analysis Access popular linguistic databases, including WordNet and treebanks Integrate techniques drawn from fields as diverse as linguistics and artificial intelligence This book will help you gain practical skills in natural language processing using the Python programming language and the Natural Language Toolkit (NLTK) open source library. If you're interested in developing web applications, analyzing multilingual news sources, or documenting endangered languages -- or if you're simply curious to have a programmer's perspective on how human language works -- you'll find Natural Language Processing with Python both fascinating and immensely useful.

2012-04-05

Big Data Glossary

Big Data Glossary A Guide to the New Generation of Data Tools By Pete Warden Publisher: O'Reilly Media Released: September 2011 Pages: 60 Print ISBN: 978-1-4493-1459-0 ISBN 10: 1-4493-1459-7 Ebook ISBN: 978-1-4493-1458-3 ISBN 10: 1-4493-1458-9 To help you navigate the large number of new data tools available, this guide describes 60 of the most recent innovations, from NoSQL databases and MapReduce approaches to machine learning and visualization tools. Descriptions are based on first-hand experience with these tools in a production environment. This handy glossary also includes a chapter of key terms that help define many of these tool categories: NoSQL Databases—Document-oriented databases using a key/value interface rather than SQL MapReduce—Tools that support distributed computing on large datasets Storage—Technologies for storing data in a distributed way Servers—Ways to rent computing power on remote machines Processing—Tools for extracting valuable information from large datasets Natural Language Processing—Methods for extracting information from human-created text Machine Learning—Tools that automatically perform data analyses, based on results of a one-off analysis Visualization—Applications that present meaningful data graphically Acquisition—Techniques for cleaning up messy public data sources Serialization—Methods to convert data structure or object state into a storable format TABLE OF CONTENTS Chapter 1 Terms Document-Oriented Key/Value Stores Horizontal or Vertical Scaling MapReduce Sharding Chapter 2 NoSQL Databases MongoDB CouchDB Cassandra Redis BigTable HBase Hypertable Voldemort Riak ZooKeeper Chapter 3 MapReduce Hadoop Hive Pig Cascading Cascalog mrjob Caffeine S4 MapR Acunu Flume Kafka Azkaban Oozie Greenplum Chapter 4 Storage S3 Hadoop Distributed File System Chapter 5 Servers EC2 Google App Engine Elastic Beanstalk Heroku Chapter 6 Processing R Yahoo! Pipes Mechanical Turk Solr/Lucene ElasticSearch Datameer BigSheets Tinkerpop Chapter 7 NLP Natural Language Toolkit OpenNLP Boilerpipe OpenCalais Chapter 8 Machine Learning WEKA Mahout scikits.learn Chapter 9 Visualization Gephi GraphViz Processing Protovis Fusion Tables Tableau Chapter 10 Acquisition Google Refine Needlebase ScraperWiki Chapter 11 Serialization JSON BSON Thrift Avro Protocol Buffers

2012-04-05

Introduction to Information Retrieval

Christopher D. Manning, Prabhakar Raghavan and Hinrich Schütze, Introduction to Information Retrieval, Cambridge University Press. 2008. Features • Introduces all key concepts, requiring little prior knowledge • All concepts are illustrated with figures and examples • Supporting web site features lecture slides that follow the book, and a solutions manual for lecturers Table of Contents 1. Information retrieval using the Boolean model 2. The dictionary and postings lists 3. Tolerant retrieval 4. Index construction 5. Index compression 6. Scoring and term weighting 7. Vector space retrieval 8. Evaluation in information retrieval 9. Relevance feedback and query expansion 10. XML retrieval 11. Probabilistic information retrieval 12. Language models for information retrieval 13. Text classification and Naive Bayes 14. Vector space classification 15. Support vector machines and kernel functions 16. Flat clustering 17. Hierarchical clustering 18. Dimensionality reduction and latent semantic indexing 19. Web search basics 20. Web crawling and indexes 21. Link analysis.

2012-02-20

Programming Interviews Exposed 2nd.Edition (CHM版)

The pressure is on during the interview process but with the right preparation, you can walk away with your dream job. This classic book uncovers what interviews are really like at America's top software and computer companies and provides you with the tools to succeed in any situation. The authors take you step-by-step through new problems and complex brainteasers they were asked during recent technical interviews. 50 interview scenarios are presented along with in-depth analysis of the possible solutions. The problem-solving process is clearly illustrated so you'll be able to easily apply what you've learned during crunch time. You'll also find expert tips on what questions to ask, how to approach a problem, and how to recover if you become stuck. All of this will help you ace the interview and get the job you want. What you will learn from this book Tips for effectively completing the job application Ways to prepare for the entire programming interview process How to find the kind of programming job that fits you best Strategies for choosing a solution and what your approach says about you How to improve your interviewing skills so that you can respond to any question or situation Techniques for solving knowledge-based problems, logic puzzles, and programming problems Who this book is for This book is for programmers and developers applying for jobs in the software industry or in IT departments of major corporations. Wrox Beginning guides are crafted to make learning programming languages and technologies easier than you think, providing a structured, tutorial format that will guide you through all the techniques involved. 目录 Preface. Acknowledgements. 1. Before the Search. 2. The Job Application Process. 3. Approaches to Programming Problems. 4. Linked Lists. 5. Trees and Graphs. 6. Arrays and Strings. 7. Recursion. 8. Concurrany. 9. Object Oriented Programming. 10. Databases. 11. Other Programming Topics. 12. Counting, Measuring, and Ordering Puzzles. 13. Graphical and Spatial Puzzles. 14. Knowledge-Based Questions. 15. Non-Technical Questions. 16. Conclusion. Appendix. Resumes. Index.

2012-02-20

英文原版MCTS 70-536: Microsoft .NET Framework 2.0–Application Development Foundation

官方电子版,来自英文原版书籍随书光盘。 MCTS Self-Paced Training Kit (Exam 70-536) Microsoft .NET Framework 2.0–Application Development Foundation

2010-01-07

英文原版MCTS 70-562: Microsoft .NET Framework 3.5—ASP.NET Application Development

官方电子版,来自英文原版书籍随书光盘。 MCTS Self-Paced Training Kit (Exam 70-562): Microsoft .NET Framework 3.5—ASP.NET Application Development eBook

2010-01-07

数据挖掘经典书籍Morgan Kaufmann Data Mining Practical Machine Learning Tools And Techniques 2nd ed. 2005

Morgan.Kaufmann.Data.Mining.Practical.Machine.Learning.Tools.And.Techniques.2nd.ed.2005.pdf

2009-06-16

空空如也

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

TA关注的人

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