Browse Results

Showing 14,401 through 14,425 of 53,657 results

Delphi High Performance: Build Fast Delphi Applications Using Concurrency, Parallel Programming And Memory Management

by Primož Gabrijelčič

<P><P>Build fast, scalable, and high performing applications with Delphi <P><P>Key Features <P><P>Build efficient and concurrent applications in Delphi with focused examples <P><P>Identify performance bottlenecks and apply the correct algorithm to increase the performance of applications. <P><P>Delve into parallel programming and memory management to optimize your code <P><P>Book Description <P><P>Delphi is a cross-platform Integrated Development Environment (IDE) that supports rapid application development for Microsoft Windows, Apple Mac OS X, Google Android, iOS, and now Linux with RAD Studio 10.2. This book will be your guide to build efficient high performance applications with Delphi. <P><P>The book begins by explaining how to find performance bottlenecks and apply the correct algorithm to fix them. It will teach you how to improve your algorithms before taking you through parallel programming. You'll then explore various tools to build highly concurrent applications. <P><P>After that, you'll delve into improving the performance of your code and master cross-platform RTL improvements. Finally, we'll go through memory management with Delphi and you'll see how to leverage several external libraries to write better performing programs. <P><P>By the end of the book, you'll have the knowledge to create high performance applications with Delphi. <P><P>What you will learn <P><P>Find performance bottlenecks and easily mitigate them <P><P>Discover different approaches to fix algorithms <P><P>Understand parallel programming and work with various tools included with Delphi <P><P>Master the RTL for code optimization <P><P>Explore memory managers and their implementation <P><P>Leverage external libraries to write better performing programs <P><P>Who This Book Is For <P><P>This book is for Delphi developers who would like to build high performance applications with Delphi. Prior knowledge of Delphi is assumed.

