Browse Results

Showing 33,726 through 33,750 of 59,660 results

Learning Cocoa with Objective-C

by James N. Davidson

Learning Cocoa with Objective-C is the "must-have" book for people who want to develop applications for Mac OS X, and is the only book approved and reviewed by Apple engineers. Based on the Jaguar release of Mac OS X 10.2, this edition of Learning Cocoa includes examples that use the Address Book and Universal Access APIs. Also included is a handy quick reference card, charting Cocoa's Foundation and AppKit frameworks, along with an Appendix that includes a listing of resources essential to any Cocoa developer--beginning or advanced. Completely revised and updated, this 2nd edition begins with some simple examples to familiarize you with the basic elements of Cocoa programming as well Apple's Developer Tools, including Project Builder and Interface Builder. After introducing you to Project Builder and Interface Builder, it brings you quickly up to speed on the concepts of object-oriented programming with Objective-C, the language of choice for building Cocoa applications. From there, each chapter presents a different sample program for you to build, with easy to follow, step-by-step instructions to teach you the fundamentals of Cocoa programming. The techniques you will learn in each chapter lay the foundation for more advanced techniques and concepts presented in later chapters. You'll learn how to: Effectively use Apple's suite of Developer Tools, including Project Builder and Interface Builder Build single- and multiple-window document-based applications Manipulate text data using Cocoa's text handling capabilities Draw with Cocoa Add scripting functionality to your applications Localize your application for multiple language support Polish off your application by adding an icon for use in the Dock, provide Help, and package your program for distribution Each chapter ends with a series of Examples, challenging you to test your newly-learned skills by tweaking the application you've just built, or to go back to an earlier example and add to it some new functionality. Solutions are provided in the Appendix, but you're encouraged to learn by trying. Extensive programming experience is not required to complete the examples in the book, though experience with the C programming language will be helpful. If you are familiar with an object-oriented programming language such as Java or Smalltalk, you will rapidly come up to speed with the Objective-C language. Otherwise, basic object-oriented and language concepts are covered where needed.

Learning Cocos2d-JS Game Development

by Emanuele Feronato

If you are new to game development or have just gotten your teeth into developing games but desire to learn more, then this book is for you. An understanding of the essentials of JavaScript is required.

Learning Cocos2d-x Game Development

by Siddharth Shekar

If you are a hobbyist, novice game developer, or programmer who wants to learn about developing games/apps using Cocos2d-x, this book is ideal for you.

A Learning Community of Reflective Teachers: From Whispers to Resonance

by Neeraja Raghavan

Teachers possess a wealth of untapped wisdom and valuable experience. Whether it’s in matter of educational policy, curriculum development or textbook selection, teachers carry a trove of information and insights to share. Traditionally, teacher development has been driven by administrators of schools, and it often takes the form of a ‘mentor’ teaching the staff of a school. But what happens when teachers across different locations collaborate and learn together? This volume documents such an initiative, sparked off by the Covid-19 pandemic, which brought people together online. It underscores the power of teachers debating, discussing, and learning from each other. Based on an Indian experience, the book addresses a range of issues teachers and educators face across the world — encompassing pedagogy, classroom management, school culture and teacher development. A unique story of community building and teacher education, this book also contains key outcomes and insights which take us through their action research projects and showcases a model of teacher development that can be adopted by interested readers. Above all, it brings out the crying need for a teacher’s voice to be heard — for far too long, teachers have been mere implementers of decisions taken by policy makers or managements of schools. By means of networking communities such as the one described in this book, the transformation of teachers going from whispers to resonance is greatly amplified. An important intervention in the domain of teacher development, this volume will be of great interest to students, researchers and practitioners of education, teacher education, and sociology of education. It will also be useful for teacher trainees, academicians, teacher educators, policymakers, schoolteachers, curriculum developers, teacher training institutes, and universities offering teacher education programs.

Learning Computer Applications: Projects and Exercises Third Edition

by Lisa A. Bucki

Learning Computer Applications: Projects And Exercises Chapters: Introduction to computers and applications -- File management -- Word processing -- Desktop publishing -- Spreadsheet -- Database -- Presentation graphics--

Learning Computer Architecture with Raspberry Pi

