自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (54)
  • 收藏
  • 关注

空空如也

Learn Google Flutter Fast 65 Examples.rar

Learn Google Flutter by example. Over 65 example mini-apps. Chapters Include: Three Chapters on Dart Language. Introduction to Flutter. Installing Flutter. Your first Flutter App. Dependencies & Packages. Introduction to Widgets & Composition. Stateless Widgets. Stateful Widgets. Basic Material Widgets. Multi-Child Widgets. Single-Child Widgets. App Scaffolding Widgets. Other Widgets. Builders. Routing & Navigation. Forms. Http, Apis, REST & JSON. Flutter with Http, Apis, REST & JSON. State. State & Stateful Widgets. State & InheritedWidgets. State & Scoped Model. State & BLoCs with Streams. Local Persistence. Mixins. Debugging & Performance Profiling.

2019-10-15

Oxford Dictionary of Physics.rar

从这里下载的mobi格式, 转换为PDF, WORD版本. 将就可以看的. 实在是没有找到原版的PDF.

2019-08-24

Complex Variables and Applications (z-lib.org).pdf

复变函数与应用 第九版 英文版 作者: [美]詹姆斯·沃德·布朗 等 (中文版 当当上有卖)

2019-07-13

Pro TBB.pdf

2019出版 Apress. Think Parallel We have aimed to make this book useful for those who are new to parallel programming as well as those who are expert in parallel programming. We have also made this book approachable for those who are comfortable only with C programming, as well as those who are fluent in C++. In order to address this diverse audience without “dumbing down” the book, we have written this Preface to level the playing field. What Is TBB TBB is a solution for writing parallel programs in C++ which has become the most popular, and extensive, support for parallel programming in C++. It is widely used and very popular for a good reason. More than 10 years old, TBB has stood the test of time and has been influential in the inclusion of parallel programming support in the C++ standard. While C++11 made major additions for parallel programming, and C++17 and C++2x take that ever further, most of what TBB offers is much more than what belongs in a language standard. TBB was introduced in 2006, so it contains support for pre-C++11 compilers. We have simplified matters by taking a modern look at TBB and assuming C++11. Common advice today is “if you don’t have a C++11 compiler, get one.” Compared with the 2007 book on TBB, we think C++11, with lambda support in particular, makes TBB both richer and easier to understand and use. TBB is simply the best way to write a parallel program in C++, and we hope to help you be very productive in using TBB.

2019-07-13

Fundamentals of Aircraft and Airship Design, Volume 2

Fundamentals of Aircraft and Airship Design, Volume 2 – Airship Design and Case Studies. 2-Amer Inst of Aeronautics & (2013).pdf 作者是 Grant E. Carichner Lockheed Martin Aeronautics Company Advanced Development Programs (Skunk Works) Palmdale, California Leland M. Nicolai Lockheed Martin Aeronautics Company Advanced Development Programs (Skunk Works) Palmdale, California 可以先到亚马逊查一下介绍.

2019-05-23

Fundamentals of Aircraft and Airship Design, Volume I

Fundamentals of Aircraft and Airship Design, Volume I - Aircraft Design-American Institute of Aeronautics and Astronautics (2010).pdf 作者是 Leland M. Nicolai Lockheed Martin Aeronautics Company Advanced Development Programs (Skunk Works) Palmdale, California Grant E. Carichner Lockheed Martin Aeronautics Company Advanced Development Programs (Skunk Works) Palmdale, California 可以先到亚马逊查一下介绍.

2019-05-23

Reactive Programming on Android with RxJava (2017).pdf

2017 Leanpub出版 Since its inception in 2012, RxJava has slowly gained in popularity for enabling reactive programming on Android. Today in 2017, it is now deemed as the go-to and leading reactive library. Many companies have adopted the reactive way of programming including Google with its release of Android Architecture Components, which has many reactive elements in its design. In Reactive Programming on Android with RxJava, we seek to condense RxJava principles and provide a structured and simplified approach with a lot of code examples. This book seeks to serve as a foundation for experienced Android developers who are new to RxJava so that they can start integrating it into their apps. The book is broken into two parts: The 1st part of the book will go through the basics: In Chapter 1, we will give the backstory of RxJava and discuss what reactive programming is. In Chapter 2, we will examine the core components in RxJava. In Chapter 3, we will dive deeper into operators and highlight a couple of important ones. In Chapter 4, we will cover multithreading and concurrency. The 2nd part of the book will go through advanced concepts: In Chapter 5, we will put together all the lessons from the 1st part of the book and see how they apply to Android. In Chapter 6, we will talk about backpressure to control the flow of data. In Chapter 7, we will go over error handling and how it differs from Java’s exception handling

2019-05-22

Functional Reactive Programming-Manning Publications (2016).pdf

