Search Results - ((((java programming) OR ((games OR james) programming))) OR (games programming))

Search alternatives:

  1. 301

    HaXe 2 Beginner's Guide. by Dasnois, Benjamin

    Published 2011
    Table of Contents: “…; A program with some interaction; Time for action-Interacting with the user; What just happened?…”
    Full text (MFA users only)
    Electronic eBook
  2. 302

    Immigrant youth, hip hop, and online games : alternative approaches to the inclusion of working-class and second generation migrant teens by Franz, Barbara, 1968-

    Published 2015
    Table of Contents: “…Chapter 1: Diversity and Identity: Political History, Immigration Law and Identity Markers -- Working with Inner-City Youth -- Chapter 2: Social Networks: Stronger and Weaker Ties in Diverse Webs -- Chapter 3: Internet Games: Games for Change? / Barbara Franz, Fares Kayali, Gerit Götzenbrucker, Vera Schwarz, Jürgen Pfeffer, and Peter Purgathofer -- Chapter 4: Between Jihadism, Vulgarism and Identity Creation: Turkish Underground Rap in Vienna, Austria -- Chapter 5: The Social Worker: Back Bone or How Small Local Programs Can Make Remarkable Differences.…”
    Full text (MFA users only)
    Electronic eBook
  3. 303
  4. 304
  5. 305

    EJB 3 developer guide : a practical guide for developers and architects to the Enterprise Java Beans standard by Sikora, Michael

    Published 2008
    Table of Contents: “…Cover -- Table of Contents -- Preface -- Chapter 1: Introduction to the EJB 3 Architecture -- Introduction to the Java EE Architecture -- The EJB 3 Architecture -- EJB Container Services -- The JPA Persistence Engine -- EJB 3 Compared with Earlier Versions -- Getting Started -- Installing GlassFish -- Testing the Installation -- Accessing the Administrator Console -- Shutting Down GlassFish -- Downloading Example Source Code -- Summary -- Chapter 2: Session Beans -- Introduction -- Stateless Session Beans -- Annotations -- Creating a Session Bean Client -- Running the Example -- The Program Directory Structure -- The Ant Build Script -- The Application Client Container -- Stateless Session Bean's LifeCycle -- Stateful Session Beans -- Stateful Session Bean's LifeCycle -- Local Interfaces -- Summary -- Chapter 3: Entities -- Introduction -- EJB 3 Entities -- Comparison with EJB 2.x Entity Beans -- Mapping an Entity to a Database Table -- Introducing the EntityManager -- Packaging and Deploying Entities -- The Program Directory Structure -- Building the Application -- Field-Based Annotations -- Generating Primary Keys -- Table Strategy -- Sequence Strategy -- Identity Strategy -- Auto Strategy -- Overriding Metadata Defaults -- Summary -- Chapter 4: Object/Relational Mapping -- O/R Mapping Default Behavior -- A Banking Example Application -- Testing the Application -- O/R Mapping Overriding Defaults -- Customer Entity -- Account Entity -- Address Entity -- BankServiceBean -- O/R Mapping Additional Annotations -- Referee Class -- BankServiceBean -- Composite Primary Keys -- O/R Inheritance Mapping -- SINGLE_TABLE Strategy -- JOINED Strategy -- Table per Concrete Class Strategy -- Summary -- Chapter 5: The Java Persistence Query Language -- Introduction -- Simple Queries -- Projection -- Conditional Expressions -- Aggregate Functions -- GROUP BY -- HAVING -- Queries with Relationships -- Joins -- Inner Joins -- Outer Joins -- Fetch Joins -- Collection Comparison Expressions -- Constructor Expressions -- SubQueries -- Functions -- CONCAT -- SUBSTRING -- TRIM -- LOWER and UPPER -- LENGTH -- LOCATE -- ABS -- SQRT -- MOD -- SIZE -- Queries with Parameters -- Positional Parameters -- Named Parameters -- Named Queries -- Handling Date and Time -- @Temporal annotation -- Queries with Date Parameters -- Datetime Functions -- Bulk Update and Delete -- Native SQL -- Summary -- Chapter 6: Entity Manager -- Application-managed Entity Manager -- Entity Manager Merge -- Entity Manager Methods -- remove() -- contains() -- flush() -- setFlushMode() -- refresh() -- clear() -- Cascade Operations -- persist -- remove -- merge -- refresh -- all -- Extended Persistence Context -- Entity LifeCycle Callback Methods -- Entity Listeners -- Summary -- Chapter 7: Transactions -- Introduction -- Container-Managed Transaction Demarcation -- SUPPORTS -- NOT_SUPPORTED -- REQUIRED -- REQUIRES_NEW -- MANDAT.…”
    Full text (MFA users only)
    Electronic eBook
  6. 306

    Essential Java for scientists and engineers by Hahn, Brian D.

    Published 2002
    Table of Contents: “…Getting going -- Java programming basics -- Solving a problem in Java -- More on loops -- Debugging -- Arrays and matrices -- Inheritance -- Graphical user interfaces (GUIs) -- Input/output -- Exceptions -- Simulation -- Modelling with matrices -- Introduction to numerical methods.…”
    Full text (MFA users only)
    Electronic eBook
  7. 307

    Test-driven Java development : invoke TDD principles for end-to-end application development by Farcic, Viktor, Garcia, Alex (Computer programmer)

    Published 2018
    Subjects: “…Java (Computer program language)…”
    Full text (MFA users only)
    Electronic eBook
  8. 308

    JavaScript Mobile Application Development. by Saleh, Hazem

    Published 2014
    Subjects: “…JavaScript (Computer program language)…”
    Full text (MFA users only)
    Electronic eBook
  9. 309

    Professional JavaScript for Web Developers by Frisbie, Matt

    Published 2019
    Subjects: “…JavaScript (Computer program language)…”
    Full text (MFA users only)
    Electronic eBook
  10. 310

    Professional JavaScript frameworks : Prototype, YUI, Ext JS, Dojo and MooTools by Orchard, Leslie M. (Leslie Michael), 1975-

    Published 2009
    Subjects: “…JavaScript (Computer program language)…”
    Full text (MFA users only)
    Electronic eBook
  11. 311

    JavaScript for data science by Gans, Maya

    Published 2020
    Subjects: “…JavaScript (Computer program language)…”
    Full text (MFA users only)
    Electronic eBook
  12. 312

    Professional BlazeDS : creating rich Internet applications with Flex and Java by Tiwari, Shashank

    Published 2009
    Subjects: “…Java (Computer program language)…”
    Full text (MFA users only)
    Electronic eBook
  13. 313
  14. 314

    JavaScript JSON cookbook : over 80 recipes to make the most of JSON in your desktop, server, web, and mobile applications by Rischpater, Ray

    Published 2015
    Subjects: “…JavaScript (Computer program language)…”
    Full text (MFA users only)
    Electronic eBook
  15. 315
  16. 316

    Operations research by Murthy, P. Rama

    Published 2007
    Table of Contents: “…Cover -- Preface -- Contents -- Chapter-1 Historical Development -- Chapter-2 Linear Programming Models (Resource allocation Models) -- Chapter-3 Linear Programming models (Solution by Simplex method) Resource Allocation Model -- Maximisation Case -- Chapter-4 Linear Programming -- II (Transportation Model) -- Chapter-5 Linear Programming -- III (Assignment Model) -- Chapter-6 Sequencing -- Chapter-7 Replacement Model -- Chapter-8 Inventory Control -- Chapter-9 Waiting Line Theory or Queuing Model -- Chapter-10 Theory of Games or Competitive Stratagies…”
    Full text (MFA users only)
    Electronic eBook
  17. 317

    Learning JavaScript data structures and algorithms : understand and implement classic data structures and algorithms using JavaScript by Groner, Loiane

    Published 2014
    Table of Contents: “…Cover; Copyright; Credits; About the Author; Acknowledgments; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: JavaScript -- A Quick Overview; Setting up the environment; The browser is enough; Using web servers (XAMPP); It's all about JavaScript (Node.js); JavaScript basics; Variables; Variable scope; Operators; Truthy and falsy; The equals operators (== and ===); Control structures; Conditional statements; Loops; Functions; Object-oriented programming; Debugging and tools; Summary; Chapter 2: Arrays; Why should we use arrays?…”
    Full text (MFA users only)
    Electronic eBook
  18. 318

    Android Studio Flamingo Essentials - Java Edition : Developing Android Apps Using Android Studio 2022. 2. 1 and Java. by Smyth, Neil

    Published 2023
    Subjects: “…Java (Computer program language)…”
    Full text (MFA users only)
    Electronic eBook
  19. 319

    MooTools 1.2 Beginner's Guide. by Gube, Jacob

    Published 2009
    Subjects: “…JavaScript (Computer program language)…”
    Full text (MFA users only)
    Electronic eBook
  20. 320

    JQuery for designers beginner's guide : design interactive websites to improve user experience by using the popular JavaScript library by MacLees, Natalie

    Published 2014
    Subjects: “…JavaScript (Computer program language)…”
    Full text (MFA users only)
    Electronic eBook