by Eben Upton Jeffrey Duntemann Ralph Roberts Tim Mamtora Ben Everard

Use your Raspberry Pi to get smart about computing fundamentals In the 1980s, the tech revolution was kickstarted by a flood of relatively inexpensive, highly programmable computers like the Commodore. Now, a second revolution in computing is beginning with the Raspberry Pi. Learning Computer Architecture with the Raspberry Pi is the premier guide to understanding the components of the most exciting tech product available. Thanks to this book, every Raspberry Pi owner can understand how the computer works and how to access all of its hardware and software capabilities. Now, students, hackers, and casual users alike can discover how computers work with Learning Computer Architecture with the Raspberry Pi. This book explains what each and every hardware component does, how they relate to one another, and how they correspond to the components of other computing systems. You'll also learn how programming works and how the operating system relates to the Raspberry Pi's physical components. Co-authored by Eben Upton, one of the creators of the Raspberry Pi, this is a companion volume to the Raspberry Pi User Guide An affordable solution for learning about computer system design considerations and experimenting with low-level programming Understandable descriptions of the functions of memory storage, Ethernet, cameras, processors, and more Gain knowledge of computer design and operation in general by exploring the basic structure of the Raspberry Pi The Raspberry Pi was created to bring forth a new generation of computer scientists, developers, and architects who understand the inner workings of the computers that have become essential to our daily lives. Learning Computer Architecture with the Raspberry Pi is your gateway to the world of computer system design.

Learning Computers and Technology

by Suzanne Weixel Jennifer Fulton Lisa A. Bucki

NIMAC-sourced textbook

Learning Concurrency in Kotlin: Build highly efficient and robust applications

by Miguel Angel Castiblanco Torres

Take advantage of Kotlin's concurrency primitives to write efficient multithreaded applicationsKey FeaturesLearn Kotlin’s unique approach to multithreadingWork through practical examples that will help you write concurrent non-blocking codeImprove the overall execution speed in multiprocessor and multicore systemsBook DescriptionThe primary requirements of modern-day applications are scalability, speed, and making the most use of hardware. Kotlin meets these requirements with its immense support for concurrency. Many concurrent primitives of Kotlin, such as channels and suspending functions, are designed to be non-blocking and efficient. This allows for new approaches to concurrency and creates unique challenges for the design and implementation of concurrent code. Learning Concurrency in Kotlin addresses those challenges with real-life examples and exercises that take advantage of Kotlin's primitives. Beginning with an introduction to Kotlin's coroutines, you will learn how to write concurrent code and understand the fundamental concepts needed to be able to write multithreaded software in Kotlin. You'll explore how to communicate between and synchronize your threads and coroutines to write asynchronous applications that are collaborative. You'll also learn how to handle errors and exceptions, as well as how to leverage multi-core processing. In addition to this, you’ll delve into how coroutines work internally, allowing you to see the bigger picture. Throughout the book you'll build an Android application – an RSS reader – designed and implemented according to the different topics covered in the bookWhat you will learnUnderstand Kotlin’s approach to concurrencyImplement sequential and asynchronous suspending functionsCreate suspending data sources that are resumed on demandExplore the best practices for error handlingUse channels to communicate between coroutinesUncover how coroutines work under the hoodWho this book is forIf you’re a Kotlin or Android developer interested in learning how to program concurrently to enhance the performance of your applications, this is the book for you.

Learning Concurrency in Python

by Elliot Forbes