Manning 2016年出版 Functional programming (FP) holds real solutions to today’s complex software needs, especially the challenges of parallelism. It’s catching on, but there are barriers to its adoption. FRP is a subset of FP that doesn’t require you to learn a new language. This makes FRP an ideal gateway drug to functional programming. FRP solves a specific problem now, yet it gives you grounding in ideas that have wide application. Lambda expressions have now been added to every language. The only thing standing in the way of wide adoption of FRP is gone. FRP is essentially an embedded logic language, so code written in it looks basically the same in any language. It turns out that Java has especially clear FRP syntax, and this was why we chose it as the primary vehicle in this book, but the language really doesn’t matter. There’s a need for FRP, the languages are ready, and functional programming is in vogue. The time is right for FRP to take over a small corner of the world.

2019-05-22

Clean Python.pdf

Apress 2019出版 Python is one of the most popular languages today. Relatively new fields such as data science, AI, robotics, and data analytics, along with traditional professions such as web development and scientific research, are embracing Python. It’s increasingly important for programmers writing code in a dynamic language like Python to make sure that the code is highquality and error-free. As a Python developer, you want to make sure that the software you are building makes your users happy without going over budget or never releasing. Python is a simple language, yet it’s difficult to write great code because there aren’t many resources that teach how to write better Python code. Currently lacking in the Python world are code consistency, patterns, and an understanding of good Pythonic code among developers. For every Python programmer, great Pythonic code has a different meaning. The reason for this could be that Python is being used in so many areas that it’s difficult to reach consensus among developers about specific patterns. In addition, Python doesn’t have any books about clean code like Java and Ruby do. There have been attempts to write those kinds of books to bring clarity to good Python practices, but those attempts have been few and far between, and quickly frankly, they haven’t been high-quality. The main goal of this book is to provide tips to Python developers of various levels so they can write better Python software and programs. This book gives you various techniques irrespective of the field you use Python in. This book covers all levels of Python, from basic to advanced, and shows you how to make your code more Pythonic. Remember, writing software is not only science but art, and this book will teach you how to become a better Python programmer.

2019-05-22

Text Analytics with Python, 2nd Edition.pdf

Apress 2019 版 Data is the new oil and unstructured data—especially text, images, and videos—contains a wealth of information. However, due to the inherent complexity in processing and analyzing this data, people often refrain from spending extra time and effort venturing out from structured datasets to analyze these unstructured sources of data, which can be a potential gold mine. Natural language processing (NLP) is all about leveraging tools, techniques, and algorithms to process and understand natural language-based data, which is usually unstructured like text, speech, and so on. In this book, we will be looking at tried and tested strategies—techniques and workflows—that can be leveraged by practitioners and data scientists to extract useful insights from text data.

2019-05-22

Think Julia

If you’re just learning how to program, Julia is an excellent JIT-compiled, dynamically typed language with a clean syntax. This hands-on guide uses Julia 1.0 to walk you through programming one step at a time, beginning with basic programming concepts before moving on to more advanced capabilities, such as creating new types and multiple dispatch. Designed from the beginning for high performance, Julia is a general-purpose language ideal for not only numerical analysis and computational science but also web programming and scripting. Through exercises in each chapter, you’ll try out programming concepts as you learn them. Think Julia is perfect for students at the high school or college level as well as self-learners and professionals who need to learn programming basics. Start with the basics, including language syntax and semantics Get a clear definition of each programming concept Learn about values, variables, statements, functions, and data structures in a logical progression Discover how to work with files and databases Understand types, methods, and multiple dispatch Use debugging techniques to fix syntax, runtime, and semantic errors Explore interface design and data structures through case studies

2019-05-05

Embedded Linux Development Using Yocto Project Cookbook Second Edition

Embedded Linux Development Using Yocto Project Cookbook Second Edition 第二版

2019-04-29

Reactive Native in Action. 英文版

React Native in Action Developing iOS and Android apps with JavaScript (Manning) 2019 出版

2019-04-23

The Boost C++ Libraries

在CSDN上没有找到这本书. 在其它地方找到, 上传分享. 2014年出版; epub转换版, 排版一般, 字迹清晰; 作者: Boris Schäling Copyright © 2008-2014 With the exceptions noted below, this work is licensed under a Creative Commons Attribution - NonCommercial - NoDerivatives 4.0 International License. Visit http://creativecommons.org/licenses/by-nc-nd/4.0/deed.en to view a copy of the full license.

2019-04-21

ITK Software Guide Book1 & Book2 pdf (for v4.13.0)

ITK Software Guide Book1 & Book2 pdf (for v4.13.0)

2019-04-09

Serious Python 全英文的

