Materias dentro de su búsqueda.
Materias dentro de su búsqueda.
- Historia 2,829
- Crítica e interpretación 1,807
- Aristóteles 1,784
- Història 1,114
- Colecciones 1,094
- Platón 1,092
- Literatura latina clásica 1,031
- Filosofía 1,024
- Filosofía griega 977
- Filosofía antigua 955
- Traducción al francés 674
- Aristòtil 560
- Literatura griega clásica 557
- Literatura griega 553
- Tragedia griega 448
- Crítica i interpretació 443
- Política 408
- Plató 407
- Poesía latina clásica 384
- Biblia 321
- Traducción al español 318
- Metafísica 315
- Tecnología 282
- Technology 279
- Prosa latina clásica 259
- Obres anteriors al 1800 257
- Filosofia antiga 244
- Política y gobierno 240
- Bíblia 225
- Sermones 223
-
45641por M., RajaramTabla de Contenidos: “…Cover -- Contents -- Preface -- RoadMap to the Syllabus -- About the Authors -- Part I: Fundamentals of Computer -- Chapter 0: Introduction to Computers -- 0.1 Introduction -- 0.2 Characteristics of Computers -- 0.3 Evolution of Computers -- 0.4 Computer Generations -- 0.4.1 First Generation (1940-1956): Vacuum Tubes -- 0.4.2 Second Generation (1956-1963): Transistors -- 0.4.3 Third Generation (1964 to Early 1970s): Integrated Circuits -- 0.4.4 Fourth Generation (Early 1970s Till Date): Microprocessors -- 0.4.5 Fifth Generation (Present and Beyond): Artificial Intelligence -- 0.5 Classification of Computers -- 0.5.1 Micro Computers -- 0.5.2 Mini Computers -- 0.5.3 Mainframe Computer -- 0.5.4 Super Computers -- 0.6 Application of Computers -- 0.7 Basic Computer Organization -- 0.7.1 Hardware -- 0.8 Number system -- 0.8.1 Types of Number System -- 0.8.2 Conversion between Number Bases -- Summary -- Exercises -- Part II: Basics of C Programming -- Chapter 1: Introduction to 'C' -- 1.1 Introduction to C -- 1.2 About ANSI C Standard -- 1.3 Machine, Assembly and High-Level Language -- 1.3.1 Assembly Language -- 1.3.2 High-Level Language -- 1.4 Assembler, Compiler and Interpreter -- 1.5 Structure of a C Program -- 1.6 Programming Rules -- 1.7 Executing the C Program -- 1.8 Standard Directories -- 1.9 The first C program -- 1.10 Advantages of C -- 1.11 Header Files -- 1.12 Problem-Solving Techniques -- 1.13 Algorithm -- 1.14 Analysing Algorithm -- 1.15 Rate of Growth -- 1.15.1 Program Design -- 1.16 Classification of Algorithms -- Summary -- Exercises -- Chapter 2: The C Declarations -- 2.1 Introduction -- 2.2 The C Character Set -- 2.3 Delimiters -- 2.4 Types of Tokens -- 2.5 The C Keywords -- 2.6 Identifiers -- 2.7 Constants -- 2.7.1 Numerical Constants -- 2.7.2 Character Constant -- 2.8 Variables -- 2.9 Rules for Defining Variables -- 2.10 Data Types…”
Publicado 2014
Libro electrónico -
45642por Dowswell, KurtTabla de Contenidos: “…Expanding Your Conversation to a New Window -- Shifting the Conversation to the Right -- Utilizing Inline Chat -- Discovering Quick Chat -- Defining Prompt Engineering with Copilot Chat -- Understanding the Basics -- Prompting for Code -- Prompting for Solutions -- Having a Single Clear Objective -- Specifying a Specific Technology -- Keeping Prompts Short -- Gaining Context in Chat -- Open Tabs Context -- Editor Context -- File Context -- Selection Context -- Commanding Your Conversation with Precision -- Querying with @workspace -- Learning with /explain -- Generating Tests with /tests -- Finding a Fix with /fix -- Scaffolding with /new -- Crafting with /newNotebook -- Engaging with @vscode -- Inquiring with /api -- Learning with @terminal -- Conclusion -- Part III Practical Applications of GitHub Copilot -- Chapter 5 Learning a New Programming Language -- Introducing Language Education with Copilot -- Setting Up Your Development Environment -- Prerequisites -- Setup Guide -- Learning the Basics -- Prerequisites -- Learning C# with Copilot -- Creating a Console Application -- Prerequisites -- Creating a C# Console Application with Copilot -- Explaining Code with Copilot -- Adding New Code -- Learning to Test -- Creating Context with Selection -- Creating Context with Tags -- Running Tests -- Conclusion -- Reference -- Chapter 6 Writing Tests with Copilot -- Establishing the Example Project -- Prerequisites -- Adding Unit Tests to Existing Code -- Driving Unit Test Creation with Comments -- Using Inline Chat to Generate Tests -- Exploring Behavior-Driven Development with Copilot -- Adding User Accounts -- Setup -- End-to-End Tests -- Conclusion -- Chapter 7 Diagnosing and Resolving Bugs -- Establishing the Example Project -- Prerequisites -- Fixing Syntax Errors -- Resolving Runtime Exceptions -- Setup -- Resolving Terminal Errors -- Conclusion…”
Publicado 2024
Libro electrónico -
45643Publicado 2024Tabla de Contenidos: “…-- Catalyst's foundation -- Playbook organization -- Catalyst engagements -- Leveraging the Catalyst Knowledge Hub -- Finding value in a C4E -- Team enablement -- Metrics and KPIs -- Staffing -- Summary -- Questions -- Further reading -- Answers…”
Libro electrónico -
45644
-
45645por Heidegger, Martin
Publicado 2022Biblioteca Universitat Ramon Llull (Otras Fuentes: Biblioteca de la Universidad Pontificia de Salamanca, Universidad Loyola - Universidad Loyola Granada)Libro electrónico -
45646
-
45647
-
45648
-
45649
-
45650por Hales, JasonTabla de Contenidos: “…Cover -- FM -- Copyright -- Table of Contents -- Preface -- Chapter 1: Hello C# -- Introduction -- Running and Developing C# with the .NET CLI -- Creating Programs with the CLI and VS Code -- Basic Anatomy of a C# Program -- Exercise 1.01: Creating a Console App that Says "Hello World -- Top-Level Statements -- Declaring Variables -- Declaring Variables Explicitly -- Declaring Variables Implicitly -- Explicit versus Implicit Declaration -- Exercise 1.02: Assigning Variables to User Inputs -- Data Types -- Strings -- Exercise 1.03: Checking String Immutability -- Comparing Strings -- Numeric Types -- Exercise 1.04: Using the Basic Arithmetic Operators -- Classes -- Dates -- Exercise 1.05: Using Date Arithmetic. -- Formatting Dates -- Logical Operators and Boolean Expressions -- Using if-else Statements -- Exercise 1.06: Branching with if-else -- The Ternary Operator -- Reference and Value Types -- Exercise 1.07: Grasping Value and Reference Equality -- Default Value Types -- Enhancing Decision Making with the switch Statement -- Exercise 1.08: Using switch to Order Food -- Iteration Statements -- while -- Exercise 1.09: Checking Whether a Number is Prime with a while Loop -- Jump Statements -- do-while -- Arrays -- for Loops -- Exercise 1.10: Ordering an Array Using Bubble Sort -- foreach Statements -- File Handling -- FileAccess -- FileMode -- Exercise 1.11: Reading Content from Text Files -- Disposable Objects -- Exercise 1.12: Writing to a Text File -- Exceptions -- Exercise 1.13: Handling Invalid User Inputs with try/catch -- Activity 1.01: Creating a Guessing Game -- Summary -- Chapter 2: Building Quality Object-Oriented Code -- Introduction -- Classes and Objects -- Constructors -- Fields and Class Members -- Exercise 2.01: Creating Classes and Objects -- Reference Types -- Properties -- Object Initialization…”
Publicado 2022
Libro electrónico -
45651
-
45652Publicado 1790Biblioteca de la Universidad de Navarra (Otras Fuentes: Biblioteca Universidad Eclesiástica San Dámaso)Ver edición digitalizada del t.1
Ver edición digitalizada del t.2
Ver edición digitalizada del t.3
Ver edición digitalizada del t.4
Ver edición digitalizada del t.5
Ver edición digitalizada del t.8
Libro -
45653
-
45654por Vincent de Beauvais, 1190?-1264
Publicado 2011Biblioteca Universidad Eclesiástica San Dámaso (Otras Fuentes: Red de Bibliotecas de la Archidiócesis de Granada, Universidad Loyola - Universidad Loyola Granada, Biblioteca Central de Capuchinos de España, Biblioteca de Pastoral Madrid, Biblioteca Universitat Ramon Llull, Biblioteca Diocesana Bilbao, Biblioteca Provicincial Misioneros Claretianos - Provincia de Santiago, Bibliotecas de la Diócesis de Teruel y Albarracín, Biblioteca de la Universidad Pontificia de Salamanca, Red de Bibliotecas de la Diócesis de Córdoba, Biblioteca del Instituto Superior de Teología de las Islas Canarias, Biblioteca de la Universidad de Navarra, Biblioteca del Instituto Diocesano de Teología y Pastoral de Bilbao)Libro -
45655por Fernandez del Barco y la Vega, AlonsoTabla de Contenidos: “…En la p. 1 consta el 19 de Julio de este año, como fecha del auto de prisión, este auto se dictó en 1737. Sign.: A-C2, D1. Catedral de Plasencia. Cabildo. Laso de la Vega Córdova, Francisco (O.P.) (1662-1738). …”
Publicado 1733
Colección -
45656Publicado 2023Tabla de Contenidos: “…Caso empresa minera Yanaquihua S.A.C. (MYSAC) y los microcontratistas de mineros artesanales -- 3.1.1.1.1. …”
Libro electrónico -
45657Publicado 2017Tabla de Contenidos: “…Native and foreign machine architecture -- Compiling a C program -- The native compilation -- The cross-compilation -- Compiling a kernel module -- The Kernel and DTS files -- Recompiling the kernel -- The device tree -- What is a device driver? …”
Libro electrónico -
45658Publicado 2002Tabla de Contenidos: “…2.10 Handling a zip File Inside a String -- Problem -- Solution -- Discussion -- See Also -- 2.11 Archiving a Tree of Files into a Compressed tar File -- Problem -- Solution -- Discussion -- See Also -- 2.12 Sending Binary Data to Standard Output Under Windows -- Problem -- Solution -- Discussion -- See Also -- 2.13 Using a C++-like iostream Syntax -- Problem -- Solution -- Discussion -- See Also -- 2.14 Rewinding an Input File to the Beginning -- Problem -- Solution -- Discussion -- See Also -- 2.15 Adapting a File-like Object to a True File Object -- Problem -- Solution -- Discussion -- See Also -- 2.16 Walking Directory Trees -- Problem -- Solution -- Discussion -- See Also -- 2.17 Swapping One File Extension for Another Throughout a Directory Tree -- Problem -- Solution -- Discussion -- See Also -- 2.18 Finding a File Given a Search Path -- Problem -- Solution -- Discussion -- See Also -- 2.19 Finding Files Given a Search Path and a Pattern -- Problem -- Solution -- Discussion -- See Also -- 2.20 Finding a File on the Python Search Path -- Problem -- Solution -- Discussion -- See Also -- 2.21 Dynamically Changing the Python Search Path -- Problem -- Solution -- Discussion -- See Also -- 2.22 Computing the Relative Path from One Directory to Another -- Problem -- Solution -- Discussion -- See Also -- 2.23 Reading an Unbuffered Character in a Cross-Platform Way -- Problem -- Solution -- Discussion -- See Also -- 2.24 Counting Pages of PDF Documents on Mac OS X -- Problem -- Solution -- Discussion -- See Also -- 2.25 Changing File Attributes on Windows -- Problem -- Solution -- Discussion -- See Also -- 2.26 Extracting Text from OpenOffice.org Documents -- Problem -- Solution -- Discussion -- See Also -- 2.27 Extracting Text from Microsoft Word Documents -- Problem -- Solution -- Discussion -- See Also -- 2.28 File Locking Using a Cross-Platform API…”
Libro electrónico -
45659Publicado 2013Tabla de Contenidos: “…Intro -- Workforce Asset Management Book of Knowledge -- Contents -- Foreword -- Preface -- Acknowledgments -- Introduction -- UNIT ONE Groundwork for Workforce Asset Management -- CHAPTER ONE Introduction and Background -- 1.1 WORKFORCE ASSET MANAGEMENT: A CROSS‐DISCIPLINARY SPECIALTY -- (a) Cross‐Disciplines of Workforce Asset Management -- (b) Workforce Asset Management Applications -- (c) Workforce Asset Management and Value Creation: A Call to Action -- 1.2 INCREASING BUSINESS NEED FOR WORKFORCE MANAGEMENT TECHNOLOGY -- (a) Specific Business Problems -- (b) Know What You Want the Technology to Do -- 1.3 EVOLUTION OF WORKFORCE ASSET MANAGEMENT TECHNOLOGY -- (a) Evolution of Timekeeping Systems -- (b) Rethinking Where the Practice of Workforce Asset Management Belongs -- (c) The Multifaceted Role of Workforce Asset Management Professionals -- (d) Careers and Certification -- (e) Spotlight on Innovation and Understanding -- NOTES -- CHAPTER TWO Principles of Workforce Asset Management -- 2.1 THE A.C.T.I.V.E. PRINCIPLES -- 2.2 SUSTAINING THE WAM STRATEGIC VISION -- (a) Continuous Leadership Engagement -- (b) Vision Integrity Checks -- 2.3 A NEW MODEL: WORKFORCE MANAGEMENT OFFICE -- (a) Defining the New WMO Model -- (b) Engaging the WMO -- UNIT TWO The Framework for the Organization -- CHAPTER THREE Changing the Organization -- 3.1 DEVELOPING THE BUSINESS CASE -- (a) Selecting a Team to Develop the Business Case -- (b) Preliminary and Final Business Cases -- (c) Techniques to Define the Problem -- (d) Create the Business Case -- 3.2 FINANCIAL PLANNING AND RETURN ON INVESTMENT -- (a) Developing a Return on Investment for Small versus Large Companies -- (b) Considerations for a Smaller Business WFM System ROI -- (c) Estimating Cost Savings -- (d) Calculation Tables -- (e) ROI for All Organizations-Scalability and Due Diligence…”
Libro electrónico -
45660por Norton, TerryTabla de Contenidos: “…-- Working with C# script files -- Time for action - create a C# script file -- What just happened? -- Introducing the MonoDevelop code editor -- Syncing C# files between MonoDevelop and Unity -- Time for action - opening LearningScript in MonoDevelop -- What just happened? …”
Publicado 2013
Libro electrónico