Materias dentro de su búsqueda.
Materias dentro de su búsqueda.
- History 616
- Historia 581
- Development 437
- Social aspects 425
- Application software 372
- Management 322
- RELIGION 247
- Computer networks 241
- Social conditions 238
- Filosofía 224
- Leadership 219
- Engineering & Applied Sciences 214
- Psychological aspects 189
- Examinations 182
- Business & Economics 179
- Operating systems (Computers) 178
- Computer security 168
- Cloud computing 163
- Security measures 162
- Artificial intelligence 158
- Certification 158
- Economic conditions 156
- Design 155
- Philosophy 153
- History and criticism 148
- Crítica e interpretación 147
- Aspectos sociales 141
- Computer software 138
- Computer programs 137
- Psychology 136
-
11141
-
11142Publicado 2018“…Leverage the power of the popular Jupyter notebooks to simplify your data science tasks without any hassle About This Book Create and share interactive documents with live code, text and visualizations Integrate popular programming languages such as Python, R, Julia, Scala with Jupyter Develop your widgets and interactive dashboards with these innovative recipes Who This Book Is For This cookbook is for data science professionals, developers, technical data analysts, and programmers who want to execute technical coding, visualize output, and do scientific computing in one tool. …”
Libro electrónico -
11143Publicado 2021Tabla de Contenidos: “…Intro -- inside front cover -- API Design Patterns -- Copyright -- dedication -- contents -- front matter -- foreword -- preface -- acknowledgments -- about this book -- Who should read this book -- How this book is organized: A roadmap -- About the code -- Live book discussion forum -- Other online resources -- about the author -- about the cover illustration -- Part 1 Introduction -- 1 Introduction to APIs -- 1.1 What are web APIs? …”
Libro electrónico -
11144Publicado 2022Tabla de Contenidos: “…Intro -- inside front cover -- AWS for Non-Engineers -- Copyright -- dedication -- contents -- front matter -- preface -- acknowledgments -- about this book -- Who should read this book -- How this book is organized: A road map -- liveBook discussion forum -- Other online resources -- about the author -- about the cover illustration -- 1 Introduction to cloud computing and Amazon Web Services -- 1.1 What is cloud computing? …”
Libro electrónico -
11145por OECDTabla de Contenidos: “…The educational gap starts early for young people with disability -- Young people with disability live more often in single-parent and poorer households -- Intergenerational transmission of disadvantages are large for young people with disability -- 3.2. …”
Publicado 2022
Libro electrónico -
11146Publicado 2017Tabla de Contenidos: “…-- Setting up the project and running the development server -- Demystifying GOPATH -- Building our first service - finding the Roman numeral -- Breaking down the code -- Live reloading the application with supervisord and Gulp -- Monitoring your Go web server with supervisord -- Installing supervisord -- Using Gulp for creating auto code compiling and server reloading -- Understanding the gulpfile -- Summary -- Chapter 2: Handling Routing for Our REST Services -- Getting the code -- Understanding Go's net/http package -- Running the code -- ServeMux, a basic router in Go -- Running the code -- Adding multiple handlers using ServeMux -- Running the code -- Introducing httprouter, a lightweight HTTP router -- Installation -- Program explanation -- Building the simple static file server in minutes -- Introducing Gorilla Mux, a powerful HTTP router -- Installation -- Fundamentals of Gorilla Mux -- Reverse mapping URL -- Custom paths -- Path Prefix -- Strict Slash -- Encoded paths -- Query-based matching -- Host-based matching -- SQL injections in URLs and ways to avoid them -- Creating a basic API layout for URL shortening services -- Summary…”
Libro electrónico -
11147Publicado 2019Tabla de Contenidos: “…-- Mindfulness over matter -- The secret is in the neuroplastic sauce -- Live long and prosper -- Team mindful -- Mindfulness takes a bow -- Johnny-come-lately -- Coming off autopilot -- Practice makes peaceful -- How long should you practice? …”
Libro electrónico -
11148Publicado 2017Tabla de Contenidos: “…. -- See more -- Chapter 5: Windows Shadow Copies Analysis -- Introduction -- Browsing and copying files from VSCs on a live system with ShadowCopyView -- Getting ready -- How to do it... -- How it works... -- See also -- Mounting VSCs from disk images with VSSADMIN and MKLINK -- Getting ready -- How to do it... -- How it works... -- See also -- Processing and analyzing VSC data with Magnet AXIOM -- Getting ready -- How to do it... -- How it works... -- See also -- Chapter 6: Windows Registry Analysis -- Introduction -- Extracting and viewing Windows Registry files with Magnet AXIOM -- Getting ready -- How to do it... -- How it works... -- See also -- Parsing registry files with RegRipper -- Getting ready -- How to do it... -- How it works... -- See also -- Recovering deleted Registry artifacts with Registry Explorer -- Getting ready -- How to do it... -- How it works... -- See also -- Registry analysis with FTK Registry Viewer -- Getting ready -- How to do it... -- How it works... -- See also -- Chapter 7: Main Windows Operating System Artifacts -- Introduction -- Recycle Bin content analysis with EnCase Forensic -- Getting ready -- How to do it... -- How it works... -- See also -- Recycle bin content analysis with Rifiuti2 -- Getting ready -- How to do it... -- How it works... -- See also -- Recycle bin content analysis with Magnet AXIOM -- Getting ready -- How to do it... -- How it works... -- See also -- Event log analysis with FullEventLogView -- Getting ready -- How to do it... -- How it works... -- See also -- Event log analysis with Magnet AXIOM -- Getting ready -- How to do it... -- How it works... -- See also…”
Libro electrónico -
11149por Lakshmiraghavan, Badrinarayanan. author“…You’ll learn how you can validate the request messages on arrival, how you can create loosely coupled controllers, extend the pipeline processing to compartmentalize your code for security and unit testing before being put onto a live hosting server…”
Publicado 2013
Libro electrónico -
11150por Smith, Dave. author“…Instead of abstract descriptions of complex concepts, in Android Recipes, you'll find live code examples. When you start a new project you can consider copying and pasting the code and configuration files from this book and then modifying them for your own customization needs. …”
Publicado 2015
Libro electrónico -
11151Publicado 2023Tabla de Contenidos: “…-- How this book is organized: A roadmap -- About the code -- liveBook discussion forum -- about the authors -- about the cover illustration -- Part 1. …”
Libro electrónico -
11152por Montagnino, Marian, authorTabla de Contenidos: “…Intelligent suggestions -- Automatically generated help and man pages -- Powering your CLI -- Viper - easy configuration for CLIs -- Configuration types -- Watching for live config changes -- Basic calculator CLI using Cobra and Viper -- The Cobra CLI commands -- The Viper configuration -- Running the basic calculator -- Summary -- Questions -- Answers -- Further reading -- Part 2: The Ins and Outs of a CLI -- Chapter 5: Defining the Command-Line Process -- Technical requirements -- Receiving the input and user interaction -- Defining subcommands, arguments, and flags -- Piping -- Signals and control characters -- User interaction -- Processing data -- Returning the resulting output and defining best practices -- Summary -- Questions -- Answers -- Further reading -- Chapter 6: Calling External Processes and Handling Errors and Timeouts -- Technical requirements -- Calling external processes -- The os/exec package -- Creating commands using the Cmd struct -- Running the command -- Interacting with REST APIs -- Get request -- Pagination -- Rate limiting -- Handling the expected - timeouts and errors -- Timeouts with external command processes -- Errors or panics with external command processes -- Timeouts and other errors with HTTP requests -- Summary -- Questions -- Answers -- Further reading -- Chapter 7: Developing for Different Platforms -- Technical requirements -- Packages for platform-independent functionality -- The os package -- The time package -- The path package -- The runtime package -- Implementing independent or platform-specific code -- Platform-independent code -- Platform-specific code -- Build tags for targeted platforms -- The build package -- Build tags -- OS-level differences -- Summary -- Questions -- Answers -- Further reading -- Part 3: Interactivity and Empathic Driven Design…”
Publicado 2023
Libro electrónico -
11153Publicado 2017“…What You Will Learn Building UI/UX following best industry practices Development of Zomato Clone Measure and improve app performance Improving app using test mechanisms Bringing the app live on the play store In Detail Android O brings a number of important changes for the users as well as the developers. …”
Libro electrónico -
11154Publicado 2014Tabla de Contenidos: “…-- Setting the white balance -- Setting your white balance live while shooting tethered -- My editing your images cheat sheet -- How to set your overall exposure -- 60 seconds on the histogram (& which slider controls which part) -- Auto tone (having lightroom do the work for you) -- Dealing with exposure problems (the highlights and shadows sliders) -- Setting your white point and black point -- Adding "punch" to your images using clarity -- Making your colors more vibrant -- Using the tone curve to add contrast -- Two really handy uses for RGB curves -- Adjusting individual colors using HSL -- How to add vignette effects -- Getting that trendy high-contrast look -- Creating black-and-white images -- Getting great duotones (and split tones) -- Lightroom killer tips --…”
Libro electrónico -
11155Publicado 2023Tabla de Contenidos: “…Getting prettier -- Installing Live Server -- Documenting Your Code -- Line comments -- Block comments -- The README file -- The basics of Markdown -- Coding Responsibly with Git -- Introducing Git -- Installing Git -- Configuring and testing Git -- Learning the basics of Git -- Moving forward with Git and GitHub -- Chapter 3 Using Data -- Making Variables with let -- Declaring variables -- Initializing variables -- Using variables -- Naming variables -- Making Constants with const -- When to use constants -- Naming constants -- Taking a Look at the Data Types -- JavaScript is loose and dynamic -- Passing by value -- String data type -- Escaping characters -- Creating strings with template literal notation -- Working with string functions -- Number data type -- Working with number functions -- Knowing when to convert between strings and numbers -- bigInt data type -- Boolean data type -- Converting to Boolean -- Getting Truthy and Falsy -- NaN data type -- Undefined data type -- Symbol data type -- Wrangling the Object: The Complex Data Type -- Examining the Array - a Special Kind of Object -- Getting a Handle on Scope -- Chapter 4 Working with Operators and Expressions -- Building Expressions -- Operators: The Lineup -- Operator precedence -- Using parentheses -- Assignment operators -- Comparison operators -- Arithmetic operators -- Concatenation operator -- Logical operators -- Combining operators -- Other Operators -- Chapter 5 Controlling Flow -- Choosing a Path -- if . . . else statements -- Multiple paths with if else -- The ternary operator -- Switch statements -- Making Loops -- for loops -- for . . . in loops -- for . . . of loops -- while loops -- do . . . while loops -- break and continue statements -- Chapter 6 Using Arrays -- Introducing Arrays -- Creating Arrays -- Using the Array() constructor -- Using array literal notation…”
Libro electrónico -
11156Publicado 2020Tabla de Contenidos: “…Intro -- Deep Learning with Structured Data -- Copyright -- dedication -- contents -- front matter -- acknowledgments -- about this book -- Who should read this book -- How this book is organized: A roadmap -- About the code -- liveBook discussion forum -- about the author -- about the cover illustration -- 1 Why deep learning with structured data? …”
Libro electrónico -
11157Publicado 2023“…What unleashed the forces of global capitalism which continue to shape the world that we live in? Economists and economic historians variously point to innovations in logistics and trade, the emergence of a new set of business-friendly values and the emergence of new forms of applied knowledge in early modernity to solve this riddle. …”
Libro electrónico -
11158Publicado 2023Tabla de Contenidos: “…Quantitative metrics - counting things and inferring quality -- Visualizing research results for maximum influence -- Donut charts for capturing qualitative metrics -- Utilizing 'why' and 'how' in managerial decision-making -- Using basic math to pivot to qualitative metrics -- Summary -- Chapter 11: Live by Your Data, Die by Your Data -- Data - the beating heart of business -- Understanding and utilizing taxonomy -- Getting a sense of the scope -- Scoping breadth and depth -- Finding database information -- Finding out what matters -- Understanding how your stakeholders want to see data -- Visualizing the KPIs for quick decision-making -- Investigating gaps and missing data -- Finding and fixing data problems -- Summary -- Chapter 12: The Tools It Takes to Gather and Consolidate Information -- A brief overview of UX analytics tools -- Evaluating and selecting tools -- Determining what is best for your needs -- Quantifying findings for reports -- Quantitative data scenario for an application -- Summary -- Part 4: Strategy -- Chapter 13: Digital Transformation - An Enterprise Use of UX Analytics -- The need for digital transformation -- Rolling out a digital transformation effort -- How UX analytics supports the plan -- Monitoring and evaluating user data -- Statistics on user expectations -- Continuous monitoring for early problem detection -- The leadership team -- If you're on the leadership team -- Managing up -- Working with your teams -- Breaking down silos -- Working with your peers -- Supporting your leadership team -- Being a supportive teammate -- Unlocking the relationships between the roles -- Tackling the need for new/additional changes -- Summary -- Chapter 14: Content Strategy and Analysis - an Analytics-Based, User-Centric Approach -- Understanding the difference between content and data -- Content performance analysis…”
Libro electrónico -
11159Publicado 2007Tabla de Contenidos: “…Revisiting In-Place Additions; 6.5. Live Validation; 6.6. Performance and Two-Phase Commits; 6.6.2. …”
Libro electrónico -
11160