2018年出版. An indispensable collection of practical tips and real-world advice for tackling common Python problems and taking your code to the next level. Features interviews with high-profile Python developers who share their tips, tricks, best practices, and real-world advice gleaned from years of experience. Sharpen your Python skills as you dive deep into the Python programming language with Serious Python. You’ll cover a range of advanced topics like multithreading and memorization, get advice from experts on things like designing APIs and dealing with databases, and learn Python internals to help you gain a deeper understanding of the language itself. Written for developers and experienced programmers, Serious Python brings together over 15 years of Python experience to teach you how to avoid common mistakes, write code more efficiently, and build better programs in less time. As you make your way through the book’s extensive tutorials, you’ll learn how to start a project and tackle topics like versioning, layouts, coding style, and automated checks. You’ll learn how to package your software for distribution, optimize performance, use the right data structures, define functions efficiently, pick the right libraries, build future-proof programs, and optimize your programs down to the bytecode. You’ll also learn how to: – Make and use effective decorators and methods, including abstract, static, and class methods – Employ Python for functional programming using generators, pure functions, and functional functions – Extend flake8 to work with the abstract syntax tree (AST) to introduce more sophisticated automatic checks into your programs – Apply dynamic performance analysis to identify bottlenecks in your code – Work with relational databases and effectively manage and stream data with PostgreSQL If you’ve been looking for a way to take your Python skills from good to great, Serious Python will help you get there. Learn from the experts and get seriously good at Python with Serious Python!

2019-03-12

Programming with the Kinect for Windows Software Development Kit

Create rich experiences for users of Windows 7 and Windows 8 Developer Preview with this pragmatic guide to the Kinect for Windows Software Development Kit (SDK). The author, a developer evangelist for Microsoft, walks you through Kinect sensor technology and the SDK – providing hands-on insights for how to add gesture and posture recognition to your apps. If you’re skilled in C# and Windows Presentation Foundation, you’ll learn how to integrate Kinect in your applications and begin writing UIs and controls that can handle Kinect interaction.

2019-03-10

Mastering Dart 全英文版

PACKT 2014年出版 It's only been a few years since the Dart programming language was born and it has become eminent and well-known not only within Google, but also in the wider community of developers. It has grown into a powerful tool to help developers produce effcient and consistent source code for web clients and standalone and server-side programs. The Dart development team and independent contributors have created some good documentation, so getting started with programming using Dart isn't that hard. You can program within different development environments such as the Eclipse-based Dart Editor; IDE plugins for IntelliJ IDEA and WebStorm; and text editor plugins for Sublime Text 3, Emacs, and Vim.

2019-02-26

Serverless Application with Nodes.js 全英文

Serverless Application with Nodes.js 全英文 2019出版 Serverless Applications with Node.js walks you through building serverless apps on AWS using JavaScript. Inside, you’ll discover what Claudia.js brings to the table as you build and deploy a scalable event-based serverless application, based around a pizzeria that’s fully integrated with AWS services, including Lambda and API Gateway. Each chapter is filled with exercises, examples, tips, and more to make sure you’re ready to bring what you’ve learned into your own work.

2019-02-17

iOS Development with Swift 全英文

iOS Development with Swift 全英文

2019-02-17

Starting Out with App inventor for android.pdf

Starting Out with App inventor for android

2019-02-11

Start out with Java Early Objects. 5 edition

Start out with Java Early Objects. 5 edition

2019-02-11

Blazor Revealed

Building Web Applications in .NET 2019出版 — Peter Himschoot

2019-02-09

Neural networks a comprehensive foundation 2nd

by Simon Haykin 1999 by Pearson Education.Inc This edition is published by arrangement with Pearson Education, Inc. Pearson Prentice Hall. This book is sold subject to the condition that it shall not, by way oftrade or otherwise, be lent, resold, hired out. or otherwise circulated without the publisher's prior written consent in any form of binding or cover other than that in which it is published and without a similar condition including this condition being imposed on the subsequent purchaser and without limiting the rights under copyright reserved above, no part of this publication may be reproduced, stored in or introduced into a retrieval system, or transmitted in any form or by any means (electronic, mechanical, photocopying, recording or otherwise), without the prior written permission of both the copyright owner and the above-mentioned publisher of this book.

2019-02-08

PRACTICAL MALWARE ANALYSIS

2012 , publisher: William Pollock T h e H a n d s - O n G u i d e t o D i s s e c t i n g M a l i c i o u s S o f t w a r e by Michael Sikorski and Andrew Honig

2019-02-08

DATA MINING METHODS and APPLICATIONS

Edited by (2008 CRC) Kenneth D. Lawrence Stephan Kudyba Ronald K. Klimberg

2019-02-08

Machine Learning with PyPark.pdf

Machine Learning with PySpark (2019 Apress出版) With Natural Language Processing and Recommender Systems 作者:Pramod Sing

2019-02-08

Reactive Streams in Java

Apress 2019出版, 作者: Adam L. Davis; 我没看过, 请自己上亚马逊看相关介绍.

2019-02-05

Efficicent Learning Machines

Apress出版. 具体介绍请上亚马逊. Apress出版. 具体介绍请上亚马逊.

2019-02-05

Object-oriented programming with C.英文版

Object-oriented programming with C.英文版. 时间很久了,但内容不错.

2019-02-02

Adobe AE CS6 Scripting Guide

Adobe AE CS6 Scripting Guide; 不知道如何改下载积分,只好写5分了.

2019-02-01

空空如也

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

TA关注的人

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