Practically and deeply understand concurrency in Python to write efficient programs About This Book • Build highly efficient, robust, and concurrent applications • Work through practical examples that will help you address the challenges of writing concurrent code • Improve the overall speed of execution in multiprocessor and multicore systems and keep them highly available Who This Book Is For This book is for Python developers who would like to get started with concurrent programming. Readers are expected to have a working knowledge of the Python language, as this book will build on these fundamentals concepts. What You Will Learn • Explore the concept of threading and multiprocessing in Python • Understand concurrency with threads • Manage exceptions in child threads • Handle the hardest part in a concurrent system — shared resources • Build concurrent systems with Communicating Sequential Processes (CSP) • Maintain all concurrent systems and master them • Apply reactive programming to build concurrent systems • Use GPU to solve specific problems In Detail Python is a very high level, general purpose language that is utilized heavily in fields such as data science and research, as well as being one of the top choices for general purpose programming for programmers around the world. It features a wide number of powerful, high and low-level libraries and frameworks that complement its delightful syntax and enable Python programmers to create. This book introduces some of the most popular libraries and frameworks and goes in-depth into how you can leverage these libraries for your own high-concurrent, highly-performant Python programs. We'll cover the fundamental concepts of concurrency needed to be able to write your own concurrent and parallel software systems in Python. The book will guide you down the path to mastering Python concurrency, giving you all the necessary hardware and theoretical knowledge. We'll cover concepts such as debugging and exception handling as well as some of the most popular libraries and frameworks that allow you to create event-driven and reactive systems. By the end of the book, you'll have learned the techniques to write incredibly efficient concurrent systems that follow best practices. Style and approach This easy-to-follow guide teaches you new practices and techniques to optimize your code, and then moves toward more advanced ways to effectively write efficient Python code. Small and simple practical examples will help you test the concepts yourself, and you will be able to easily adapt them for any application.

Learning Concurrent Programming in Scala

by Aleksandar Prokopec

This book is a must-have tutorial for software developers aiming to write concurrent programs in Scala, or broaden their existing knowledge of concurrency. This book is intended for Scala programmers that have no prior knowledge about concurrent programming, as well as those seeking to broaden their existing knowledge about concurrency. Basic knowledge of the Scala programming language will be helpful. Readers with a solid knowledge in another programming language, such as Java, should find this book easily accessible.

Learning Concurrent Programming in Scala - Second Edition

by Aleksandar Prokopec

Learn the art of building intricate, modern, scalable, and concurrent applications using Scala About This Book • Make the most of Scala by understanding its philosophy and harnessing the power of multicores • Get acquainted with cutting-edge technologies in the field of concurrency, through practical, real-world applications • Get this step-by-step guide packed with pragmatic examples Who This Book Is For If you are a Scala programmer with no prior knowledge about concurrent programming, or seeking to broaden your existing knowledge about concurrency, this book is for you. Basic knowledge of the Scala programming language will be helpful. Also if you have a solid knowledge in another programming language, such as Java, you should find this book easily accessible. What You Will Learn • Get to grips with the fundamentals of concurrent programming on modern multiprocessor systems • Build high-performance concurrent systems from simple, low-level concurrency primitives • Express asynchrony in concurrent computations with futures and promises • Seamlessly accelerate sequential programs by using data-parallel collections • Design safe, scalable, and easy-to-comprehend in-memory transactional data models • Transparently create distributed applications that scale across multiple machines • Integrate different concurrency frameworks together in large applications • Develop and implement scalable and easy-to-understand concurrent applications in Scala 2.12 In Detail Scala is a modern, multiparadigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. Scala smoothly integrates the features of object-oriented and functional languages. In this second edition, you will find updated coverage of the Scala 2.12 platform. The Scala 2.12 series targets Java 8 and requires it for execution. The book starts by introducing you to the foundations of concurrent programming on the JVM, outlining the basics of the Java Memory Model, and then shows some of the classic building blocks of concurrency, such as the atomic variables, thread pools, and concurrent data structures, along with the caveats of traditional concurrency. The book then walks you through different high-level concurrency abstractions, each tailored toward a specific class of programming tasks, while touching on the latest advancements of async programming capabilities of Scala. It also covers some useful patterns and idioms to use with the techniques described. Finally, the book presents an overview of when to use which concurrency library and demonstrates how they all work together, and then presents new exciting approaches to building concurrent and distributed systems. Style and approach The book provides a step-by-step introduction to concurrent programming. It focuses on easy-to-understand examples that are pragmatic and applicable to real-world applications. Different topics are approached in a bottom-up fashion, gradually going from the simplest foundations to the most advanced features.

Learning Construct 2

by Aryadi Subagio

If you want to make your own game but don't know how to start or don't have the technical skills to do it, then this is the book for you. You don't need to have a programming background to understand the concepts explained.

Learning Continuous Integration with Jenkins

by Nikhil Pathania

