Materias dentro de su búsqueda.
Materias dentro de su búsqueda.
- Development 693
- Application software 600
- Engineering & Applied Sciences 492
- Historia 486
- History 440
- Java (Computer program language) 404
- Computer Science 396
- Python (Computer program language) 308
- Computer programming 291
- Classes socials 233
- Web site development 227
- Design 223
- Programming 222
- Història 212
- Microsoft .NET Framework 193
- Education 188
- Management 181
- Web sites 178
- Computer software 177
- Programming languages (Electronic computers) 171
- Clases sociales 170
- Ensenyament 158
- JavaScript (Computer program language) 155
- Computer programs 154
- Object-oriented programming (Computer science) 154
- C# (Computer program language) 151
- Social aspects 138
- C++ (Computer program language) 133
- Social conditions 128
- Software engineering 122
-
7041por Anderson, Jermaine G.Tabla de Contenidos: “…Utilizing the Multitouch Panel in Device CentralSummary; Chapter 5: Developing for Multiple Screen Sizes; Considerations for Multiple Screen Sizes; Pixel Density; Utilizing Device DPI; Adapting Content to Stage Size; Using the StageScaleMode and StageAlign Classes; Handling Stage Resize Events; Creating the Sprite Layout App Example; Handling Device Orientation; Using the StageOrientation Class; Using the StageOrientationEvent Class; Using Layouts in Flex; Aligning Items in Group Containers; Summary; Chapter 6: Debugging Applications; Setting Breakpoints; Global Error Handling…”
Publicado 2012
Libro electrónico -
7042Publicado 2011Tabla de Contenidos: “…; The Flash Platform; Procedural Versus Object-Oriented Programming; The Document Class; Legacy Code Compatibility; Hello World; What's Next?…”
Libro electrónico -
7043Publicado 2010Tabla de Contenidos: “…Querying Entity Data Models; Query the Model, Not the Database; Your First EDM Query; Where Did the Context and Classes Come From?; The ObjectContext class, SampleEntities; The entity classes; Querying with LINQ to Entities; Writing Your First LINQ to Entities Query; Querying with Object Services and Entity SQL; Why Another Way to Query?…”
Libro electrónico -
7044Publicado 2015Tabla de Contenidos: “…Foreword; Acknowledgments; Introduction; Who This Book Is For; Overview; Installation; Part I: Ruby on Rails Fundamentals; Chapter 1: Ruby Fundamentals; Interactive Ruby; Data Types; Numbers; Strings; Symbols; Arrays; Hashes; Booleans; Constants; Variables; Control Flow; Conditionals; Iteration; Methods; Classes; Class Methods; Inheritance; Summary; Exercises; Chapter 2: Rails Fundamentals; Your First Rails Application; Rails Principles; Convention over Configuration; Don't Repeat Yourself; Rails Architecture; Model; View; Controller; Rails Application Structure; The app Directory…”
Libro electrónico -
7045por Jagger, Jon, 1966-Tabla de Contenidos: “…Front Cover; C# Annotated Standard; Copyright Page; Dedications; Contents; Foreword to the Annotated Standard; Preface to the Annotated Standard; Acknowledgments; About The Authors; Errata To The International Standard; The C# International Standard and Foreword; Introduction; CLI not required; Chapter 1: Scope; Chapter 2: Conformance; Interpreters; Chapter 3: Normative references; Chapter 4: Definitions; Application vs. program; Assembly vs. class files; Accessing class libraries; Programs, assemblies, applications and class libraries; Chapter 5: Notational conventions…”
Publicado 2007
Libro electrónico -
7046por Beattie-Hood, BenTabla de Contenidos: “…Intro -- Table of Contents -- About the Author -- About the Technical Reviewer -- Chapter 1: How TypeScript Came to Be -- Introduction -- History -- The Problem -- Scalable Velocity -- Testing Allows Scale -- Docs Allow Scale -- Types Provide Both Testing and Docs -- Summary -- Chapter 2: Getting Started with the Developer Experience -- Introduction -- Environment and IDE -- No-Frills TypeScript Setup -- Debugging TypeScript -- TypeScript Within a More Realistic Setup -- Honorable Mentions -- Summary -- Chapter 3: TypeScript Basics -- Introduction -- Structural Typing -- JavaScript Types Are Structural Contracts -- Adding Explicit Types to JavaScript -- Optionality -- All The Sugar -- Array and Object Destructuring, Spread, and Rest -- Async -- Generators -- Inferred Types -- Types, Automagically -- Type Widening and Narrowing -- Auto-narrowing, but Not Too Much -- Type Assertions -- Compile-Time Assertions -- as Keyword -- satisfies Keyword -- never Keyword -- Runtime Assertions -- typeof, instanceof, and in Operators -- Custom Assertions -- Existing Tools -- any and unknown Keywords -- Caution: Handle with Care -- Parameterized Values -- Index Signatures -- Function Signatures -- Constructor Signatures -- A New Mental Model -- Summary -- Chapter 4: Classes -- Introduction -- Classes -- Constructors -- Access Modifiers -- Fields -- Getters and Setters -- Methods -- Inheritance -- Implements -- Static Modifier -- Warning 1: Classes Are Not Types -- Warning 2: Classes Can Cause Scope Bleed -- Summary -- Chapter 5: Computed Types -- Introduction -- Type Aliases -- Using Type Aliases -- Union Types -- Intersection Types -- Generic Types -- Type Parameters -- const Modifier on Generic Parameters -- Generic Constraints -- Inferred Type Keywords -- typeof Type Inference Keyword -- keyof Type Inference Keyword…”
Publicado 2023
Libro electrónico -
7047Publicado 2023Tabla de Contenidos: “…Cover -- Title Page -- Copyright and Credits -- Dedications -- Foreword -- Contributors -- Table of Contents -- Preface -- Part 1: Handshaking and Networking -- Chapter 1: Setting up a Server -- Technical requirements -- Introduction to a network -- Understanding the ENetMultiplayerPeer class -- What is the ENet library? -- What is the UDP protocol? …”
Libro electrónico -
7048Publicado 2024Tabla de Contenidos: “…Cover -- Title Page -- Copyright and Credits -- Contributors -- Table of Contents -- Preface -- Part 1: Clang Setup and Architecture -- Chapter 1: Environment Setup -- Technical requirements -- CMake as project configuration tool -- Ninja as build tool -- Getting to know LLVM -- Short LLVM history -- OS support -- Linux -- Darwin (macOS) -- Windows -- LLVM/Clang project structure -- Source code compilation -- Configuration with CMake -- Build -- The LLVM debugger, its build, and usage -- Test project - syntax check with a Clang tool -- Summary -- Further reading -- Chapter 2: Clang Architecture -- Technical requirements -- Getting started with compilers -- Exploring the compiler workflow -- Frontend -- Lexer -- Parser -- The codegen -- Clang driver overview -- Example program -- Compilation phases -- Tool execution -- Combining it all together -- Debugging Clang -- Clang frontend overview -- Frontend action -- Preprocessor -- Parser and sema -- Summary -- Further reading -- Chapter 3: Clang AST -- Technical requirements -- AST -- Statements -- Declarations -- Types -- AST traversal -- DeclVisitor test tool -- Visitor implementation -- Recursive AST visitor -- AST matchers -- Explore Clang AST with clang-query -- Processing AST in the case of errors -- Summary -- Further reading -- Chapter 4: Basic Libraries and Tools -- Technical requirements -- LLVM coding style -- LLVM basic libraries -- RTTI replacement and cast operators -- Containers -- String operations -- Sequential containers -- Map-like containers -- Smart pointers -- Clang basic libraries -- SourceManager and SourceLocation -- Diagnostics support -- LLVM supporting tools -- TableGen -- LLVM test framework -- Clang plugin project -- Environment setup -- CMake build configuration for plugin -- Recursive visitor class -- Plugin AST consumer class -- Plugin AST action class -- Plugin code…”
Libro electrónico -
7049Publicado 2024Tabla de Contenidos: “…Cover -- Title Page -- Copyright and credits -- Dedication -- Contributors -- Table of Contents -- Preface -- Part 1: Building Your App -- Chapter 1: Get Started with Kotlin Android Development -- Technical requirements -- Introduction to Kotlin -- Kotlin syntax, types, functions and classes -- Creating a Kotlin project -- Creating functions -- Creating classes -- Migrating from Java to Kotlin -- Kotlin features for Android developers -- Summary -- Chapter 2: Creating Your First Android App -- Technical requirements -- Android Studio overview -- Creating your Android app -- Exploring the new project -- Android Studio tips and tricks -- Some useful shortcuts -- Summary -- Chapter 3: Jetpack Compose Layout Basics -- Technical requirements -- Introduction to Jetpack Compose -- Declarative versus imperative UIs -- Composable functions -- Previews -- Modifiers -- Jetpack Compose layouts -- Column -- Row -- Box -- Lists -- Summary -- Chapter 4: Design with Material Design 3 -- Technical requirements -- Material Design 3 and its features -- Material components -- Using Material Design in our apps -- Adding Material Design 3 color schemes -- Designing UIs for large screens and foldables -- Using WindowSizeClass -- Making our app accessible -- Summary -- Part 2: Using Advanced Features -- Chapter 5: Architect Your App -- Technical Requirements -- Introduction to app architecture -- Deep Diving into MVVM -- How LazyColumn works -- Benefits of LazyColumn -- Creating a composable -- Jetpack libraries -- Dependency injection -- Migrating to Kotlin Gradle DSL and using version catalogs -- Migrating our app to Kotlin Gradle DSL -- Using a versions catalog -- Summary -- Chapter 6: Network Calls with Kotlin Coroutines -- Technical requirements -- Setting up Retrofit -- Introduction to Kotlin coroutines -- Coroutine basics…”
Libro electrónico -
7050por Reddy, MartinTabla de Contenidos: “…-- API examples -- Layers of APIs -- A real-life example -- Libraries, frameworks, and software development kits -- File formats and network protocols -- About this book -- 2 - Qualities -- Model the problem domain -- Provide a good abstraction -- Model the key objects -- Solve the core problems -- Hide implementation details -- Physical hiding: Declaration versus definition -- Logical hiding: Encapsulation -- Hide member variables -- Hide implementation methods -- Hide implementation classes -- Minimally complete -- Don't overpromise -- Don't repeat yourself -- Convenience APIs -- Add virtual functions judiciously -- Easy to use -- Discoverable -- Difficult to misuse -- Consistent -- Orthogonal -- Robust resource allocation -- Platform independent -- Loosely coupled -- Coupling by name only -- Reducing class coupling -- Intentional redundancy -- Manager classes -- Callbacks, observers, and notifications -- Callback functions -- Observers -- Notifications -- Stable, documented, and tested -- 3 - Patterns -- Pimpl idiom -- Using pimpl -- Copy semantics -- Pimpl and smart pointers -- Advantages of pimpl -- Disadvantages of pimpl -- Opaque pointers in C -- Singleton -- Implementing singletons in C++ -- Singletons and thread safety -- Singleton versus dependency injection…”
Publicado 2024
Libro electrónico -
7051por Jha, Sandhya R.Tabla de Contenidos: “…Cover; Title; Copyright; Contents; Introduction: Complicating the Narrative-Stories of Living Race in America; 1 The Civil Rights Movement Fifty Years Later; 2 Border Battles; 3 Murky Terminology; 4 (The Myth of) The Angry Black Man; 5 Perpetually Liminal; 6 Isn't It Really about Class?; 7 Race and Religion Post 9/11; 8 We Are Each Others' Victims Siblings; 9 Navigating Privilege; 10 #Every28hours; 11 "But I Don't Think of You As…”
Publicado 2015
Click para texto completo desde fuera UPSA
Click para texto completo desde UPSA
Libro electrónico -
7052por Joy, David, 1966-Tabla de Contenidos: “…-- Mark 10:17-31 in the light of the issues of poor and their representation : a postcolonial reading -- Mark 7:24-30 in the light of race, gender, and hybridity : a postcolonial reading -- Mark 5:1-20 in the light of the issues of class, nationalism, and subalternity : a postcolonial biblical reading -- Hermeneutical issues and concluding summary…”
Publicado 2008
Universidad Loyola - Universidad Loyola Granada (Otras Fuentes: Biblioteca de la Universidad Pontificia de Salamanca)Enlace del recurso
Libro electrónico -
7053por Van Emden, H. F.Tabla de Contenidos: “…The world of insects -- External features of insects - structure and function -- The major divisions of the Insecta -- Subclass Apterygota -- Subclass Pterygota, division Exopterygota, Palaeopteran orders -- Subclass Pterygota, division Exopterygota, Orthopteroid orders -- Subclass Pterygota, division Exopterygota, Hemipteroid orders -- Subclass Pterygota, division Endopterygota, lesser orders -- Subclass Pterygota, division Endopterygota, order Lepidoptera (butterflies and moths) -- Subclass Pterygota, division Endopterygota, order Diptera (true flies) -- Subclass Pterygota, division Endopterygota, order Hymenoptera (sawflies, ants, bees and wasps) -- Subclass Pterygota, division Endopterygota, order Coleoptera (beetles) -- Class Arachnida…”
Publicado 2013
Biblioteca Universitat Ramon Llull (Otras Fuentes: Universidad Loyola - Universidad Loyola Granada, Biblioteca de la Universidad Pontificia de Salamanca)Libro electrónico -
7054Publicado 2013Tabla de Contenidos: “…Conté: Student's book with answers with downloadable software / Annette Capel, Wendy Sharp (279 pàgines ; 28 cm) -- Student's book without answers with downloadable software / Annette Capel, Wendy Sharp -- Teacher's book / Annette Capel, Wendy Sharp -- Class audio CDs / Annette Capel, Wendy Sharp -- Workbook with answers with audio CD (120 pàgines ; 28 cm) / Peter Sunderland, Erica Whetterm -- Workbook without answers with audio CD / Peter Sunderland, Erica Whetterm -- Presentation plus (1 DVD-ROM) / Annette Capel, Wendy Sharp, Peter Sunderland, Erica Whettem…”
Microfilme -
7055por Love, MarkTabla de Contenidos: “…""TABLE OF CONTENTS""; ""FOR TEACHERS AND CLASS LEADERSâ€?""; ""INTRODUCTION""; ""1 THEY SHALL NAME HIM EMMANUEL""; ""2 “UNLESS YOUR RIGHTEOUSNESS EXCEEDSâ€?…”
Publicado 2000
Click para texto completo desde fuera UPSA
Click para texto completo desde UPSA
Libro electrónico -
7056por Fabozzi, Frank J.Tabla de Contenidos: “…Introduction -- Issuer motivation for securitizing assets and the goals of securitizing -- Structuring agency MBS deals -- Structuring nonagency deals -- Credit enhancements -- Use of interest rate derivatives in securitization transactions -- Operational issues in securitization -- Collateral classes in ABS : retail loans -- Asset-backed commercial paper conduits and other structured vehicles -- Securitization of future cash flows : future revenues, operating revenues, and insurance profits -- Introduction to collateralized debt obligations -- Types of collateralized debt obligations -- Structuring and analysis of CDOs -- Benefits of securitization to financial markets and economies -- Concerns with securitization's impact on financial markets and economies…”
Publicado 2008
Biblioteca Universitat Ramon Llull (Otras Fuentes: Universidad Loyola - Universidad Loyola Granada, Biblioteca de la Universidad Pontificia de Salamanca)Libro electrónico -
7057por Altman, Yair M.Tabla de Contenidos: “…Front Cover; Dedication; Contents; Preface; Chapter 1: Introduction to Java in MATLAB®; Chapter 2: Using Non-GUI Java Libraries in MATLAB®; Chapter 3: Rich GUI Using Java Swing; Chapter 4: Uitools; Chapter 5: Built-In MATLAB® Widgets and Java Classes; Chapter 6: Customizing MATLAB® Controls; Chapter 7: The Java Frame; Chapter 8: The MATLAB® Desktop; Chapter 9: Using MATLAB® from within Java; Chapter 10: Putting It All Together; Appendix A: What Is Java?…”
Publicado 2012
Biblioteca Universitat Ramon Llull (Otras Fuentes: Universidad Loyola - Universidad Loyola Granada, Biblioteca de la Universidad Pontificia de Salamanca)Libro electrónico -
7058Publicado 2004Tabla de Contenidos: “…Group identities and hostility across borders : affairs of ethnicities, classes, and sects -- ch. 10. Disgust and horror -- ch. 11. …”
Biblioteca Universitat Ramon Llull (Otras Fuentes: Universidad Loyola - Universidad Loyola Granada, Biblioteca de la Universidad Pontificia de Salamanca)Libro electrónico -
7059Publicado 2012Tabla de Contenidos: “…Resource Frontiers: Palawan, the Calamianes Islands and Esperanza; 3. Economic, Class and Status Relations in Esperanza; 4. The 'Poor Moral Fisher':Local Conceptions of Environmental Degradation, Fishing and Poverty in Esperanza; 5. …”
Libro electrónico -
7060Publicado 2017Tabla de Contenidos: “…Preliminaries -- 3 The BRICS Countries: Time and Space in Moral Narratives of Development -- 4 Russia between East, West and North: Comments on the History of Moral Mapping -- 5 Digging for Class: Thoughts on the Writing of a Global History of Social Distinction -- 6 North–South and the Question of Recognition: A Constellation Saturated with Tensions -- 7 On Spaces and Experiences: Modern Displacements, Interpretations and Universal Claims -- 8 The South as Exile -- Index…”
Libro electrónico