Delphi in a Nutshell: A Desktop Quick Reference (In a Nutshell (O'Reilly))

by Ray Lischner

With a new name and a new focus on CORBA, database drivers, and Microsoft Back Office applications, Inprise/Borland Delphi is enjoying a resurgence, with a growing user base of programmers who use Delphi for rapid development of enterprise computing applications. Not to rest on success, the latest version of Delphi, Version 5, includes further expansion and refinement of the 3-tier application framework introduced in Delphi 4 and has resulted in a prize-winning product. Delphi in a Nutshell is the first concise reference to Borland/Inprise Delphi available. It succinctly collects all the information you need in one easy-to-use, complete, and accurate volume that goes beyond the product documentation itself. Delphi in a Nutshell starts with the Delphi object model and how to use RTTI (Run Time Type Information) for efficient programming. The rest of the book is the most complete Delphi Pascal language reference available in print, detailing every language element with complete syntax, examples, and methods for use. The book concludes with a look at the compiler, discussing compiler directives in depth.

Delphi Programming Projects: Build a range of exciting projects by exploring cross-platform development and microservices

by William Duarte

Improve your Delphi programming skills by building robust applications for Android, iOS, and Windows platformKey FeaturesBuild responsive user interfaces (UIs) for desktop and mobile with FireMonkeyImplement a microservices architecture using the Rapid Application Development(RAD) serverCreate clones of popular applications like Instagram and Facebook using Delphi 10.3Book DescriptionDelphi is a cross-platform programming language and software development kit that supports rapid application development for Microsoft Windows, Apple Mac OS X, Android, and iOS.With the help of seven practical projects, this book will guide you through the best practices, Delphi Run-Time Library (RTL) resources, and design patterns. Whether you use the Visual Component Library (VCL) or FireMonkey (FMX) framework, these design patterns will be implemented in the same way in Delphi, using Object Pascal. In the first few chapters, you will explore advanced features that will help you build rich applications using the same code base for both mobile and desktop projects. In addition to this, you’ll learn how to implement microservice architecture in Delphi. As you get familiar with the various aspects of Delphi, you will no longer need to maintain source code for similar projects, program business rules on screens, or fill your forms with data access components.By the end of this book, you will have gained an understanding of the principles of clean code and become proficient in building robust and scalable applications in Delphi.What you will learnGet to grips with the advanced features of RTLUnderstand how to deal with the paradigm change between multiplatform projectsBuild rich interfaces with Google's Material Design featuresUnderstand how to implement design patterns in DelphiTurn a mobile device into a remote controller with app tethering technologyBuild a multi-database system using VCLWho this book is forThis book is for developers, programmers, and IT professionals who want to learn the best market practices by implementing practical projects. Prior knowledge of the Delphi language is a must.

Delphi Quick Syntax Reference: A Pocket Guide to the Delphi and Object Pascal Language

by John Kouraklis

The Delphi Quick Syntax Reference is a succinct code and syntax reference guide to Delphi. It presents the fundamental knowledge to get newcomers started with the language and provides a refresher to seasoned or returning Delphi developers.It covers all the new features added by Embarcadero during the last few years. Delphi celebrates 25 years in 2020 and, alongside the free community version that was introduced a couple of years ago, this syntax guide is a great way to get into the language.What You Will LearnQuickly use and learn DelphiCompile, build and run a Delphi programMaster Delphi strings, variables, constants, and operators and how to apply themUse conditions, loops, procedures, and functions in Delphi Apply object-oriented programming in Delphi Who This Book Is ForReturning or current Delphi developers: The book is a resource for reference for this group of developers especially for the new features that were introduced in the language over the last couple of years. Newcomers to the language: These developers will learn the fundamentals of the language in a very condensed and effective text that accelerates learning.

Delta Lake: Up and Running

by Bennie Haelen Dan Davis

With the surge in big data and AI, organizations can rapidly create data products. However, the effectiveness of their analytics and machine learning models depends on the data's quality. Delta Lake's open source format offers a robust lakehouse framework over platforms like Amazon S3, ADLS, and GCS.This practical book shows data engineers, data scientists, and data analysts how to get Delta Lake and its features up and running. The ultimate goal of building data pipelines and applications is to gain insights from data. You'll understand how your storage solution choice determines the robustness and performance of the data pipeline, from raw data to insights.You'll learn how to:Use modern data management and data engineering techniquesUnderstand how ACID transactions bring reliability to data lakes at scaleRun streaming and batch jobs against your data lake concurrentlyExecute update, delete, and merge commands against your data lakeUse time travel to roll back and examine previous data versionsBuild a streaming data quality pipeline following the medallion architecture

Demand-Driven Associative Classification

by Wagner Meira Jr. Adriano Veloso

The ultimate goal of machines is to help humans to solve problems. Such problems range between two extremes: structured problems for which the solution is totally defined (and thus are easily programmed by humans), and random problems for which the solution is completely undefined (and thus cannot be programmed). Problems in the vast middle ground have solutions that cannot be well defined and are, thus, inherently hard to program. Machine Learning is the way to handle this vast middle ground, so that many tedious and difficult hand-coding tasks would be replaced by automatic learning methods. There are several machine learning tasks, and this work is focused on a major one, which is known as classification. Some classification problems are hard to solve, but we show that they can be decomposed into much simpler sub-problems. We also show that independently solving these sub-problems by taking into account their particular demands, often leads to improved classification performance.

Demand-Driven Business Strategy: Digital Transformation and Business Model Innovation (Business and Digital Transformation)

by Cor Molenaar

Demand-Driven Business Strategy explains the ways of transforming business models from supply driven to demand driven through digital technologies and big data analytics. The book covers important topics such as digital leadership, the role of artificial intelligence, and platform firms and their role in business model transformation. Students are walked through the nature of supply- and demand-driven models and how organizations transform from one to the other. Theoretical insights are combined with real-world application through global case studies and examples from Amazon, Google, Uber, Volvo and Picnic. Chapter objectives and summaries provide consistent structure and aid learning, whilst reflective questions encourage further thought and discussion. Comprehensive and practical, this is an essential text for advanced undergraduate and postgraduate students studying strategic management, marketing, business innovation, consumer behavior, digital transformation and entrepreneurship.

Demand Forecasting Best Practices

by Nicolas Vandeput

Lead your demand planning process to excellence and deliver real value to your supply chain.In Demand Forecasting Best Practices you&’ll learn how to: Lead your team to improve quality while reducing workload Properly define the objectives and granularity of your demand planning Use intelligent KPIs to track accuracy and bias Identify areas for process improvement Help planners and stakeholders add value Determine relevant data to collect and how best to collect it Utilize different statistical and machine learning models An expert demand forecaster can help an organization avoid overproduction, reduce waste, and optimize inventory levels for a real competitive advantage. Demand Forecasting Best Practices teaches you how to become that virtuoso demand forecaster. This one-of-a-kind guide reveals forecasting tools, metrics, models, and stakeholder management techniques for delivering more effective supply chains. Everything you learn has been proven and tested in a live business environment. Discover author Nicolas Vandeput&’s original five step framework for demand planning excellence and learn how to tailor it to your own company&’s needs. Illustrations and real-world examples make each concept easy to understand and easy to follow. You&’ll soon be delivering accurate predictions that are driving major business value. About the Technology An expert demand forecaster can help an organization avoid overproduction, reduce waste, and optimize inventory levels for a real competitive advantage. This book teaches you how to become that virtuoso demand forecaster. About the Book Demand Forecasting Best Practices reveals forecasting tools, metrics, models, and stakeholder management techniques for managing your demand planning process efficiently and effectively. Everything you learn has been proven and tested in a live business environment. Discover author Nicolas Vandeput&’s original five step framework for demand planning excellence and learn how to tailor it to your own company&’s needs. Illustrations and real-world examples make each concept easy to understand and easy to follow. You&’ll soon be delivering accurate predictions that are driving major business value. What's Inside Enhance forecasting quality while reducing team workload Utilize intelligent KPIs to track accuracy and bias Identify process areas for improvement Assist stakeholders in sales, marketing, and finance Optimize statistical and machine learning models About the Reader For demand planners, sales and operations managers, supply chain leaders, and data scientists. About the Author Nicolas Vandeput is a supply chain data scientist, the founder of consultancy company SupChains in 2016, and a teacher at CentraleSupélec, France. Table of Contents: Part 1 - Forecasting demand 1 Demand forecasting excellence 2 Introduction to demand forecasting 3 Capturing unconstrained demand (and not sales) 4 Collaboration: data sharing and planning alignment 5 Forecasting hierarchies 6 How long should the forecasting horizon be? 7 Should we reconcile forecasts to align supply chains? Part 2 - Measuring forecasting quality 8 Forecasting metrics 9 Choosing the best forecasting KPI 10 What is a good forecast error? 11 Measuring forecasting accuracy on a product portfolio Part 3 - Data-driven forecasting process 12 Forecast value added 13 What do you review? ABC XYZ segmentations and other methods Part 4 - Forecasting methods 14 Statistical forecasting 15 Machine learning 16 Judgmental forecasting 17 Now it&’s your turn!

Demand Prediction in Retail: A Practical Guide to Leverage Data and Predictive Analytics (Springer Series in Supply Chain Management #14)

by Maxime C. Cohen Paul-Emile Gras Arthur Pentecoste Renyu Zhang

From data collection to evaluation and visualization of prediction results, this book provides a comprehensive overview of the process of predicting demand for retailers. Each step is illustrated with the relevant code and implementation details to demystify how historical data can be leveraged to predict future demand. The tools and methods presented can be applied to most retail settings, both online and brick-and-mortar, such as fashion, electronics, groceries, and furniture. This book is intended to help students in business analytics and data scientists better master how to leverage data for predicting demand in retail applications. It can also be used as a guide for supply chain practitioners who are interested in predicting demand. It enables readers to understand how to leverage data to predict future demand, how to clean and pre-process the data to make it suitable for predictive analytics, what the common caveats are in terms of implementation and how to assess prediction accuracy.

Démarrer Avec Android Studio

by Victor Thivillier Barbara Hohensee

Démarrer avec Android studio Une introduction à Android studio Le livre donne un aperçu des nouvelles fonctionnalités et possibilités. Il commence avec l'installation et la configuration d'Android Studio. Vous prendrez connaissance du nouvel IDE et de son éditeur. Vous apprendrez à créer de nouveaux projets Android à partir de zéro, à importer sous Android Studio des projets de nature différente comme un ancien projet Eclipse ou des projets Android depuis GitHub. Le livre contient également une introduction au système de build Gradle, avec plusieurs exemples concrets. En outre, vous verrez la signature, la construction et l'exécution d'applications ainsi que leur préparation pour l'Android Market: - Captures d'écran - Signature avec l'Assistant de signature - Signature d'un apk de release en utilisant Gradle Création et exécution de projets de test dans Android Studio. Le livre contient également plusieurs exemples sur les dépendances et les bibliothèques (ActionBar Sherlock, publicité avec Admob, Google Play SDK, Api Google Maps v2) Mise en place d'un dépôt Maven local, construction de bibliothèques aar. Vous pourrez prendre connaissance des product flavors - Types de Build - Variantes de build, et apprendre à construire différents APK de partir du même projet (comprend un exemple avec 2 flavors). Développement de jeux avec AndEngine et libGDX Intégration des jeux JavaScript dans un projet Android Studio [LIME GameEngine] Développement pour Google TV Templates de code Android: - Que sont les templates de code Android - Où trouver les templates ADT (Outils de développement Android)- Création de templates de code personnalisés Le livre contient plusieurs exemples de projets complets et Android exécutables à télécharger (Code source).

Dementia Lab 2019. Making Design Work: 4th Conference, D-Lab 2019, Eindhoven, The Netherlands, October 21–22, 2019, Proceedings (Communications in Computer and Information Science #1117)

by Rens Brankaert Wijnand IJsselsteijn

This book constitutes the refereed proceedings of the 4th Dementia Lab Conference, D-Lab 2019, held in Eindhoven, The Netherlands, in October 2019. The 12 full and 7 short papers presented in this volume were carefully reviewed and selected from 53 submissions. The papers are organized in topical sections: inclusion & participation, technology & experience, and Dementia Lab ideas.

Dementia Lab 2021: Proceedings of the 5th Dementia Lab Conference, D-Lab 2021, January 18–28, 2021 (Design For Inclusion #2)

by Rens Brankaert Caylee Raber Maarten Houben Paulina Malcolm Jon Hannan

This book gathers revised and selected contributions to the 5th Dementia Lab Conference, D-Lab 2021, organized online on January 18-28, 2021, from the Emily Carr University of Art + Design, Vancouver, Canada. It describes original strategies in which design or creative methods have been shown to uncover, support and enhance the abilities of people living with dementia. Papers report on new ideas and findings relating to three main themes: engagement, empowerment and identity. They cover: ethics of inclusion and solutions for shifting the culture of care to be focused on both personal independence and reconnecting with the community; new ways of designing with people living with dementia; strategies for breaking negative stereotypes and preconceived opinions; and approaches to retaining personhood and dignity. Offering a timely source of information on new design and creative methods to a broad community of industrial, communication, interactive and inclusive designers, this book is also meant to address and inspire various stakeholders and organizations in dementia care.

Democracy and Media Decadence

by John Keane

We live in a revolutionary age of communicative abundance in which many media innovations - from satellite broadcasting to smart glasses and electronic books - spawn great fascination mixed with excitement. In the field of politics, hopeful talk of digital democracy, cybercitizens and e-government has been flourishing. This book admits the many thrilling ways that communicative abundance is fundamentally altering the contours of our lives and of our politics, often for the better. But it asks whether too little attention has been paid to the troubling counter-trends, the decadent media developments that encourage public silence and concentrations of unlimited power, so weakening the spirit and substance of democracy. Exploring examples of clever government surveillance, market censorship, spin tactics and back-channel public relations, John Keane seeks to understand and explain these trends, and how best to deal with them. Tackling some tough but big and fateful questions, Keane argues that 'media decadence' is deeply harmful for public life.

Democracy and New Media

by Henry Jenkins David Thorburn

Digital technology is changing our politics. The World Wide Web is already a powerful influence on the public's access to government documents, the tactics and content of political campaigns, the behavior of voters, the efforts of activists etc.

Democracy Bytes

by Judith Bessant

This book is about new media, young people, the crisis of democracy and political renewal. It addresses a mixture of traditional and new questions: What is the political and political legitimacy? How do we understand politics in a 'network age'? Can we talk sensibly about the concept of a generation and generational change? Does democracy have a future? This book offers an optimistic assessment of how digital media supports new and distinctive forms of politics. Four case studies are offered: one considers performance art and protest in Russia, another investigates new media campaigns to defend the rights to freedom of speech and copyright in America, another inquires into indigenous art and interactive cartoons as politics in outback Australia and the last explores new forms of student action in schools and in the modern university.

Democracy Hacked: How Technology is Destabilising Global Politics

by Martin Moore

Technology has fractured democracy, and now there&’s no going back. All around the world, the fringes have stormed the palace of the elites and unleashed data miners, dark ads and bots on an unwitting public. After years of soundbites about connecting people, the social media giants are only just beginning to admit to the scale of the problem. We stand on the precipice of an era where switching your mobile platform will have more impact on your life than switching your government. Where freedom and privacy are seen as incompatible with social well-being and transparency. Where your attention is sold to the highest bidder. Our laws don&’t cover what is happening and our politicians don&’t understand it. But if we don&’t fight to change the system now, we may not get another chance.

Democracy in the Disinformation Age: Influence and Activism in American Politics

by Regina Luttrell Lu Xiao Jon Glass

In this book established researchers draw on a range of theoretical and empirical perspectives to examine social media’s impact on American politics. Chapters critically examine activism in the digital age, fake news, online influence, messaging tactics, news transparency and authentication, consumers’ digital habits and ultimately the societal impacts that continue to be created by combining social media and politics. Through this book readers will better understand and approach with questions such as: • How exactly and why did social media become a powerful factor in politics? • What responsibilities do social networks have in the proliferation of factually wrong and hate-filled messages? Or should individuals be held accountable? • What are the state-of-the-art of computational techniques for measuring and determining social media's impact on society? • What role does online activism play in today’s political arena? • What does the potent combination of social media and politics truly mean for the future of democracy? The insights and debates found herein provide a stronger understanding of the core issues and steer us toward improved curriculum and research aimed at a better democracy. Democracy in the Disinformation Age: Influence and Activism in American Politics will appeal to both undergraduate and postgraduate students, as well as academics with an interest in areas including political science, media studies, mass communication, PR, and journalism.

Democracy’s Detectives: The Economics of Investigative Journalism

by James T. Hamilton

Investigative journalism holds democracies and individuals accountable to the public. But important stories are going untold as news outlets shy away from the expense of watchdog reporting. Computational journalism, using digital records and data-mining algorithms, promises to lower the cost and increase demand among readers, James Hamilton shows.

Democracy's Double-Edged Sword: How Internet Use Changes Citizens' Views of Their Government

by Catie Snow Bailard

The Internet has a clear, consistent, and considerable influence on democratic satisfaction.Winner of the APSA Best Book in Information Technology and Politics of the American Political Science AssociationThe beauty of democracy is not only that citizens can vote a candidate into office but that they can also vote one out. As digital media grows omnipresent, it becomes more important for political scientists and communication scholars to understand its influence on all aspects of the political process, from campaigning to governance. Catie Snow Bailard argues that the Internet—by altering the quantity and range of information available to citizens—directly influences the ability of individuals to evaluate government performance. It also affects public satisfaction with the quality of available democratic practices and helps motivate political activity and organization.Bailard originates two theories for democratization specialists to consider—mirror-holding and window-opening—which she tests using data collected from dozens of countries and two randomized field experiments. Mirror-holding explores how accessing the Internet allows citizens to see a more detailed and nuanced view of their own government’s performance. Window-opening, however, enables those same citizens to glimpse how other governments perform, particularly in comparison to their own.Although the book offers a robust empirical foundation for testing the Internet’s effects on democratic attitudes, Bailard ultimately concludes that access to information does not necessarily ensure that democracy will automatically flourish.

Democracy's Double-Edged Sword: How Internet Use Changes Citizens' Views of Their Government

by Catie Snow Bailard

“Playing into the hands of neither the cyber-optimists nor the cyber-pessimists . . . this book makes a major contribution to our understanding.” —Talia Stroud, author of Niche News: The Politics of News ChoiceThe beauty of democracy is not only that citizens can vote a candidate into office but that they can also vote one out. As digital media has grown omnipresent, it becomes more important for political scientists and communication scholars to understand its influence on all aspects of the political process, from campaigning to governance. Catie Snow Bailard argues that the Internet—by altering the quantity and range of information available to citizens—directly influences the ability of individuals to evaluate government performance. It also affects public satisfaction with the quality of available democratic practices and helps motivate political activity and organization.Bailard originates two theories for democratization specialists to consider—mirror-holding and window-opening—which she tests using data collected from dozens of countries and two randomized field experiments. Mirror-holding explores how accessing the Internet allows citizens to see a more detailed and nuanced view of their own government’s performance. Window-opening, however, enables those same citizens to glimpse how other governments perform, particularly in comparison to their own.This book offers a robust empirical foundation for testing the Internet’s effects on democratic attitudes—and reminds us that access to information does not necessarily ensure that democracy will automatically flourish.“An outstanding book on democracy and the Internet…highly original.” —Choice

Democracy's News: A Primer on Journalism for Citizens Who Care about Democracy

by G. Michael Killenberg Rob Anderson

Since the Founding, America’s faith in a democratic republic has depended on citizens who could be trusted to be communicators. Vigorous talk about equality, rights, and collaboration fueled the Revolution, the Declaration of Independence, and the Constitution with its amendments. In a republic, the people set the terms for their lives not individually, but in community. The genius of keeping it alive exists in how everyday citizens talk and listen, write and read, for a common good. Dialogue and deliberation—rather than an accumulation of individual preferences—sustains a republic, yet a diminished and scarred institution of journalism jeopardizes citizens’ access to shared and truthful information. A disturbing “what’s in it for me?” attitude has taken over many citizens, and a creeping, autocratic sense of dismissive accusation too often characterizes the political style of elected officials. The basic fuel for democracy is the willingness of informed citizens to take each other seriously as they talk about political choices. Once we begin to clam up, build walls, and dismiss each other, we unravel the threads tying us to the Founders’ vision of a republic. A free press and free speech become meaningless if not supported by sustained listening to multiple positions. There are those who profit by dividing citizens into two camps: a comfortable “us” versus a scary “them.” They make their case with accusations and often with lies. They warp the very meaning of communication, hoping citizens never truly discover each other’s humanity. Democracy’s News discusses today’s problems of public communication in the context of history, law, and interpersonal life. News should not be something to dread, mistrust, or shun. Aided by reliable, factual journalism, citizens can develop a community-based knowledge to cope with social issues great and small. They come to treat neighbors and strangers as more than stereotypes or opponents. They become collaborators with whom to identify and sustain a working republic where news, citizenship, and public discourse merge.

The Democratic Surround: Multimedia & American Liberalism from World War II to the Psychedelic Sixties

by Fred Turner

We commonly think of the psychedelic sixties as an explosion of creative energy and freedom that arose in direct revolt against the social restraint and authoritarian hierarchy of the early Cold War years. Yet, as Fred Turner reveals in The Democratic Surround, the decades that brought us the Korean War and communist witch hunts also witnessed an extraordinary turn toward explicitly democratic, open, and inclusive ideas of communication and with them new, flexible models of social order. Surprisingly, he shows that it was this turn that brought us the revolutionary multimedia and wild-eyed individualism of the 1960s counterculture. In this prequel to his celebrated book From Counterculture to Cyberculture, Turner rewrites the history of postwar America, showing how in the 1940s and '50s American liberalism offered a far more radical social vision than we now remember. Turner tracks the influential mid-century entwining of Bauhaus aesthetics with American social science and psychology. From the Museum of Modern Art in New York to the New Bauhaus in Chicago and Black Mountain College in North Carolina, Turner shows how some of the most well-known artists and intellectuals of the forties developed new models of media, new theories of interpersonal and international collaboration, and new visions of an open, tolerant, and democratic self in direct contrast to the repression and conformity associated with the fascist and communist movements. He then shows how their work shaped some of the most significant media events of the Cold War, including Edward Steichen's Family of Man exhibition, the multimedia performances of John Cage, and, ultimately, the psychedelic Be-Ins of the sixties. Turner demonstrates that by the end of the 1950s this vision of the democratic self and the media built to promote it would actually become part of the mainstream, even shaping American propaganda efforts in Europe. Overturning common misconceptions of these transformational years, The Democratic Surround shows just how much the artistic and social radicalism of the sixties owed to the liberal ideals of Cold War America, a democratic vision that still underlies our hopes for digital media today.

Democratization of Expertise: How Cognitive Systems Will Revolutionize Your Life

by Ron Fulbright

We create technology enabling us to do things never before possible and it ultimately changes the way we live, work, play, and interact with each other. Throughout human history, the democratization of technology making a technology available to the masses, has brought about sweeping cultural, social, political, and societal changes. In the last half-century, the democratization of computers, information, the Internet, and social media have revolutionized and transformed our lives. We now stand at the beginning of a new era sure to bring about waves of new revolutions, the cognitive systems era. Until now, humans have done all of the thinking. However, our lives are about to be infused with artificial entities capable of performing high-level cognitive processing previously possible only in the human mind. Systems capable of this kind of "synthetic cognition" will achieve and surpass the level of human experts in almost every field of endeavor. Far from replacing humans, these cognitive systems will be our collaborators, teachers, confidants, colleagues, and companions. The future will belong to those who can better partner with these cognitive systems. Made available to the average person via the Internet, handheld devices, and through ordinary objects all around us, expertise will become democratized. Everything will change when anyone has access to expertise in any field and new things will be possible. The democratization of expertise is the foundation on which our society’s revolutions will be built over the next half-century. This book discusses societal and cultural revolutions throughout history brought about by the adoption of new technology and gives brief histories of human cognitive augmentation and artificial intelligence. In the coming cognitive systems era, humans, by collaboratively partnering with cognitive systems, will together achieve expert-level performance—synthetic expertise—with humans performing some of the cognitive processing and cognitive systems performing some. As the capabilities of cognitive systems improve over time, the balance of thinking will shift from being mostly human to mostly artificial. This book introduces the Levels of Cognitive Augmentation to describe this shift. Drawing from previous research in cognitive systems and intelligent agent theory, the knowledge stores required for expertise are identified in a Knowledge Level description of expertise. This book introduces a new abstract level, called the Expertise Level to describe the skills needed for expertise. Combining the knowledge-level and expertise-level descriptions, this book introduces the Model of Expertise. This book demonstrates use of the Model of Expertise by presenting several synthetic expert architectures: a synthetic teacher (Synthia), a synthetic friend/therapist (Sy), a synthetic elderly companion (Lois), a synthetic research companion (Synclair), and an automated scientific hypothesis explorer (Ashe). This book is intended for anyone interested in the fields of cognitive systems, cognitive computing, cognitive augmentation, or artificial intelligence or the impact of technologies from these fields on society. Anyone doing research and development in the area of cognitive systems or artificial intelligence will find this book particularly useful.

Democratizing Application Development with AppSheet: A citizen developer's guide to building rapid low-code apps with the powerful features of AppSheet

by Koichi Tsuji Suvrutt Gurjar Takuya Miyai

A hands-on guide to building sophisticated business applications and automation using AppSheet to deliver business results quickly without writing lines of codeKey FeaturesLearn how the AppSheet Editor works to configure, test, and deploy a business app without writing lines of codeGet hands-on experience with AppSheet by building a real-world application throughout the bookExplore useful tips and tricks to develop custom functionalities in the app to meet unique business needsBook DescriptionMany citizen developers regularly use spreadsheets in their business and day-to-day jobs. With AppSheet, you can take your spreadsheets to the next level by enhancing their ease of use. The platform allows you to run your business efficiently and manage it in the field outside of an office or indoor environment. This book enables you to create your own simple or medium to complex hybrid apps for business or personal use.As a beginner to AppSheet, this book will show you how the AppSheet Editor works and how it is used to configure, test, and deploy an app and share it with others as users or co-authors. You'll learn about widely used features such as how to use data sources, create app views and actions, construct expressions with AppSheet functions, and make your app secure through security and UX options. Next, you'll create email/attachment templates and develop reports/documents based on templates, store in the cloud, and send files through emails. You'll also understand how to integrate third-party services and monitor various usage statistics of your app. As you progress, you'll explore various features with the help of sample apps that you create using the book.By the end of this book, you'll have learned how to make the most of AppSheet to build powerful and efficient applications.What you will learnDiscover how the AppSheet app is presented for app usersExplore the different views you can use and how to format your data with colors and iconsUnderstand AppSheet functions such as yes/no, text, math, list, date and time and build expressions with those functionsExplore different actions such as data change, app navigation, external communication, and CSV import/exportAdd/delete and define editing permissions and learn to broadcast notifications and inform users of changesBuild a bot through the AppSheet Automation feature to automate various business workflowsWho this book is forThis book is for beginner and intermediate-level citizen application developers in small or medium size businesses and business users who want to develop their own apps. Basic knowledge of Google Sheets or Excel and an understanding of different spreadsheet formulas are required. Knowledge of SQL and basic software development will be beneficial but not necessary.

Democratizing Application Development with Betty Blocks: Build powerful applications that impact business immediately with no-code app development

by Reinier van Altena

Create applications efficiently with the help of comprehensive insights into the Betty Blocks no-code platform using this hands-on guidePurchase of the print or Kindle book includes a free PDF eBookKey FeaturesUnderstand the different capabilities, features, and low-code functionalities of Betty Blocks with real-world use casesExplore applications that impact your business right away with rapid application developmentDevelop dynamic web applications with easy drag-and-drop functionalities from Betty BlocksBook DescriptionThis practical guide on no-code development with Betty Blocks will take you through the different features, no-code functionalities, and capabilities of the Betty Blocks platform using real-world use cases. The book will equip you with the tools to develop business apps based on various data models, business processes, and more.You'll begin with an introduction to the basic concepts of the Betty Blocks no-code platform, such as developing IT solutions on various use cases including reporting apps, data tracking apps, workflows, and business processes. After getting to grips with the basics, you'll explore advanced concepts such as building powerful applications that impact the business straight away with no-code application development and quickly creating prototypes. The concluding chapters will help you get a solid understanding of rapid application development, building customer portals, building dynamic web apps, drag-and-drop front ends, visual modelling capabilities, and complex data models.By the end of this book, you'll have gained a comprehensive understanding of building your own applications as a citizen developer using the Betty Blocks no-code platform.What you will learnUnderstand what you can achieve with citizen developmentFind out how to build your first application with no-code developmentGet to grips with the basics of the Betty Blocks platform as a citizen developerDiscover how to build your own application or prototypeBuild business applications based on data models and business processesEnable developers to include additional functionality for citizen developersWho this book is forThis book is for citizen developers and business users who want to build applications to fulfill their business needs without depending on developers. Prior knowledge of coding and application development is not necessary, but it will speed up your learning.

Refine Search

Showing 14,401 through 14,425 of 53,657 results