A beginner's guide to implementing Continuous Integration and Continuous Delivery using Jenkins About This Book * Speed up and increase software productivity and software delivery using Jenkins * Automate your build, integration, release, and deployment processes with Jenkins--and learn how continuous integration (CI) can save you time and money * Explore the power of continuous delivery using Jenkins through powerful real-life examples Who This Book Is For This book is for anyone who wants to exploit the power of Jenkins. This book servers a great starting point for those who are in the field DevOps and would like to leverage the benefits of CI and continuous delivery in order to increase productivity and reduce delivery time. What You Will Learn * Take advantage of a continuous delivery solution to achieve faster software delivery * Speed up productivity using a continuous Integration solution through Jenkins * Understand the concepts of CI and continuous delivery * Orchestrate many DevOps tools using Jenkins to automate builds, releases, deployment, and testing * Explore the various features of Jenkins that make DevOps activities a piece of cake * Configure multiple build machines in Jenkins to maintain load balancing * Manage users, projects, and permissions in Jenkins to ensure better security * Leverage the power of plugins in Jenkins In Detail In past few years, Agile software development has seen tremendous growth across the world. There is huge demand for software delivery solutions that are fast yet flexible to frequent amendments. As a result, CI and continuous delivery methodologies are gaining popularity. Jenkins' core functionality and flexibility allows it to fit in a variety of environments and can help streamline the development process for all stakeholders. This book starts off by explaining the concepts of CI and its significance in the Agile world with a whole chapter dedicated to it. Next, you'll learn to configure and set up Jenkins. You'll gain a foothold in implementing CI and continuous delivery methods. We dive into the various features offered by Jenkins one by one exploiting them for CI. After that, you'll find out how to use the built-in pipeline feature of Jenkins. You'll see how to integrate Jenkins with code analysis tools and test automation tools in order to achieve continuous delivery. Next, you'll be introduced to continuous deployment and learn to achieve it using Jenkins. Through this book's wealth of best practices and real-world tips, you'll discover how easy it is to implement a CI service with Jenkins. Style and approach This is a step-by-step guide to setting up a CI and continuous delivery system loaded with hands-on examples

Learning Continuous Integration with Jenkins: A Beginner's Guide To Implementing Continuous Integration And Continuous Delivery Using Jenkins 2

by Nikhil Pathania

A step-by-step guide to quickly set up Jenkins across various platforms and create a Continuous Integration and Continuous Delivery pipeline using all the new features introduced in Jenkins 2.x such as Pipeline as a Code, Multibranch pipeline, Blue Ocean Plugin, and more.

Learning Continuous Integration with Jenkins.: A beginner's guide to implementing Continuous Integration and Continuous Delivery using Jenkins 2, 2nd Edition

by Nikhil Pathania Deep Mehta

Key FeaturesTake advantage of a Continuous Integration and Continuous Delivery solution to speed up productivity and achieve faster software deliverySee all the new features introduced in Jenkins 2.x, such as Pipeline as code, Multibranch pipeline, Docker Plugin, and moreLearn to implement Continuous Integration and Continuous Delivery by orchestrating multiple DevOps tools using JenkinsBook DescriptionIn past few years, agile software development has seen tremendous growth. There is a huge demand for software delivery solutions that are fast yet flexible to numerous amendments. As a result, Continuous Integration (CI) and Continuous Delivery (CD) methodologies are gaining popularity. This book starts off by explaining the concepts of CI and its significance in the Agile. Next, you'll learn how to configure and set up Jenkins in many different ways. The book exploits the concept of "pipeline as code" and various other features introduced in the Jenkins 2.x release to their full potential. We also talk in detail about the new Jenkins Blue Ocean interface and the features that help to quickly and easily create a CI pipeline. Then we dive into the various features offered by Jenkins one by one, exploiting them for CI and CD. Jenkins' core functionality and flexibility allows it to fit in a variety of environments and can help streamline the development process for all stakeholders. Next, you'll be introduced to CD and will learn how to achieve it using Jenkins. Through this book's wealth of best practices and real-world tips, you'll discover how easy it is to implement CI and CD using Jenkins.What you will learn Get to know some of the most popular ways to set up Jenkins See all the new features introduced in the latest Jenkins, such as pipeline as code, Multibranch pipeline, and more Manage users, projects, and permissions in Jenkins to ensure better security Leverage the power of plugins in Jenkins Learn how to create a CI pipeline using Jenkins Blue Ocean Create a distributed build farm using Docker and use it with Jenkins Implement CI and CD using Jenkins See the difference between CD and Continuous Deployment Understand the concepts of CI

