Mostrando 42,981 - 43,000 Resultados de 44,310 Para Buscar 'SEBIN~', tiempo de consulta: 1.10s Limitar resultados
  1. 42981
    Publicado 2017
    Tabla de Contenidos: “…Getting R -- The R environment -- R packages -- Basics of R -- Advanced data structures -- Reading data into R -- Statistical graphics -- Writing R functions -- Control statements -- Loops, the Un-R way to iterate -- Group manipulation -- Faster group manipulation with dplyr -- Iterating with purrr -- Data reshaping -- Reshaping data in the Tidyverse -- Manipualting strings -- Probability distributions -- Basic statistics -- Linear models -- Generalized linear models -- Model diagnostics -- Regularization and shrinkage -- Nonlinear models -- Time series and autocorrelation -- Clustering -- Model fitting with Caret -- Reproducibility and reports with knitr -- Rich documents with RMarkdown -- Interactive dashboards with shiny -- Building R packages -- Real-life resources…”
    Libro electrónico
  2. 42982
    Publicado 2017
    “…Use properties instead of accessible data members (Item 1) Distinguish between value and reference types (Item 4) Understand relationships among multiple concepts of equality (Item 9) Avoid conversion operators in your APIs (Item 11) Understand how interface and virtual methods differ (Item 15) Avoid overloading methods defined in base classes (Item 19) Create method groups that are clear, minimal, and complete (Item 22) Enable immediate error reporting in iterators and async methods (Item 26) Use async methods for async work (Item 27) Avoid thread allocations and context switches (Item 30) Construct PLINQ parallel algorithms with exceptions in mind (Item 36) Use the thread pool instead of creating threads (Item 37) Use BackgroundWorker for cross-thread communication (Item 38) Use the smallest possible scope for lock handles (Item 41) Understand the pros and cons of dynamic programming (Item 43) Make full use of the expression API (Item 46) Minimize dynamic objects in public APIs (Item 47) You’re already a successful C# programmer: this book will make you an outstanding one. …”
    Libro electrónico
  3. 42983
    Publicado 2018
    “…Learning Python Web Penetration Testing will walk you through the web application penetration testing methodology, showing you how to write your own tools with Python for each activity throughout the process. The book begins by emphasizing the importance of knowing how to write your own tools with Python for web application penetration testing. …”
    Libro electrónico
  4. 42984
    Publicado 2017
    Tabla de Contenidos: “…-- Editing (storing) preferences -- Removing preferences -- Defining your own preferences manager -- Summary -- Chapter 9: Concurrency in Android -- Introduction to Android concurrency -- Main thread -- Handlers and threads -- AsyncTask -- Understanding Android Looper -- Preparing the Looper -- Delayed execution -- Summary -- Chapter 10: Android Services -- Service categorization -- Foreground Android services -- Background Android services -- Bound Android services -- Android service basics -- Declaring your service -- Starting the service -- Stopping the service -- Binding to Android service -- Stopping the service -- Service lifecycle -- Defining the main application service -- Defining the intent service -- Summary -- Chapter 11: Messaging -- Understanding Android broadcasts -- System broadcasts -- Listening for broadcasts -- Registering from the context -- Receivers execution -- Sending broadcasts -- Creating your own broadcast messages -- Using on boot and on shutdown broadcasts -- Listening for network events -- Summary -- Chapter 12: Backend and API -- Identifying entities used -- Working with data classes -- Connect data models to a database -- Introduction to Retrofit -- Defining Retrofit service -- Building a Retrofit service instance -- Introduction to Gson with Kotson library -- What else is available? …”
    Libro electrónico
  5. 42985
    Publicado 2017
    “…Organizations are increasingly transitioning to IPv6, the next generation protocol for defining how devices of all kinds communicate over networks. …”
    Libro electrónico
  6. 42986
    por Guillen, Guillermo. author
    Publicado 2019
    “…Start solving world issues by beginning small with simple Rasperry Pi projects. Using a free IoT server; tackle fundamental topics and concepts behind the Internet of Things. …”
    Libro electrónico
  7. 42987
    Publicado 2019
    “…This book uses the term Agile as a wide umbrella and covers Agile principles and practices, as well as most methodologies associated with it. You'll begin by discovering how driver-navigator, chess clock, and other techniques used in the pair programming approach introduce discipline while writing code. …”
    Libro electrónico
  8. 42988
    Publicado 2017
    Tabla de Contenidos: “…-- Readability -- Libraries and community -- Interactive mode -- Scalable -- Understanding the twelve-factor app -- Setting up the Python environment -- Installing Git -- Installing Git on Debian-based distribution Linux (such as Ubuntu) -- Seting up Git on a Debian-based distribution -- Installing Git on Windows -- Using Chocolatey -- Installing Git on Mac -- Installing the command-line tools for OS X -- Installing Git for OS X -- Installing and configuring Python -- Installing Python on a Debian-based distribution (such as Ubuntu) -- Using the APT package management tools -- Using source code -- Installing Python on Windows -- Installing Python on Mac -- Installing the command-line tools for OS X -- Installing Python for OS X -- Getting familiar with the GitHub and Git commands -- Summary -- Chapter 2: Building Microservices in Python -- Python concepts -- Modules -- Functions -- Modeling microservices -- Building microservices -- Building resource user methods -- GET /api/v1/users -- GET /api/v1/users/[user_id] -- POST /api/v1/users -- DELETE /api/v1/users -- PUT /api/v1/users -- Building resource tweets methods -- GET /api/v2/tweets -- POST /api/v2/tweets -- GET /api/v2/tweets/[id] -- Testing the RESTful API -- Unit testing -- Summary…”
    Libro electrónico
  9. 42989
    Publicado 2018
    Tabla de Contenidos: “…Models - properties, views, and actions -- Defining actions on the model -- Creating derived information with views -- Fine-tuning primitive types -- Composing trees -- References and identifiers -- Referencing by types.identifier() and types.reference() -- Out-of-the-box benefits of declarative models -- Immutable snapshots -- JSON patches -- Middlewares -- Further reading -- Summary -- Chapter 9: Mobx Internals -- Technical requirements -- A layered architecture -- The Atom -- Reading atoms at runtime -- Creating an Atom -- The atomic clock example -- ObservableValue -- ComputedValue -- Efficient computation -- Derivation -- The cycle of derivation -- Exception handling -- The API layer -- Transparent functional reactive programming -- It is Transparent... -- It is reactive... -- It is functional... -- Value Oriented Programming -- Summary -- Other Books You May Enjoy -- Index…”
    Libro electrónico
  10. 42990
    Publicado 2017
    “…With a foundation in industry-standrd XML, JUNOS provides an ideal environment for programmatic interation, allowing you to build upon the capabilities provided by Juniper, with your own original code. You will begin by learning about, and setting up, the industry-standard NETCONF remote procedure call mechanisms on your device. …”
    Libro electrónico
  11. 42991
    Publicado 2017
    “…Matplotlib 2.x By Example illustrates the methods and applications of various plot types through real world examples. It begins by giving readers the basic know-how on how to create and customize plots by Matplotlib. …”
    Libro electrónico
  12. 42992
    Publicado 2018
    Tabla de Contenidos: “…Sending and receiving data to and from a sub-generator -- Asynchronous programming -- Summary -- References -- Chapter 8: Unit Testing and Refactoring -- Design principles and unit testing -- A note about other forms of automated testing -- Unit testing and agile software development -- Unit testing and software design -- Defining the boundaries of what to test -- Frameworks and tools for testing -- Frameworks and libraries for unit testing -- unittest -- Parametrized tests -- pytest -- Basic test cases with pytest -- Parametrized tests -- Fixtures -- Code coverage -- Setting up rest coverage -- Caveats of test coverage -- Mock objects -- A fair warning about patching and mocks -- Using mock objects -- Types of mocks -- A use case for test doubles -- Refactoring -- Evolving our code -- Production code isn't the only thing that evolves -- More about unit testing -- Property-based testing -- Mutation testing -- A brief introduction to test-driven development -- Summary -- References -- Chapter 9: Common Design Patterns -- Considerations for design patterns in Python -- Design patterns in action -- Creational patterns -- Factories -- Singleton and shared state (monostate) -- Shared state -- The borg pattern -- Builder -- Structural patterns -- Adapter -- Composite -- Decorator -- Facade -- Behavioral patterns -- Chain of responsibility -- The template method -- Command -- State -- The null object pattern -- Final thoughts about design patterns -- The influence of patterns over the design -- Names in our models -- Summary -- References -- Chapter 10 : Clean Architecture -- From clean code to clean architecture -- Separation of concerns -- Abstractions -- Software components -- Packages -- Containers -- Use case -- The code -- Domain models -- Calling from the application -- Adapters -- The services -- Analysis -- The dependency flow -- Limitations…”
    Libro electrónico
  13. 42993
    Publicado 2017
    “…This book is an end-to-end guide that will help non-Perl developers get to grips with the language and use it to solve real-world problems. Beginning with a brief introduction to Perl 6, the first module in the book will teach you how to write and execute basic programs. …”
    Libro electrónico
  14. 42994
    Publicado 2016
    Tabla de Contenidos: “…Setting up and customizing a responsive single page webdesign with BootstrapDisplaying a model in the View, using the JSTL; Defining a common WebContentInterceptor; Designing a client-side MVC pattern with AngularJS; Chapter 3: Working with Java Persistence and Entities; Introduction; Configuring the Java Persistence API in Spring; Defining useful EJB3 entities and relationships; Making use of the JPA and Spring Data JPA; Chapter 4: Building a REST API for a Stateless Architecture; Introduction; Binding requests and marshalling responses; Configuring content-negotiation (JSON, XML, and so on)…”
    Libro electrónico
  15. 42995
    Publicado 2017
    Tabla de Contenidos: “…. -- Step 1: Creating an architecture overview and decomposition -- Step 2: Identifying threats -- Step 3: Documenting threats -- Threat #1 -- Threat #2 -- Threat #3 -- Step 4: Rating the threats -- Chapter 3: Analyzing and Exploiting Firmware -- Introduction -- Defining firmware analysis methodology -- Obtaining firmware -- Getting ready -- How to do it... -- Downloading from the vendor's website -- Proxying or mirroring traffic during device updates -- Dumping firmware directly from the device -- Googling -- How it works... -- Analyzing firmware -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Analyzing filesystem contents -- Getting ready -- Manual analysis -- Automated tools and scripts -- How to do it... -- How it works... -- There's more... -- See also -- Emulating firmware for dynamic analysis -- Getting ready -- How to do it... -- How it works... -- There's more... -- Getting started with ARM and MIPS -- Getting Ready -- How to do it... -- There's more... -- Exploiting MIPS -- Getting ready -- How to do it... -- How it works... -- There's more…”
    Libro electrónico
  16. 42996
    Publicado 2017
    “…It will help you to make your applications more flexible, perform better, and easier to maintain – giving your workflow a huge boost when it comes to speed without reducing quality. We'll begin by understanding the internals of React before gradually moving on to writing clean and maintainable code. …”
    Libro electrónico
  17. 42997
    Publicado 2017
    Tabla de Contenidos: “…. -- Mutating instance methods -- Adding new initializer -- Define subscripts -- Working with memory management and ARC -- Getting ready -- How to do it... -- How it works... -- There's more... -- Using error handling -- Getting ready -- How to do it... -- How it works... -- There's more... -- Multiple catch statements -- Disable error propagation -- Using generics to write generic and reusable code -- Getting ready -- How to do it... -- How it works... -- Chapter 2: The Essentials -- Introduction -- Using UIView via code or interface builder to build your own custom views -- Getting ready -- How to do it... -- How it works... -- There's more... -- Working with navigation controller and navigation bar -- Getting ready -- How to do it... -- How it works... -- There's more... -- Push and pop -- Hiding navigation bar -- Navigation bar color -- Working with stack views -- How to do it…”
    Libro electrónico
  18. 42998
    Publicado 2016
    “…Leverage Elasticsearch to create a robust, fast, and flexible search solution with ease About This Book Boost the searching capabilities of your system through synonyms, multilingual data handling, nested objects and parent-child documents Deep dive into the world of data aggregation and data analysis with ElasticSearch Explore a wide range of ElasticSearch modules that define the behavior of a cluster Who This Book Is For If you are a competent developer and want to learn about the great and exciting world of ElasticSearch, then this book is for you. …”
    Libro electrónico
  19. 42999
    Publicado 2016
    “…In the next module you'll begin hacking into the application layer. Covering everything from parameter tampering, DDoS, XXS and SQL injection, it will build on the knowledge and skills you learned in the first module to make you an even mor..…”
    Libro electrónico
  20. 43000
    Publicado 2016
    “…Akka is a distributed computing toolkit that uses the abstraction of the Actor model, enabling developers to build correct, concurrent, and distributed applications using Java and Scala with ease. The book begins with a quick introduction that simplifies concurrent programming with actors. …”
    Libro electrónico