Mostrando 29,661 - 29,680 Resultados de 33,117 Para Buscar '"Global"', tiempo de consulta: 0.20s Limitar resultados
  1. 29661
    por van Gumster, Jason
    Publicado 2024
    Tabla de Contenidos: “…Discovering Procedural Textures -- Using Color Ramps -- Understanding Texture Mapping -- Making simple adjustments with the Texture Mapping panel -- Using texture coordinates -- Understanding Object coordinates and the UV Project modifier -- Unwrapping a Mesh -- Marking seams on a mesh -- Adding a test grid -- Generating and editing UV coordinates -- Painting Textures Directly on a Mesh -- Preparing to paint -- Working in Texture Paint mode -- Using textures on your Draw tool -- Saving Painted Textures and Exporting UV Layouts -- Chapter 3 Lighting and Environment -- Lighting a Scene -- Understanding a basic three-point lighting setup -- The key light -- The fill light -- The back light -- Knowing when to use which type of light -- Universal light options -- Light-specific options -- Using mesh lights in Cycles -- Understanding shadow maps in Eevee -- Lighting for Speedy Renders -- Working with three-point lighting in Blender -- Using light portals in Cycles -- Using Material Preview to set up lighting -- Setting Up the World -- Changing the sky to something other than dull gray -- Using high dynamic range images (HDRIs) for world lighting -- Understanding ambient occlusion -- Working with Light Probes in Eevee -- Baking from your light probes -- Understanding the limitations of light probes -- Chapter 4 Exporting and Rendering Scenes -- Blender's Render Engines -- Rendering a Scene -- Creating a still image -- Viewing your rendered images in Blender -- Picking an image format -- Setting dimensions for your renders -- Saving your still image -- Creating a sequence of still images for editing or compositing -- Rendering a sequence of images versus rendering video -- Working with Assets in Blender -- Building an asset library -- Customizing assets in the Asset Browser -- Creating a global asset library -- Exporting to external formats…”
    Libro electrónico
  2. 29662
    Publicado 2023
    Tabla de Contenidos: “…-- Using useState to develop stateful components -- Passing state as props -- Conditional rendering with state -- Using useEffect to create side effects -- Using useContext to manage global state in React applications -- Understanding props drilling -- Using useContext to solve the props drilling problem -- Using useRef to directly access DOM elements and persist state values -- Using useReducer for state management -- Using useMemo to improve performance -- Prevents unnecessary component re-rendering -- Using useCallback to avoid re-rendering functions -- Using custom Hooks for code reusability -- Summary -- Chapter 4: Fetching Data with React APIs -- Technical requirements -- Fetching data using the Fetch API in React -- Fetching data using async/await syntax -- Fetching data using Axios…”
    Libro electrónico
  3. 29663
    Publicado 2023
    Tabla de Contenidos: “…-- Summary -- Chapter 5: Project #2 - Creating a Portable Thing Tracker Using MKR GSM 1400 -- Technical requirements -- Enhancing operations with IoT asset tracking and remote control -- Exploring the advantages of GSM/LTE/NB-IoT communication technologies -- Seamless global connectivity with IoT SIM cards -- Building blocks - sensors and development boards for IoT -- Designing the project architecture -- Schematic design and assembly -- Testing GPS module data -- Activating SIM cards for IoT deployment -- Configuring the Thing, network credentials, cloud variables, and code -- Cloud variables -- Associating a device -- Network -- Coding…”
    Libro electrónico
  4. 29664
    por Neumann, Adrian J.
    Publicado 2024
    Tabla de Contenidos: “…Analysis -- 4.3.1. Model of Global and Situational Meaning -- Relevance -- Meaning-Making Coping stage -- 4.3.2. …”
    Libro electrónico
  5. 29665
    Publicado 2022
    Tabla de Contenidos: “…Intro -- Table of Contents -- About the Author -- About the Technical Reviewer -- Acknowledgments -- Introduction -- Chapter 1: Query Performance Tuning -- The Query Performance Tuning Process -- Performance Issues -- A Repetitive Process -- Understanding What Defines "Good Enough" -- Establishing Comparison Points -- Most Likely Performance Issues -- Common Performance Issues -- Insufficient or Poor Indexes -- Inaccurate or Missing Statistics -- Bad T-SQL -- Problematic Execution Plans -- Excessive Blocking -- Deadlocks -- Non-Set-Based Operations -- Incorrect Database Design -- Poor Execution Plan Reuse -- Frequent Recompilation of Queries -- Summary -- Chapter 2: Execution Plan Generation and the Query Optimizer -- The Query Optimization Process -- Optimization Preparation -- Parsing -- Binding -- Optimization -- Simplification -- Trivial Plan Match -- Optimization Phases -- Generating Parallel Execution Plans -- Execution Plan Caching -- Aging of the Execution Plan -- Summary -- Chapter 3: Methods for Capturing Query Performance Metrics -- Methods to Capture Query Performance Metrics -- Include Client Statistics -- Connection Properties -- SET STATISTICS TIME/IO -- QueryTimeStats in the Execution Plan -- Trace Events (Profiler) -- Dynamic Management Views -- Actively Executing Queries -- Previously Executed Queries -- Query Store -- Extended Events -- Creating an Extended Events Session -- Adding and Configuring Events -- Adding Global Fields to Events -- Using Predicates with Events -- Optional Event Fields -- Defining Targets -- Using the event_file Target -- Using the histogram Target -- Working with Sessions -- Adding Causality Tracking -- Scripting Extended Events -- Live Data Explorer Window -- Filtering Live Data -- Aggregating Live Data -- General Recommendations for Using Extended Events -- Set Max File Size Appropriately…”
    Libro electrónico
  6. 29666
    Publicado 2023
    Tabla de Contenidos: “…Creating G/L Account With Template -- Summary -- Chapter 6: Clearing Open Items -- Objective -- Clearing Open Items -- Automatic Clearing Customizing -- Create Accounts for Clearing differences -- Define a Maximum Exchange Rate Difference -- Check Company Code Setting -- Foreign Currency Valuation -- Exchange Rate Types -- Define Valuation Methods -- Prepare Automatic Postings for Foreign Currency Valuation -- Interest Costs Using Exchange Rate key (KDB) -- Exchange Rate Difference for Open Items/GL Accounts -- Exchange Rate Differences for Open Items - Account Payable -- Summary -- Chapter 7: Maintaining Currency Types and Currency Pairs -- Currencies -- Exchange Rate types: -- Define Standard Quotation for exchange Rates -- Enter Prefixes for Direct/Indirect Quotation Exchange Rates -- Define Translation Ratios for Currency Translation -- Update the following fields -- Enter Exchange Rates -- Summary -- Chapter 8: GR/IR Clearing -- Objective -- GR/IR Clearing -- Invoiced But Not Yet Delivered -- Delivered but not yet invoiced -- Summary -- Chapter 9: Bank -- Introduction -- Defining House Bank -- Define Bank Account for your House Bank -- Bank Statement -- Electronic Bank Statement -- Electronic Bank Statement -- Defining Global Settings for Electronic Bank Statement -- Creating Account symbols -- Assigning Accounts to account symbols -- Creating Keys for Posting Rules -- Defining Posting Rules -- Create Transaction Type -- Assign External Transaction Types to Posting Rules -- Assign Bank Accounts to Transaction types -- Manual Bank Statement -- Create and Assign Business Transactions -- Define Variants for Manual Bank Statement -- Check Deposit -- Define Posting Keys and Posting Rules for Check Deposit -- Creating Account symbols for Check Deposit -- Assigning Accounts to account symbols -- Creating Keys for Posting Rules -- Defining Posting Rules…”
    Libro electrónico
  7. 29667
    Publicado 2024
    Tabla de Contenidos: “…Choosing the correct dependencies for your project -- Risks -- Good criteria -- Installing dependencies -- Locally or globally -- Dependency or development dependency -- Adding new dependency -- Installing all the dependencies -- Removing dependencies -- Understanding the package-lock.json -- Managing dependencies versions -- Outdated dependencies -- Building Isomorphic JavaScript -- Using npm scripts -- Executing packages directly with NPX -- npm alternatives -- Yarn -- PNPM -- Verdaccio -- Publishing your first package -- Registries -- npm account -- Prepare the package -- Reviewing the package -- Publish the package -- Avoid the scoped packages -- Release new versions -- Prevent accidental publishing -- Best practices -- Summary -- Further reading -- Chapter 7: Event-Driven Architecture -- Technical requirements -- Introducing events -- Watching for file changes -- The Node.js event emitter library -- Preventing chaos by organizing the listeners -- Removing listeners when they are not needed -- Your first HTTP server -- Adding an event layer to your modules -- Summary -- Further reading -- Chapter 8: Testing in Node.js -- Technical requirements -- Why is testing important? …”
    Libro electrónico
  8. 29668
    por Held, David
    Publicado 2003
    Libro
  9. 29669
  10. 29670
  11. 29671
    Publicado 1999
    Libro
  12. 29672
  13. 29673
  14. 29674
    por Correa V., José Alberto
    Publicado 2011
    Tabla de Contenidos: “…TRASTORNOS DE LA ALIMENTACIÓN -- TRASTORNOS DE COMPORTAMIENTO -- SÍNDROME DEL NIÑO VULNERABLE -- ATENCIÓN INTEGRAL DEL NIÑO HOSPITALIZADO -- PROGRAMA DE ATENCIÓN INTEGRAL AL NIÑO HOSPITALIZADO Y SU FAMILIA -- METODOLOGÍA -- PAPEL DEL EQUIPO DE SALUD -- FUNCIONES -- SITUACIÓN DEL NIÑO CRÍTICAMENTE ENFERMO -- LA IMPORTANCIA DEL JUEGO Y LA RECREACIÓN -- SITUACIÓN DEL NIÑO AL ALTA -- CONCLUSIÓN -- REFERENCIAS BIBLIOGRÁFICAS -- CAPÍTULO 7: ALIMENTACIÓN DEL NIÑO PREESCOLAR Y ESCOLAR -- NECESIDADES DE ENERGÍA Y NUTRIENTES -- ENERGÍA -- PROTEÍNAS -- LÍPIDOS -- CARBOHIDRATOS -- FIBRA DIETÉTICA -- MINERALES -- VITAMINAS -- ALIMENTACIÓN SALUDABLE -- PATRONES ALIMENTARIOS -- USO DE ALIMENTOS FORTIFICADOS Y SUPLEMENTOS -- PREVENCIÓN DE ENFERMEDADES CRÓNICAS -- REFERENCIAS BIBLIOGRÁFICAS -- CAPÍTULO 8: SOPORTE NUTRICIONAL ENTERAL Y PARENTAL -- INTRODUCCIÓN -- INDICACIONES Y CONTRAINDICACIONES -- ACCESOS -- MATERIAL DE LAS SONDAS -- MÉTODOS DE INFUSIÓN -- TIPOS DE FÓRMULAS -- EVALUACIÓN DEL ESTADO NUTRICIONAL -- REQUERIMIENTOS -- COMPLICACIONES -- MONITOREO -- INDICACIONES CLÍNICAS -- REQUERIMIENTOS -- CONSIDERACIONES SOBRE LOS MACRONUTRIENTES -- MULTIVITAMINAS Y ELEMENTOS TRAZAS -- CONSIDERACIONES SOBRE LA ADMINISTRACIÓN DE LA NP -- MONITOREO -- COMPLICACIONES -- TRANSICIÓN DE LA NP A LA NE -- REFERENCIAS BIBLIOGRÁFICAS -- CAPÍTULO 9: LACTANCIA MATERNA -- INTRODUCCIÓN -- ASPECTOS HISTÓRICOS -- LACTANCIA MATERNA CON PERSPECTIVA DE DERECHOS -- SITUACIÓN GLOBAL Y LOCAL DE LA LACTANCIA MATERNA -- ANATOMÍA DE LAS GLÁNDULAS MAMARIAS -- DUCTOS Y CONDUCTOS GALACTÓFOROS (LACTÍFEROS) -- SENOS GALACTÓFOROS (DE LECHE O LACTÍFEROS) -- LÓBULOS Y LOBULILLOS -- FISIOLOGÍA DE LA LACTANCIA MATERNA -- ETAPAS FISIOLÓGICAS DE LA LACTANCIA -- CARACTERÍSTICAS DE LA LECHE MATERNA -- CALOSTRO -- LECHE DE TRANSICIÓN -- LECHE MADURA -- LECHE DE PRETÉRMINO -- VENTAJAS DE LA LACTANCIA…”
    Libro electrónico
  15. 29675
    por Martínez Pastor, Juan Ignacio
    Publicado 2023
    Tabla de Contenidos: “…SUBCONTRATACIÓN, DESLOCALIZACIÓN Y CADENAS GLOBALES DE PRODUCCIÓN -- 2.3. EL FORDISMO 2.0 -- 2.4. …”
    Libro electrónico
  16. 29676
    Publicado 2016
    Tabla de Contenidos: “…Technical standardization bodies -- 3.1.4. Globalization and economic growth -- 3.2. The European regulatory framework -- 3.2.1. …”
    Libro electrónico
  17. 29677
    Tabla de Contenidos: “…-- Farah Magrabi, Ibrahim Habli, Mark Sujan, David Wong, Harold Thimbleby, Maureen Baker, Enrico Coiera -- Technologies that transform: digital solutions for optimising medicines use in the NHS -- Stephen John Goundrey-Smith -- Communications -- Human factors challenges for the safe use of artificial intelligence in patient care -- Mark Sujan, Dominic Furniss, Kath Grundy, Howard Grundy, David Nelson, Matthew Elliott, Sean White, Ibrahim Habli, Nick Reynolds -- Recording problems and diagnoses in clinical care: developing guidance for healthcare professionals and system designers -- Anoop Dinesh Shah, Nicola J Quinn, Afzal Chaudhry, Ralph Sullivan, Julian Costello, Dermot O'Riordan, Jan Hoogewerf, Martin Orton, Lorraine Foley, Helene Feger, John G Williams -- Editorial -- Welcome to BMJ Health & Care Informatics -- Philip Scott -- Original Article -- Large retrospective analysis on frailty assessment in primary care: electronic Frailty Index versus frailty coding -- Pablo Millares-Martin -- Original Research -- Patient perceptions and interactions with their web portal-based laboratory results -- Sean Robinson, Melissa Reed, Travis Quevillon, Ed Hirvi -- Small interface changes have dramatic impacts: how mandatory fields in electronic medical records increased pertussis vaccination rates in Australian obstetric patients -- Roberto Orefice, Julie A Quinlivan -- Potential impact of data source and interoperability messaging on health information technology (HIT) users: a study series from the United States Department of Veterans Affairs -- Jennifer Herout, Donna Baggetta, Amanda Cournoyer, Aaron S Dietz, Jane Robbins, Kyle Maddox, Jolie Dobre -- Clinician preferences for computerised clinical decision support for medications in primary care: a focus group study -- Katy E Trinkley, Weston W Blakeslee, Daniel D Matlock, David P Kao, Amanda G Van Matre, Robert Harrison, Cynthia L Larson, Nic Kostman, Jennifer A Nelson, Chen-Tan Lin, Daniel C Malone -- Reliability of comorbidity scores derived from administrative data in the tertiary hospital intensive care setting: a cross-sectional study -- Michael Hua-Gen Li, Anastasia Hutchinson, Mark Tacey, Graeme Duke -- Conformity of Diabetes Mobile apps with the Chronic Care Model -- Raheleh Salari, Sharareh R Niakan Kalhori, Marjan Ghazisaeidi, Farhad Fatehi -- Digital innovation evaluation: user perceptions of innovation readiness, digital confidence, innovation adoption, user experience and behaviour change -- Tim Benson -- Dietitians can improve accuracy of prescribing by interacting with electronic prescribing systems -- Susan De Waal, Laurie Lucas, Simon Ball, Tanya Pankhurst -- Lessons learned from a comprehensive electronic patient record procurement process-implications for healthcare organisations -- W Priestman, R Collins, H Vigne, S Sridharan, L Seamer, D Bowen, N J Sebire -- Trend of intestinal infectious diseases recorded at a tertiary care hospital in India: an ICD-10 analysis -- P N Roopalekha Jathanna, Ramya Vijeta, Vinod R Jathanna -- Developing a telerehabilitation programme for postoperative recovery from knee surgery: specifications and requirements -- MReza Naeemabadi, Birthe Dinesen, Ole Kæseler Andersen, Niels Kragh Madsen, Ole Højgaard Simonsen, John Hansen -- Interventions to improve the use of EMRs in primary health care: a systematic review and meta-analysis -- Noura Hamade, Amanda Terry, Monali Malvankar-Mehta -- Web and mobile-based technologies for monitoring high-risk pregnancies -- Haleh Ayatollahi, Malihe Ghalandar Abadi, Morteza Hemmat -- Characteristics of patients with body mass index recorded within the Kent Integrated Dataset (KID) -- Zara Cuccu, Gerrard Abi-Aad, Allison Duggal -- Growth of health literacy research activity in three Middle Eastern countries -- Soheila Bazm, Reihaneh Bazm, Farzaneh Sardari -- Effectiveness of the eCARE programme: a short message service for asthma monitoring -- Lathy Prabhakaran, Yap Chun Wei -- Design and virtual implementation of a biomedical registry framework for the enhancement of clinical trials: colorectal cancer example -- Athanasios Kotoulas, George Lambrou, Dimitrios-Dionysios Koutsouris -- Coding and classifying GP data: the POLAR project -- Christopher Pearce, Adam McLeod, Jon Patrick, Jason Ferrigi, Michael Michael Bainbridge, Natalie Rinehart, Anna Fragkoudi -- Ontology to identify pregnant women in electronic health records: primary care sentinel network database study -- Harshana Liyanage, John Williams, Rachel Byford, Simon de Lusignan -- An intervention study to assess potential effect and user experience of an mHealth intervention to reduce sedentary behaviour among older office workers -- Simone Boerema, Lex van Velsen, Hermie Hermens -- Availability and usage of clinical decision support systems (CDSSs) in office-based primary care settings in the USA -- Xia Jing, Lina Himawan, Timothy Law -- NHS Scotland's Decision Support Platform: a formative qualitative evaluation -- Kathrin Cresswell, Margaret Callaghan, Hajar Mozaffar, Aziz Sheikh -- Two algorithms for the reorganisation of the problem list by organ system -- Daniel B Hier, Joshua Pearson -- Design and implementation of the stacked, synchronised and iconographic timeline-structured electronic patient record in a UK NHS Global Digital Exemplar hospital -- Alan Arthur Hales, David Cable, Eleanor Crossley, Callum Findlay, David Anthony Rew -- e-Therapies in England for stress, anxiety or depression: how are apps developed? …”
    Revista digital
  18. 29678
    Publicado 2017
    Tabla de Contenidos: “…Anwendung ausführen -- Zusammenfassung -- Kapitel 4 - Komponenten und Datenbindung -- Datenbindung in Angular -- Rückblick auf AngularJS 1.x -- Property-Binding -- Event-Bindings -- Das Zusammenspiel von Property- und Event-Bindings -- Bindings im Template -- Two-Way-Bindings -- Eigene Komponenten mit Datenbindung -- Eine Komponente mit Property-Binding -- Implementierung der Komponente mit Property-Bindings -- Komponente registrieren und aufrufen -- Komponenten mit Event-Bindings -- Implementierung der Komponente mit Event-Binding -- Komponente aufrufen -- Komponenten mit Two-Way-Bindings -- Life-Cycle-Hooks -- Ausgewählte Hooks -- Experiment mit Life-Cycle-Hooks -- DateControl mit Life-Cycle-Hooks -- Zusammenfassung -- Kapitel 5 - Pipes -- Überblick -- Built-in Pipes -- Eigene Pipes -- Pure Pipes -- Implementierung einer einfachen Pipe -- Pipes registrieren und nutzen -- Zusammenfassung -- Kapitel 6 - Services und Dependency Injection -- Austauschbarkeit dank Dependency Injection -- Services implementieren und nutzen -- Ein erster Service -- Einen Service global registrieren -- Einen Service nutzen -- Einen Service lokal registrieren -- Arten von Providern -- Token -- useClass -- useValue -- useFactory -- useExisting -- multi -- Konstanten als Token -- Zusammenfassung -- Kapitel 7 - Module -- Motivation -- Eine Angular-typische Modulstruktur -- Shared Modules -- Feature-Modules -- Root-Modules -- Module reexportieren -- Zusammenfassung -- Kapitel 8 - Routing -- Überblick -- Routing und Platzhalter -- Routen einsetzen -- Erste Schritte mit dem Router -- Routing-Konfiguration einrichten -- Root-Komponente einrichten -- AppModule anpassen -- Strukturierung mit Modulen -- Hierarchisches Routing mit Child-Routes -- Überblick zu Child-Routes -- Child-Routes implementieren -- Parametrisierte Routen -- Parameter an Routen übergeben…”
    Libro electrónico
  19. 29679
    Publicado 2018
    Tabla de Contenidos: “…. -- Creating and using an exception filter -- Getting ready -- How to do it... -- Using a filter globally versus using a middleware -- Getting ready -- How to do it... -- There's more... -- Chapter 13: Views, Models, and ViewModels -- Creating and using a ViewModel with AutoMapper -- Getting ready -- How to do it... -- Understanding and using ModelBinding -- Getting ready -- How to do it... -- How it works... -- Creating our own model binder -- Getting ready -- How to do it... -- Understanding and using a value provider -- Getting ready -- How to do it... -- Configuring and using validation -- Getting ready -- How to do it... -- Chapter 14: Razor and Views -- Managing namespaces in views with ViewImports -- Getting ready -- How to do it... -- Creating a strongly typed Partial view -- Getting ready -- How to do it... -- Configuring view and area locations -- Getting ready -- How to do it... -- How it works... -- Using dependency injection in views -- Getting ready -- How to do it... -- Creating HTMLHelpers -- Getting ready -- How to do it... -- How it works... -- Chapter 15: TagHelpers and ViewComponents -- Using Environment, Script, and Link TagHelpers -- Getting ready -- How to do it... -- Using Form TagHelpers -- Getting ready -- How to do it... -- Creating TagHelpers programmatically -- Getting ready -- How to do it... -- There's more... -- Creating a reusable view component -- Getting ready -- How to do it... -- How it works... -- Creating a view component/controller class -- Getting ready -- How to do it... -- How it works... -- Chapter 16: OWIN and Middleware -- Understanding OWIN, Katana, and the new ASP.NET Core HTTP pipeline -- OWIN - an abstraction for decoupling -- Katana - the Microsoft OWIN implementation -- A new OWIN implementation with ASP.NET Core…”
    Libro electrónico
  20. 29680
    Publicado 2018
    Tabla de Contenidos: “…Summary -- Chapter 4: MySQL 8 Data Types -- Overview of MySQL 8 data types -- Numeric data types -- Integer types -- Fixed point types -- Floating point types -- Problems with floating point values -- Bit value type -- Bit value literals -- Practical uses of BIT -- Type attributes -- Overflow handling -- Date and time data types -- DATE, DATETIME, and TIMESTAMP types -- MySQL DATETIME functions -- TIME type -- Time functions -- YEAR type -- Migrating YEAR(2) to YEAR(4) -- String data types -- CHAR and VARCHAR data types -- BINARY and VARBINARY data types -- BLOB and TEXT data types -- ENUM data type -- SET data type -- JSON data type -- Partial updates of JSON values -- Storage requirements for data types -- Choosing the right data type for column -- Summary -- Chapter 5: MySQL 8 Database Management -- MySQL 8 server administration -- Server options and different types of variables -- Server SQL modes -- Setting the SQL mode -- The available SQL modes -- Combination SQL modes -- Strict SQL mode -- The IGNORE keyword -- IPv6 support -- Server side help -- The server shutdown process -- Data directory -- The system database -- Data dictionary tables -- Grant system tables -- Object information system tables -- Log system tables -- The server-side help system tables -- Time zone system tables -- Replication system tables -- Optimizer system tables -- Other miscellaneous system tables -- Running multiple instances on a single machine -- Setting up multiple data directories -- Running multiple MySQL instances on Windows -- Components and plugin management -- MySQL 8 server plugins -- Installing the plugins -- Activate plugin -- Uninstall plugin -- Getting information about the installed plugins -- Roles and permissions -- Caching techniques -- Globalization -- Character sets -- Character set support -- Adding the character set…”
    Libro electrónico