Learning Continuous Integration with Jenkins: An end-to-end guide to creating operational, secure, resilient, and cost-effective CI/CD processes

by null Nikhil Pathania

Integrate Jenkins, Kubernetes, and more on cloud into a robust, GitOps-driven CI/CD system, leveraging JCasC, IaC, and AI for a streamlined software delivery processKey FeaturesFollow the construction of a Jenkins CI/CD pipeline start to finish through a real-world exampleConstruct a continuous deployment (CD) pipeline in Jenkins using GitOps principles and integration with Argo CDCraft and optimize your CI pipeline code with ChatGPT and GitHub CopilotPurchase of the print or Kindle book includes a free PDF eBookBook DescriptionThis updated edition of Learning Continuous Integration with Jenkins is your one-stop guide to implementing CI/CD with Jenkins, addressing crucial technologies such as cloud computing, containerization, Infrastructure as Code, and GitOps. Tailored to both beginners and seasoned developers, the book provides a practical path to mastering a production-grade, secure, resilient, and cost-effective CI/CD setup. Starting with a detailed introduction to the fundamental principles of CI, this book systematically takes you through setting up a CI environment using Jenkins and other pivotal DevOps tools within the CI/CD ecosystem. You’ll learn to write pipeline code with AI assistance and craft your own CI pipeline. With the help of hands-on tutorials, you’ll gain a profound understanding of the CI process and Jenkins’ robust capabilities. Additionally, the book teaches you how to expand your CI pipeline with automated testing and deployment, setting the stage for continuous deployment. To help you through the complete software delivery process, this book also covers methods to ensure that your CI/CD setup is maintainable across teams, secure, and performs optimally. By the end of the book, you’ll have become an expert in implementing and optimizing CI/CD setups across diverse teams.What you will learnUnderstand CI with the Golden Circle theoryDeploy Jenkins on the cloud using Helm charts and Jenkins Configuration as Code (JCasC)Implement optimal security practices to ensure Jenkins operates securelyExtend Jenkins for CI by integrating with SonarQube, GitHub, and ArtifactoryScale Jenkins using containers and the cloud for optimal performanceMaster Jenkins declarative syntax to enrich your pipeline coding vocabularyEnhance security and improve pipeline code within your CI/CD process using best practicesWho this book is forThis book is for a diverse audience, from university students studying Agile software development to seasoned developers, testers, release engineers, and project managers. If you’re already using Jenkins for CI, this book will assist you in elevating your projects to CD. Whether you’re new to the concepts of Agile, CI, and CD, or a DevOps engineer seeking advanced insights into JCasC, IaC, and Azure, this book will equip you with the tools to harness Jenkins for improved productivity and streamlined deliveries in the cloud.

Learning Continuous Integration with TeamCity

by Manoj Mahalingam S

If you are a developer, tester, or a person in operations or Devops who wants to start practising CI, start using TeamCity or both, then this book is for you. Moreover, if you have thought about bringing CI into your team, if you are already using a CI tool and want to move to TeamCity, or if you are looking for ideal practises and techniques while implementing CI with TeamCity, this book will be useful.

Learning CoreDNS: Configuring DNS for Cloud Native Environments

by John Belamaric Cricket Liu

Until recently, learning CoreDNS required reading the code or combing through the skimpy documentation on the website. No longer. With this practical book, developers and operators working with Docker or Linux containers will learn how to use this standard DNS server with Kubernetes.John Belamaric, senior staff software engineer at Google, and Cricket Liu, chief DNS architect at Infoblox, show you how to configure CoreDNS using real-world configuration examples to achieve specific purposes. You’ll learn the basics of DNS, including how it functions as a location broker in container environments and how it ties into Kubernetes.Dive into DNS theory: the DNS namespace, domain names, domains, and zonesLearn how to configure your CoreDNS serverManage and serve basic and advanced zone data with CoreDNSConfigure CoreDNS service discovery with etcd and KubernetesLearn one of the most common use cases for CoreDNS: the integration with KubernetesManipulate queries and responses as they flow through the plug-in chainMonitor and troubleshoot the availability and performance of your DNS serviceBuild custom versions of CoreDNS and write your own plug-ins

Learning CoreOS

by Kingston Smiler. S Shantanu Agrawal

Your one-stop guide for building, configuring, maintaining, and deploying one of the world's fastest growing OSes About This Book * Understand the features of CoreOS and learn to administrate and secure a CoreOS environment * Develop, test, and deploy cloud services and applications more quickly and efficiently inside lightweight containers using CoreOS * This is a complete tutorial on CoreOS, which is the preferred OS for cloud computing as it contains components that facilitate cloud management Who This Book Is For This book is for cloud or enterprise administrators and application developers who would like to gain knowledge about CoreOS to deploy a cloud application or micro-services on a cluster of cloud servers. It is also aimed at administrators with basic networking experience. You do not need to have any knowledge of CoreOS. What You Will Learn * Understand the benefits of CoreOS as a cloud orchestration platform * Learn about lightweight containers and various container frameworks such as Docker and RKT in CoreOS * Manage services and containers across cluster using Fleet and systemd * Set up a CoreOS environment using Vagrant * Create and manage CoreOS clusters * Discover the service parameters using etcd * Find out about chaining services running on the cluster using Flannel / Rudder and Weave * Create a virtual tenant network and service chaining using OVS In Detail CoreOS is an open source operating system developed upon the Linux kernel. The rise of CoreOS is directly related to the rise of Docker (a Linux container management system). It is a minimal operating system layer and takes a different approach to automating the deployment of containers. The major difference between CoreOS and other Linux distributions is that CoreOS was designed to deploy hundreds of servers. CoreOS immensely helps the users to create systems, which are easy to scale and manage, making life easier for all, be it developer, QA, or deployer. This book is all about setting up, deploying, and using CoreOS to manage clusters and clouds. It will help you understand what CoreOS is and its benefits as a cloud orchestration platform. First, we'll show you how to set up a simple CoreOS instance with single node in the cluster and how to run a Docker container inside the CoreOS instance. Next, you'll be introduced to Fleet and systemd, and will deploy and distribute Docker services across different nodes in cluster using Fleet. Later, you'll be briefed about running services in a cluster with constraints, publishing the services already running on the cluster to new services, and making your services interact with each other. We conclude by teaching you about advanced container networking. By the end of the book, you will know the salient features of CoreOS and will be able to deploy, administrate, and secure a CoreOS environment. Style and approach This practical guide covers the basics and advanced topics related to CoreOS and lightweight containers. The topics are covered in an easy-to-follow manner with each feature explained in detail, beginning with a brief overview and followed by an explanation of its corresponding configuration files.

Learning Couchbase

by Henry Potsangbam

Design documents and implement real world e-commerce applications with Couchbase About This Book * Get acquainted with Couchbase architecture and design your document-based data schema * Implement full text search using industry standard elastic search plugins * Develop critical and high performance applications using this hands-on tutorial guide Who This Book Is For If you are new to the NoSQL document system or have little or no experience in NoSQL development and administration and are planning to deploy Couchbase for your next project, then this book is for you. It would be helpful to have a bit of familiarity with Java. What You Will Learn * Get acquainted with the concept of NoSQL databases and configure your Couchbase database cluster * Maintain Couchbase effectively using the web-based administrative console with ease * Enable partition capabilities by making use of Buckets * Analyze important design considerations for maintaining relationship between various documents * Use Couchbase SDK Java API to store and retrieve document * Write views using map/reduce to retrieve documents efficiently * Get familiar with N1QL and how to use it in Java applications * Integrate Couchbase with Elasticsearch to implement full text search * Configure XDCR for disaster recovery and develop ecommerce application using Couchbase In Detail This book achieves its goal by taking up an end-to-end development structure, right from understanding NOSQL document design to implementing full fledged eCommerce application design using Couchbase as a backend. Starting with the architecture of Couchbase to get you up and running, this book quickly takes you through designing a NoSQL document and implementing highly scalable applications using Java API. You will then be introduced to document design and get to know the various ways to administer Couchbase. Followed by this, learn to store documents using bucket. Moving on, you will then learn to store, retrieve and delete documents using smart client base on Java API. You will then retrieve documents using SQL like syntax call N1QL. Next, you will learn how to write map reduce base views. Finally, you will configure XDCR for disaster recovery and implement an eCommerce application using Couchbase. Style and approach The book starts from absolute basics and slowly moves to more advanced topics ensuring at every step that all concepts and terms are understood by the reader to have complete understanding at every stage. Technical and complex terms are explained in clear and simple language, thus making this book a perfect companion for those who have started their journey to NoSQL using Couchbase

Learning, Creating, and Using Knowledge: Concept Maps as Facilitative Tools in Schools and Corporations

by Joseph D. Novak

This fully revised and updated edition of Learning, Creating, and Using Knowledge recognizes that the future of economic well being in today's knowledge and information society rests upon the effectiveness of schools and corporations to empower their people to be more effective learners and knowledge creators. Novak’s pioneering theory of education presented in the first edition remains viable and useful. This new edition updates his theory for meaningful learning and autonomous knowledge building along with tools to make it operational ─ that is, concept maps, created with the use of CMapTools and the V diagram. The theory is easy to put into practice, since it includes resources to facilitate the process, especially concept maps, now optimised by CMapTools software. CMapTools software is highly intuitive and easy to use. People who have until now been reluctant to use the new technologies in their professional lives are will find this book particularly helpful. Learning, Creating, and Using Knowledge is essential reading for educators at all levels and corporate managers who seek to enhance worker productivity.

Learning Cypher

by Onofrio Panzarino

An easy-to-follow guide full of tips and examples of real-world applications. In each chapter, a thorough example will show you the concepts in action, followed by a detailed explanation. This book is intended for those who want to learn how to create, query, and maintain a graph database, or who want to migrate to a graph database from SQL. It would be helpful to have some familiarity with Java and/or SQL, but no prior experience is required.

Learning Cython Programming

by Philip Herron

A practical and a fast-paced guide that gives you all the information you need to start programming using Cython.This book is for developers who love C/C++ for low latency and speed but who also require the ability to add more dynamic features to applications both fast and reliably. It will also show you how you can get new applications off the ground by reusing Python libraries to get started.

Learning Cython Programming - Second Edition

by Philip Herron

Learn the fundamentals of Cython to extend the legacy of your applications About This Book * Learn how to extend C applications with pure Python code * Get more from Python - you'll not only learn Cython, you'll also unlock a greater understanding of how to harness Python * Packed with tips and tricks that make Cython look easy, dive into this accessible programming guide and find out what happens when you bring C and Python together! Who This Book Is For This book is for developers who are familiar with the basics of C and Python programming and wish to learn Cython programming to extend their applications. What You Will Learn * Reuse Python logging in C * Make an IRC bot out of your C application * Extend an application so you have a web server for rest calls * Practice Cython against your C++ code * Discover tricks to work with Python ConfigParser in C * Create Python bindings for native libraries * Find out about threading and concurrency related to GIL * Expand Terminal Multiplexer Tmux with Cython In Detail Cython is a hybrid programming language used to write C extensions for Python language. Combining the practicality of Python and speed and ease of the C language it's an exciting language worth learning if you want to build fast applications with ease. This new edition of Learning Cython Programming shows you how to get started, taking you through the fundamentals so you can begin to experience its unique powers. You'll find out how to get set up, before exploring the relationship between Python and Cython. You'll also look at debugging Cython, before moving on to C++ constructs, Caveat on C++ usage, Python threading and GIL in Cython. Finally, you'll learn object initialization and compile time, and gain a deeper insight into Python 3, which will help you not only become a confident Cython developer, but a much more fluent Python developer too. Style and approach This practical and a fast-paced guide gives you all the information you need to start programming using Cython.

Learning D

by Mike Parker

This book is intended for those with some background in a C-family language who want to learn how to apply their knowledge and experience to D. Perhaps you're a college student looking to use D for hobby projects, or a career programmer interested in expanding your skillset. This book will help you get up to speed with the language and avoid common pitfalls that arise when translating C-family experience to D.

Refine Search

Showing 33,726 through 33,750 of 59,660 results