|
2468件中 271件 - 300件
5 6 7 8 9 10 11 12 13 14 15
商品 | 説明 | 価格 |

【中古】 Google Appsではじめるオフィス・イノベーション クラウド型アプリのはじめ方・使い方 / 海 / [単行本(ソフトカバー)]【メール便送料無料】【最短翌日配達対応】
もったいない本舗 楽天市場店
|
著者:海老澤澄夫出版社:インプレスサイズ:単行本(ソフトカバー)ISBN-10:4844328867ISBN-13:9784844328865■通常24時間以内に出荷可能です。※繁忙期やセール等、ご注文数が多い日につきましては 発送まで48時間かかる場合があります。あらかじめご了承ください。 ■メール便は、1冊から送料無料です。※宅配便の場合、2,500円以上送料無料です。※最短翌日配達ご希望の方は、宅配便をご選択下さい。※「代引き」ご希望の方は宅配便をご選択下さい。※配送番号付きのゆうパケットをご希望の場合は、追跡可能メール便(送料210円)をご選択ください。■ただいま、オリジナルカレンダーをプレゼントしております。■お急ぎの方は「もったいない本舗 お急ぎ便店」をご利用ください。最短翌日配送、手数料298円から■まとめ買いの方は「もったいない本舗 おまとめ店」がお買い得です。■中古品ではございますが、良好なコンディションです。決済は、クレジットカード、代引き等、各種決済方法がご利用可能です。■万が一品質に不備が有った場合は、返金対応。■クリーニング済み。■商品画像に「帯」が付いているものがありますが、中古品のため、実際の商品には付いていない場合がございます。■商品状態の表記につきまして・非常に良い: 使用されてはいますが、 非常にきれいな状態です。 書き込みや線引きはありません。・良い: 比較的綺麗な状態の商品です。 ページやカバーに欠品はありません。 文章を読むのに支障はありません。・可: 文章が問題なく読める状態の商品です。 マーカーやペンで書込があることがあります。 商品の痛みがある場合があります。
|
336円
|

【中古】 Google Appsではじめるオフィス・イノベーション クラウド型アプリのはじめ方・使い方/海老澤澄夫【著】
ブックオフ 楽天市場店
|
海老澤澄夫【著】販売会社/発売会社:インプレスジャパン/インプレスコミュニケーションズ発売年月日:2010/07/01JAN:9784844328865
|
220円
|

Creating Interactive EPUBs or Web Apps with PubCoder Chapter 1. What is a Printed Book?【電子書籍】[ Carlos M. Arroyave V. ]
楽天Kobo電子書籍ストア
|
<p>This chapter gives a brief account of a printed book evolution and its anatomy, from its physical structure up to the parts of its content. There are flipping books illustrating the part of the book. The chapter also covers the basics about the cost of publication of a printed book.</p> <p>At the end there are two interactive forms of evaluation, one fill in the blanks and the second and interactive, self scoring multiple choice quiz.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
484円
|

Modern Web Apps using Rust Build full-stack applications using Rust-based Leptos framework, GraphQL, WebAssembly, and cloud-native deployment【電子書籍】[ Nira Talvyn ]
楽天Kobo電子書籍ストア
|
<p>This book introduces you to web development with Rust and Leptos. To begin with, you install a solid Rust toolchain and set up Leptos in VS Code, and then you see your first "Hello World" interface rendered via WebAssembly right away. So, first you'll design a microservice-inspired book-selling sample app, called LibroCommerce, into inventory, orders, and user accounts. Then, you'll connect each piece with Axum handlers, SQLx queries, and shared Serde models.</p> <p>By the time you get to Chapter 3, you'll have built a nonblocking, Tokio-driven server that handles dynamic routes, powers Leptos SSR pages, and secures endpoints with JWT and OAuth2. Then, you add real-time features: WebSockets send stock updates and order-status events to reactive Leptos signals, keeping the UI and backend in sync. As you go, you'll be writing end-to-end Playwright tests and setting up GitHub Actions so that every commit runs Rust tests, Playwright scenarios, Docker builds, and Kubernetes rollouts automatically. You'll learn how to connect to PostgreSQL with an async pool, model Books, Users, and Orders with Serde-annotated Rust structs, and implement CRUD, password hashing with Argon2, encrypted backups, and session stores in Redis. Performance tuning shows you how to optimize Tokio threads, tune SQLx pools, stream large result sets, debounce client inputs, and apply backpressure. At last, you put each microservice and frontend into Docker containers, deploy them with Kubernetes, and then use serverless.</p> <p>It's packed with over 100 bite-sized examples and ready-to-run solutions, and it'll walk you through building and operating a production-style web application in Rust, step-by-step. You won't become a Rust language expert, but you'll finish ready to design, code, test, and deploy modern web apps.</p> <h2>Key Learnings</h2> <p>Start using Rust and Leptos with VS Code to develop web applications using WebAssembly.</p> <p>Architect microservices with inventory, orders, and user modules for modular, scalable applications.</p> <p>Make servers that respond to user activity and are not blocked by other users. Use Tokio and Axum with dynamic routing and concurrency.</p> <p>Employ business logic with SQLX, transactions, and external API integration for real-world workflows.</p> <p>Protect your devices with JWT, OAuth2, Argon2 password hashing, HttpOnly cookies, and TLS encryption.</p> <p>Handle database state asynchronously, define Serde data models, and perform efficient CRUD operations.</p> <p>Utilize WebSockets, Leptos signals, and broadcast channels to enable real-time updates.</p> <p>Perform end-to-end testing with Playwright, integration tests, and automated CI pipelines for reliability.</p> <p>Put microservices and the frontend into containers using Docker, and use Kubernetes to orchestrate them so they can be deployed without any downtime.</p> <h2>Table of Content</h2> <p>Setting up Rust & Leptos Environment</p> <p>Designing Modern Architecture</p> <p>Building Application Server</p> <p>Database Integration and State Management</p> <p>Modern Interactions with REST, GraphQL, and OAuth</p> <p>Front-end Development with Leptos and WebAssembly</p> <p>Real-time Interactions using Websocket</p> <p>Modern Security, Performance, and Cloud Strategies</p> <p>Cloud-native Releases and Continuous Delivery</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
5,480円
|

Lunkers, Keepers, and Ones that Got Away Fish Tales from Four Generations of Anglers【電子書籍】[ Jerry Apps ]
楽天Kobo電子書籍ストア
|
<p><strong>Stories of fishing with family and friends by beloved author Jerry Apps</strong></p> <p>From his first experiences going fishing with his pa as a boy, Jerry Apps was hooked. Eighty-some years later, Apps reflects on a lifetime of fishing and the memories and lessons hauled in along the way. As he recounts the simple pleasures of casting a line from shore on a warm summer evening or reeling in a lunker on opening day of trout season, he reminds us of the values fishing can teach people of all ages: persistence, resourcefulness, and the importance of caring for our natural world.</p> <p>Along with his best-loved fish tales, Apps includes fishing photos from the family album and favorite angling locales, lingo, bait, and gear. He draws on interviews with fellow fishermen and -women, his own journal entries recorded over decades, and his popular newspaper column Outdoor Notebook. And, since it’s a tradition among fishing folks to pass along tales told by others, he shares stories that have come his way from extended family and friendsーsome of them funny, some poignant, many embellished, and all of them keepers. Humorous pen-and-ink illustrations made by artist Sid Boyum to commemorate the annual fishing season opener add charm to this delightful volume.</p> <p>In <em>Lunkers, Keepers, and Ones that Got Away</em>, Apps captures the exciting, heartwarming, and nostalgia-inducing experiences that fishing brings to avid and casual anglers alike.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
2,063円
|

Aprendendo O Microsoft Power Apps Construindo Aplicativos De Neg?cios Com Tecnologia De Baixo C?digo【電子書籍】[ Jideon Marques Marques ]
楽天Kobo電子書籍ストア
|
<p>No mundo acelerado de hoje, mais e mais organiza??es exigem desenvolvimento r?pido de aplicativos com custos de desenvolvimento reduzidos e produtividade aumentada. Este guia pr?tico mostra aos desenvolvedores de aplicativos como usar o PowerApps, a estrutura de aplicativos sem c?digo/baixo c?digo da Microsoft que ajuda os desenvolvedores a acelerar o desenvolvimento, modernizar processos de neg?cios e resolver desafios dif?ceis. O Livro fornece uma vis?o geral abrangente do design e da constru??o de aplicativos econ?micos com o Microsoft Power Apps. Voc? aprender? conceitos fundamentais por tr?s do desenvolvimento de baixo c?digo e sem c?digo, como construir aplicativos usando modelos pr?-constru?dos e em branco, como projetar um aplicativo usando o Copilot AI e controles de arrastar e soltar semelhantes ao PowerPoint, usar express?es semelhantes ao Excel para escrever l?gica de neg?cios para um aplicativo e integrar aplicativos com fontes de dados externas. Com este livro, voc? ir?: Aprenda a import?ncia do desenvolvimento de aplicativos sem c?digo/baixo c?digo Projetar aplicativos para dispositivos m?veis/tablets (aplicativos Canvas) usando modelos pr?-criados e em branco Projetar aplicativos da web (aplicativos orientados a modelos) usando componentes de baixo c?digo, sem c?digo e pro-c?digo Integrar PowerApps com aplicativos externos Aprenda conceitos b?sicos de codifica??o como JavaScript, Power Fx e C# Aplique as melhores pr?ticas para personalizar aplicativos do Dynamics 365 CE Mergulhe nos conceitos do Azure DevOps e ALM para automatizar a implanta??o de aplicativos</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
4,400円
|

Android Studio Jellyfish Essentials - Java Edition Developing Android Apps Using Android Studio 2023.3.1 and Java【電子書籍】[ Smyth ]
楽天Kobo電子書籍ストア
|
<p>This book, fully updated for Android Studio Jellyfish (2023.3.1) and the new UI, teaches you how to develop Android-based applications using the Java programming language.</p> <p>This book begins with the basics and outlines how to set up an Android development and testing environment, followed by an overview of areas such as tool windows, the code editor, and the Layout Editor tool. An introduction to the architecture of Android is followed by an in-depth look at the design of Android applications and user interfaces using the Android Studio environment.</p> <p>Chapters also cover the Android Architecture Components, including view models, lifecycle management, Room database access, content providers, the Database Inspector, app navigation, live data, and data binding.</p> <p>More advanced topics such as intents are also covered, as are touch screen handling, gesture recognition, and the recording and playback of audio. This book edition also covers printing, transitions, and foldable device support.</p> <p>The concepts of material design are also covered in detail, including the use of floating action buttons, Snackbars, tabbed interfaces, card views, navigation drawers, and collapsing toolbars.</p> <p>Other key features of Android Studio and Android are also covered in detail, including the Layout Editor, the ConstraintLayout and ConstraintSet classes, MotionLayout Editor, view binding, constraint chains, barriers, and direct reply notifications.</p> <p>Chapters also cover advanced features of Android Studio, such as App Links, Gradle build configuration, in-app billing, and submitting apps to the Google Play Developer Console.</p> <p>Assuming you already have some Java programming experience, are ready to download Android Studio and the Android SDK, have access to a Windows, Mac, or Linux system, and have ideas for some apps to develop, you are ready to get started.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
5,480円
|

Okta Administration Up and Running Drive operational excellence with IAM solutions for on-premises and cloud apps【電子書籍】[ HenkJan de Vries ]
楽天Kobo電子書籍ストア
|
<p><b>Get to grips with the fundamentals of Zero trust, IAM, and Okta, while learning how to carry out foundational configuration of your own tenants with the help of step-by-step instructions</b></p><h2>Key Features</h2><ul><li>Discover how to use Okta for complete identity and access management in your organization</li><li>Explore agentless desktop single sign-on, multifactor authentication, and lifecycle management for enhanced security</li><li>Learn about no-code and low-code automation functionalities, also known as Okta Workflows</li><li>Purchase of the print or Kindle book includes a free PDF eBook</li></ul><h2>Book Description</h2>Identity and access management (IAM) is a set of policies and technologies used to ensure an organization’s security, by carefully assigning roles and access to users and devices. This book will get you up and running with Okta, an IAM service that can help you manage both employees and customers. The book begins by helping you understand how Okta can be used as an IAM platform, before teaching you about Universal Directory and how to integrate with other directories and apps, as well as set up groups and policies for Joiner, Mover, and Leaver flows. This updated edition helps you to explore agentless desktop single sign-on (SSO) and multifactor authentication (MFA) solutions, and showing how to utilize Okta to meet NIST requirements. The chapters also walk you through Okta Workflows, low-/no-code automation functionalities, and custom API possibilities used to improve lifecycle management. Finally, you’ll delve into API access auditing and management, where you’ll discover how to leverage Advanced Server Access (ASA) for your cloud servers. By the end of this book, you’ll have learned how to implement Okta to enhance your organization's security and be able to use the book as a reference guide for the Okta certification exam.<h2>What you will learn</h2><ul><li>Get a clear overview of Okta’s advanced features</li><li>Integrate Okta with directories and applications using hands-on instructions</li><li>Get practical recommendations on managing policies for SSO, MFA, and lifecycle management</li><li>Discover how to manage groups and group rules for Joiner, Mover, Leaver events in Okta using examples</li><li>Manage your Okta tenants using APIs and oversee API access with Okta</li><li>Set up and manage your organization’s Okta environment, ensuring a secure IAM practice</li><li>Find out how to extend your Okta experience with Workflows and ASA</li></ul><h2>Who this book is for</h2><p>If you are an IT consultant, business decision-maker, system administrator, system and security engineer, or anyone looking to use Okta to plan, design, and implement identity and access management solutions, this book is for you. A basic understanding of authentication and authorization is necessary to understand the topics present in this book.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
4,304円
|

Security Apps A Complete Guide - 2024 Edition【電子書籍】[ Gerardus Blokdyk ]
楽天Kobo電子書籍ストア
|
<p>Are employees allowed to use personal mobile apps on organization assigned mobile devices?</p> <p>Are the IoT app platforms doing enough to protect the privacy and security of the users?</p> <p>Are there existing policies that protect users from downloading apps prone to insecurity?</p> <p>Are your cloud, mobile, and on premises apps giving attackers a foothold in your business?</p> <p>Have mobile devices been involved in security breaches in your organization in the past?</p> <p>How can security leaders know how much is too much when it comes to the AppSec activities?</p> <p>How has the use of mobile apps by employees affected your organizations security posture?</p> <p>How to authenticate physical consumers of cloud based apps in a simple yet secure manner?</p> <p>How will you test the apps in cloud for performance and availability before turning over?</p> <p>Which apps, policies, and configurations can each admin distribute to users and devices?</p> <p><strong>This Security Apps Guide breaks away from traditional books. If you're seeking a standard textbook, this may not be the right fit for you. This guide <em>along with its accompanying digital resources</em> is for you who understands the importance of asking profound questions. This equips you with the questions necessary to uncover the Security Apps challenges you're confronting and devise superior solutions to address these issues.</strong></p> <p>Defining, designing, creating, and implementing a process to solve a challenge or achieve an objective is the most valuable role… Get Stuff Done in EVERY group, company, organization and department.</p> <p>Unless you are dealing with a one-time, single-use project, there should be a process. That process needs to be designed by someone with a broad enough perspective to ask the right questions. Someone able to ask the right questions and step back and say, 'What are we really trying to accomplish here? And is there a different way to look at it?'</p> <p>This Self-Assessment empowers people to do just that - whether their title is entrepreneur, manager, consultant, (Vice-)President, CxO etc... - they are the people who shape the future. They are the person who asks the right questions to make Security Apps investments work better.</p> <p>This Security Apps All-Inclusive Self-Assessment enables You to be that person.</p> <p>INCLUDES all the tools you need to an in-depth Security Apps Self-Assessment. Featuring new and updated case-based questions, organized into seven core levels of Security Apps maturity, this Self-Assessment will help you identify areas in which Security Apps improvements can be made.</p> <p><strong>In using the questions you will be better able to:</strong></p> <p><strong>Assess Security Apps projects, initiatives, organizations, businesses and processes using established diagnostic standards and practices.</strong></p> <p><strong>Implement evidence-based best practice strategies aligned with overall goals.</strong></p> <p><strong>Integrate recent advances in Security Apps and process design strategies into practice according to best practice guidelines.</strong></p> <p>Using the Self-Assessment tool gives you the Security Apps Scorecard, enabling you to develop a clear picture of which Security Apps areas need attention.</p> <p>Your purchase includes access to the <strong>Security Apps self-assessment digital components</strong> which gives you your dynamically prioritized project-ready tool. This tool enables you to define, show and lead your organization exactly with what's important.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
6,400円
|

洋書 Paperback, The Business of iPhone and iPad App Development: Making and Marketing Apps that Succeed
Glomarket
|
*** We ship internationally, so do not use a package forwarding service. We cannot ship to a package forwarding company address because of the Japanese customs regulation. If it is shipped and customs office does not let the package go, we do not make a refund. 【注意事項】 *** 特に注意してください。 *** ・個人ではない法人・団体名義での購入はできません。この場合税関で滅却されてもお客様負担になりますので御了承願います。 ・お名前にカタカナが入っている場合法人である可能性が高いため当店システムから自動保留します。カタカナで記載が必要な場合はカタカナ変わりローマ字で記載してください。 ・お名前またはご住所が法人・団体名義(XX株式会社等)、商店名などを含めている場合、または電話番号が個人のものではない場合、税関から法人名義でみなされますのでご注意ください。 ・転送サービス会社への発送もできません。この場合税関で滅却されてもお客様負担になりますので御了承願います。 *** ・注文後品切れや価格変動でキャンセルされる場合がございますので予めご了承願います。 ・当店でご購入された商品は、原則として、「個人輸入」としての取り扱いになり、すべてニュージャージからお客様のもとへ直送されます。 ・ご注文後、30営業日以内(通常2~3週間)に配送手続きをいたします。配送作業完了後、2週間程度でのお届けとなります。 ・まれに商品入荷状況や国際情勢、運送、通関事情により、お届けが2ヶ月までかかる場合がありますのでお急ぎの場合は注文をお控えください。 ・個人輸入される商品は、すべてご注文者自身の「個人使用・個人消費」が前提となりますので、ご注文された商品を第三者へ譲渡・転売することは法律で禁止されております。 ・関税・消費税が課税される場合があります。詳細はこちらをご確認下さい。PC販売説明文
|
9,902円
|

洋書 O'Reilly Media paperback Book, Client-Server Web Apps with JavaScript and Java: Rich, Scalable, and RESTful
Glomarket
|
*** We ship internationally, so do not use a package forwarding service. We cannot ship to a package forwarding company address because of the Japanese customs regulation. If it is shipped and customs office does not let the package go, we do not make a refund. 【注意事項】 *** 特に注意してください。 *** ・個人ではない法人・団体名義での購入はできません。この場合税関で滅却されてもお客様負担になりますので御了承願います。 ・お名前にカタカナが入っている場合法人である可能性が高いため当店システムから自動保留します。カタカナで記載が必要な場合はカタカナ変わりローマ字で記載してください。 ・お名前またはご住所が法人・団体名義(XX株式会社等)、商店名などを含めている場合、または電話番号が個人のものではない場合、税関から法人名義でみなされますのでご注意ください。 ・転送サービス会社への発送もできません。この場合税関で滅却されてもお客様負担になりますので御了承願います。 *** ・注文後品切れや価格変動でキャンセルされる場合がございますので予めご了承願います。 ・当店でご購入された商品は、原則として、「個人輸入」としての取り扱いになり、すべてニュージャージからお客様のもとへ直送されます。 ・ご注文後、30営業日以内(通常2~3週間)に配送手続きをいたします。配送作業完了後、2週間程度でのお届けとなります。 ・まれに商品入荷状況や国際情勢、運送、通関事情により、お届けが2ヶ月までかかる場合がありますのでお急ぎの場合は注文をお控えください。 ・個人輸入される商品は、すべてご注文者自身の「個人使用・個人消費」が前提となりますので、ご注文された商品を第三者へ譲渡・転売することは法律で禁止されております。 ・関税・消費税が課税される場合があります。詳細はこちらをご確認下さい。PC販売説明文
|
8,913円
|

The Interconnected Individual Seizing Opportunity in the Era of AI, Platforms, Apps, and Global Exchanges【電子書籍】[ Hunter Hastings ]
楽天Kobo電子書籍ストア
|
<p>Given the rapid technological, organizational, and structural changes that challenge conventional institutions and economies, what is the future of work? The authors propose a path to seize opportunity for the individual worker and entrepreneur, who can be newly interconnected and augmented by emerging technologies. Values-based individual career and business navigation can thrive and succeed; teams, groups, and networks can be enhanced with a new mode of innovation based on social conversation and connection rather than a commercial, hierarchical, and prescriptive process. The authors provide visual models, case studies, and in-depth interviews with cutting-edge practitioners, who provide insights from real-world experience. The Interconnected Individual is intended to help business and professional executives and freelance workers to adopt an entrepreneurial mind-set, regardless of field, industry, or work role.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
1,805円
|

The Land Still Lives【電子書籍】[ Jerry Apps ]
楽天Kobo電子書籍ストア
|
<p>“Apps is a man of ideas who is sensitive to the touch, the smells, and the feel of doing things by hand, today and a hundred years ago.”ーfrom the foreword by Senator Gaylord Nelson</p> <p>Originally published in 1970, <em>The Land Still Lives</em> is the first book by Wisconsin’s greatest rural philosopher, Jerry Apps. Written when he was still a young agriculture professor at the University of Wisconsin, <em>The Land Still Lives</em> was readers’ first introduction to Jerry’s farm in central Wisconsin, called Roshara, and the surrounding community of Skunk’s Hollow. This special 50th-anniversary edition features a new epilogue, in which Jerry revisits his philosophy of caring for the land so it in turn will care for us. This is vintage Apps, essential reading for Jerry’s legions of fansーand for all who, like Jerry, wish “to develop a relationship with nature and all its mystery and wonder.”</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
2,063円
|

Swift 5 for Absolute Beginners Learn to Develop Apps for iOS【電子書籍】[ Stefan Kaczmarek ]
楽天Kobo電子書籍ストア
|
<p>Stay motivated and overcome obstacles while learning to use Swift Playgrounds and Xcode 10.2 to become a great iOS developer. This book, fully updated for Swift 5, is perfect for those with no programming background, those with some programming experience but no object-oriented experience, or those that have a great idea for an app but haven’t programmed since school.</p> <p>Many people have a difficult time believing they can learn to write iOS apps. <em>Swift 5 for Absolute Beginners</em> will show you how to do so. You'll learn Object-Oriented Programming (OOP) and be introduced to User Interface (UI) design following Apple’s Human Interface Guidelines (HIG) using storyboards and the Model-View-Controller (MVC) pattern before moving on to write your own iPhone and Apple Watch apps from scratch.</p> <p><strong>What You’ll Learn</strong></p> <ul> <li> <p>Work with Swift classes, properties, and functions</p> </li> <li> <p>Examine proper User Interface (UI) and User Experience (UX)design</p> </li> <li> <p>Understand Swift data types: integers, floats, strings, and booleans</p> </li> <li> <p>Use Swift data collections: arrays and dictionaries</p> </li> <li> <p>Review Boolean logic, comparing data, and flow control</p> </li> <li> <p>Use the Xcode debugger to troubleshoot problems with your apps</p> </li> <li> <p>Store data in local app preferences and Core Data databases</p> </li> </ul> <p><strong>Who This Book Is For</strong></p> <p>Anyone who wants to learn to develop apps for the Mac, iPhone, iPad, and Apple Watch using the Swift programming language. No previous programming experience is necessary.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
5,469円
|

Every Farm Tells a Story A Tale of Family Values【電子書籍】[ Jerry Apps ]
楽天Kobo電子書籍ストア
|
<p>Jerry Apps details the virtues and hardships of rural living.</p> <p>“Do your chores without complaining. Show up on time. Do every job well. Always try to do better. Never stop learning. Next year will be better. Care for others, especially those who have less than you. Accept those who are different from you. Love the land.”</p> <p>In this paperback edition of a beloved Jerry Apps classic, the rural historian captures the heart and soul of life in rural America. Inspired by his mother’s farm account booksーin which she meticulously recorded every farm purchaseーJerry chronicles life on a small farm during and after World War II. Featuring a new introduction exclusive to this 2nd edition, Every Farm Tells a Story reminds us that, while our family farms are shrinking in number, the values learned there remain deeply woven in our cultural heritage.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
1,675円
|

Xamarin.Forms Essentials First Steps Toward Cross-Platform Mobile Apps【電子書籍】[ Gerald Versluis ]
楽天Kobo電子書籍ストア
|
<p>Learn the bare essentials needed to begin developing cross-platform, mobile apps using Xamarin.Forms. Apps can be easily deployed to Google Play or to the Apple App Store. You will gain insight on architecture and how to arrange your app's design, where to begin developing, what pitfalls exist, and how to avoid them. Also covered are expected new features in Xamarin.Forms 3.0, so you may be prepared ahead of time for what the next release brings.</p> <p><em>Xamarin.Forms Essentials</em> provides a brief history of Xamarin as a company, including how their product has become one of the most-used, cross-platform technologies for enterprise applications and app development across the world. Examples in the book are built around a real-life example that is an actual app in Google Play and in the Apple App Store, and has thousands of downloads between iOS and Android. You will learn how an application is set up from scratch, and you will benefit from the author's hard-won experience and tips in addressing various development challenges.</p> <p><strong>What You'll Learn</strong></p> <ul> <li> <p>Create cross-platform user interfaces from one code base for both iOS and Android</p> </li> <li> <p>See how a commercial application is built and then deployed for sale in the app stores</p> </li> <li> <p>Integrate your Xamarin.Forms applications with third-party, RESTful APIs</p> </li> <li> <p>Arrange application architecture to avoid pitfalls and optimize your design</p> </li> <li> <p>Get a heads-up on new features released as part of Xamarin.Forms 3.0</p> </li> <li> <p>Choose appropriately between Xamarin.Forms and traditional Xamarin, depending upon your application needs and its goals</p> </li> </ul> <p><strong>Who This Book Is For</strong></p> <p>Mobile app developers who are producing software for multiple platforms, including Google Android and Apple iOS. Readers should be familiar with Visual Studio either on Mac OS X or Windows, and have a working knowledge of C#.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
3,402円
|

Expert Delphi Become a developer superhero and build stunning cross-platform apps with Delphi【電子書籍】[ Pawel Glowacki ]
楽天Kobo電子書籍ストア
|
<p><strong>Become a developer superhero and build stunning cross-platform apps with Delphi</strong></p> <h2>About This Book</h2> <ul> <li>A one-stop guide on Delphi to help you build cross-platform apps</li> <li>This book covers important concepts such as the FireMonkey library, shows you how to interact with the Internet of Things, and enables you to integrate with Cloud services</li> <li>The code is explained in detail with observations on how to create native apps for Ios and Android with a single code base</li> </ul> <h2>Who This Book Is For</h2> <p>If you want to create stunning applications for mobile, desktop, the cloud, and the Internet of Things, then this book is for you. This book is for developers who would like to build native cross-platform apps with a single codebase for iOS and Android. A basic knowledge of Delphi is assumed, although we do cover a primer on the language.</p> <h2>What You Will Learn</h2> <ul> <li>Understand the basics of Delphi and the FireMonkey application platform as well as the specifics of Android and iOS platforms</li> <li>Complete complex apps quickly with access to platform features and APIs using a single, easy-to-maintain code base</li> <li>Work with local data sources, including embedded SQL databases, REST servers, and Backend-as-a-Service providers</li> <li>Take full advantage of mobile hardware capabilities by working with sensors and Internet of Things gadgets and devices</li> <li>Integrate with cloud services and data using REST APIs and scalable multi-tier frameworks for outstanding multi-user and social experience</li> <li>Architect and deploy powerful mobile back-end services and get super-productive by leveraging Delphi IDE agile functionality</li> <li>Get to know the best practices for writing a high-quality, reliable, and maintainable codebase in the Delphi Object Pascal language</li> </ul> <h2>In Detail</h2> <p>Delphi is the most powerful Object Pascal IDE and component library for cross-platform native app development. It enables building natively compiled, blazingly fast apps for all major platforms including Android, iOS, Windows, Mac, and Linux.</p> <p>If you want to build server-side applications, create web services, and have clear GUIs for your project, then this book is for you.</p> <p>The book begins with a basic primer on Delphi helping you get accustomed to the IDE and the Object Pascal language and will then quickly move on to advanced-level concepts. Through this book, we'll help you understand the architecture of applications and will teach you the important concepts of the FireMonkey library, show you how to build server-side services, and enable you to interact with the Internet of Things. Towards the end, you will learn to integrate your app with various web services and deploy them.</p> <p>By the end of the book, you will be able to build powerful, cross-platform, native apps for iOS and Android with a single code base.</p> <h2>Style and approach</h2> <p>This book will help you build cross-platform mobile apps with Delphi using a step-by-step approach.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
6,029円
|

Minecraft Structures The Ultimate Guide to Building Structures, Vehicles, Builds, And More!【電子書籍】[ Aqua Apps ]
楽天Kobo電子書籍ストア
|
<p>One of the best parts of the game Minecraft is the ability to create virtually ANYTHING! Unfortunately, some structures and creations are very confusing and hard to build. That is why we have created a great guide to help you create the best structures, creations, buildings, vehicles, and more on Minecraft. Be the envy of your friends and build the most awesome stuff now!</p> <p><em>*Note that we are in no way partnered with, supported by, or associated with Mojang AB or Minecraft.</em></p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
294円
|

Learn React with TypeScript A beginner's guide to building real-world, production-ready web apps with React 19 and TypeScript【電子書籍】[ Carl Rippon ]
楽天Kobo電子書籍ストア
|
<p><b>Take your first step in building modern-day component-based scalable web apps using the latest features and capabilities of React 19, TypeScript, and Next.js with this easy-to-follow guide</b></p><h2>Key Features</h2><ul><li>Unlock powerful performance gains with React server components and server functions in Next.js</li><li>Manage forms, state, and data fetching with modern tools like Zustand and Next.js</li><li>Build reusable, scalable components using proven React and TypeScript design patterns</li><li>Purchase of the print or Kindle book includes a free PDF eBook</li></ul><h2>Book Description</h2>Reading, navigating, and debugging a large frontend codebase can be challenging. Learn React with TypeScript, 3rd Edition helps you overcome these challenges by teaching you React, TypeScript, and Next.js, which are core technologies for building scalable, high-performance apps. Updated for React 19, this new edition covers new features such as React Server Components, server functions, and powerful modern hooks, including useFormStatus and useActionState. You'll build type-safe components using TypeScript, making this book ideal for React beginners who want to master patterns aligned with real-world frontend and React developer roles. You’ll also explore Next.js for RSCs and routing, and learn to use Zustand for global state in Reactーa lightweight alternative to traditional state managers. The chapters guide you through efficient data-fetching strategies with RSCs in Next.js, as well as in single-page applications (SPAs). The book also covers form handling, reusable architecture, and testing React components with Vitest to ensure robust, production-ready apps. By the end of this book, you’ll have the confidence and skills to build maintainable React applications with TypeScript and Next.js, following modern web development best practices.<h2>What you will learn</h2><ul><li>Apply React styling techniques to create stunning and visually engaging UIs</li><li>Leverage server components to seamlessly integrate with client components for optimized performance</li><li>Fetch and manage data efficiently in React for a smooth, responsive user experience</li><li>Build interactive, validated forms with TypeScript and server actions to handle user input</li><li>Share state efficiently across components using Zustand</li><li>Structure scalable, multi-page applications effortlessly with Next.js</li><li>Write unit tests for React apps with Vitest and React Testing Library</li></ul><h2>Who this book is for</h2><p>This book is for aspiring React developers, frontend engineers, or full-stack developers looking to build large-scale web applications using React and TypeScript. This guide offers a solid foundation in modern web development practices using React, TypeScript, and Next.js. Intermediate knowledge of HTML, CSS, and JavaScript is required.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
4,304円
|

Hands-on iOS App Development Projects Turn Your Ideas into Actionable, Real-World iOS Apps with Swift, Xcode, UI Kit, Core Data, AWS and OAuth (English Edition)【電子書籍】[ Aish Kodali ]
楽天Kobo電子書籍ストア
|
<p>Learn iOS App Development Efficiently with Hands-On Real-World ProjectsKey Features● Build high-quality, feature-rich iOS apps with Apple's tools for seamless user experiences.● Leverage cloud services for data storage, fetching, and publishing using data modeling.● Implement secure authentication to ensure safe and reliable app logins.Book DescriptioniOS apps account for a major share of the global app market revenue, making iOS app development a crucial skill in today's tech-driven world. This book offers a practical, hands-on approach to mastering iOS app development, covering everything you need to become a professional app developer or create your own impactful apps.Packed with real-world scenarios, this book takes you from beginner to pro with practical projects and workplace-tested insights and practical solutions. You will learn how to design user-friendly interfaces, connect apps to APIs, implement secure authentication, and leverage location servicesーall with Apple’s Swift and Xcode. This book covers everything from downloading older Xcode versions to handling data modeling and building impactful apps.Whether you’re developing weather apps or leveraging location services, the knowledge you gain here will set you apart. With iOS powering 1.5 billion devices worldwide, the opportunities are endless. Start your journey todayーyour app could change the world!What you will learn● Master app development using Apple’s UI elements and Swift.● Develop apps with robust APIs and cloud-based data management.● Use location services and authentication for enhanced app experiences.● Design user-centric interfaces with modern development techniques.● Create apps capable of making a global impact.Table of Contents1. Getting Started2. App Process and TableViews3. The Other UI Elements4. Navigation5. Sample App6. Networking7. Leveraging Location Services8. Saving Data for iOS Applications9. Authentication IndexAbout the AuthorsAish Kodali is a senior iOS developer with expertise in UIKit and Swift. Inspired by her father's dream, she embarked on a tech career, driven by a passion for improving lives through innovation. A fan of Steve Jobs, she believes in the transformative power of technology and its ability to advance humanity.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
2,573円
|

Hands-on iOS App Development Projects Turn Your Ideas into Actionable, Real-World iOS Apps with Swift, Xcode, UI Kit, Core Data, AWS and OAuth (English Edition)【電子書籍】[ Aish Kodali ]
楽天Kobo電子書籍ストア
|
<p><em><strong>Learn iOS App Development Efficiently with Hands-On Real-World Projects</strong></em></p> <p><strong>Key Features</strong><br /> ● Build high-quality, feature-rich iOS apps with Apple's tools for seamless user experiences.<br /> ● Leverage cloud services for data storage, fetching, and publishing using data modeling.<br /> ● Implement secure authentication to ensure safe and reliable app logins.</p> <p><strong>Book Description</strong><br /> iOS apps account for a major share of the global app market revenue, making iOS app development a crucial skill in today's tech-driven world. This book offers a practical, hands-on approach to mastering iOS app development, covering everything you need to become a professional app developer or create your own impactful apps.</p> <p>Packed with real-world scenarios, this book takes you from beginner to pro with practical projects and workplace-tested insights and practical solutions. You will learn how to design user-friendly interfaces, connect apps to APIs, implement secure authentication, and leverage location servicesーall with Apple’s Swift and Xcode. This book covers everything from downloading older Xcode versions to handling data modeling and building impactful apps.</p> <p>Whether you’re developing weather apps or leveraging location services, the knowledge you gain here will set you apart. With iOS powering 1.5 billion devices worldwide, the opportunities are endless. Start your journey todayーyour app could change the world!</p> <p><strong>What you will learn</strong><br /> ● Master app development using Apple’s UI elements and Swift.<br /> ● Develop apps with robust APIs and cloud-based data management.<br /> ● Use location services and authentication for enhanced app experiences.<br /> ● Design user-centric interfaces with modern development techniques.<br /> ● Create apps capable of making a global impact.</p> <p><strong>Table of Contents</strong></p> <ol> <li>Getting Started</li> <li>App Process and TableViews</li> <li>The Other UI Elements</li> <li>Navigation</li> <li>Sample App</li> <li>Networking</li> <li>Leveraging Location Services</li> <li>Saving Data for iOS Applications</li> <li>Authentication<br /> <strong>Index</strong></li> </ol> <p><strong>About the Authors</strong><br /> <strong>Aish Kodali</strong> is a senior iOS developer with expertise in UIKit and Swift. Inspired by her father's dream, she embarked on a tech career, driven by a passion for improving lives through innovation. A fan of Steve Jobs, she believes in the transformative power of technology and its ability to advance humanity.</p> <p>As a career ambassador for the ChooseMaths campaign, Kodali encourages young girls to pursue STEM careers, emphasizing the importance of math in app development. She has received several state-level awards for her work, including the Government as a Platform award and the Social Hack award. Her team's winning app at GovHack enabled users to report public property issues directly to the council.</p> <p>Kodali has also shared her expertise through talks and workshops, discussing her projects and inspiring others to learn coding. Her passion for knowledge sharing led her to author this book on iOS App development with the aim of empowering others to create impactful technology.</p> <p>With nine years of industry experience, Kodali's love for coding drives her belief in the potential of apps to simplify people's lives. This book reflects her motivations and knowledge, inspiring readers to build remarkable apps that could change the world.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
2,924円
|

ひと目でわかるPower Appsローコードで作成するビジネスアプリ入門
トップカルチャーnetクラブ
|
日経BP
|
3,300円
|

洋書 Paperback, Learning Microsoft Azure Storage: Build large-scale, real-world apps by effectively planning, deploying, and implementing Azure storage solutions
Glomarket
|
*** We ship internationally, so do not use a package forwarding service. We cannot ship to a package forwarding company address because of the Japanese customs regulation. If it is shipped and customs office does not let the package go, we do not make a refund. 【注意事項】 *** 特に注意してください。 *** ・個人ではない法人・団体名義での購入はできません。この場合税関で滅却されてもお客様負担になりますので御了承願います。 ・お名前にカタカナが入っている場合法人である可能性が高いため当店システムから自動保留します。カタカナで記載が必要な場合はカタカナ変わりローマ字で記載してください。 ・お名前またはご住所が法人・団体名義(XX株式会社等)、商店名などを含めている場合、または電話番号が個人のものではない場合、税関から法人名義でみなされますのでご注意ください。 ・転送サービス会社への発送もできません。この場合税関で滅却されてもお客様負担になりますので御了承願います。 *** ・注文後品切れや価格変動でキャンセルされる場合がございますので予めご了承願います。 ・当店でご購入された商品は、原則として、「個人輸入」としての取り扱いになり、すべてニュージャージからお客様のもとへ直送されます。 ・ご注文後、30営業日以内(通常2~3週間)に配送手続きをいたします。配送作業完了後、2週間程度でのお届けとなります。 ・まれに商品入荷状況や国際情勢、運送、通関事情により、お届けが2ヶ月までかかる場合がありますのでお急ぎの場合は注文をお控えください。 ・個人輸入される商品は、すべてご注文者自身の「個人使用・個人消費」が前提となりますので、ご注文された商品を第三者へ譲渡・転売することは法律で禁止されております。 ・関税・消費税が課税される場合があります。詳細はこちらをご確認下さい。PC販売説明文
|
13,145円
|

洋書 Pragmatic Bookshelf paperback Book, Async JavaScript: Build More Responsive Apps with Less Code (Pragmatic Express)
Glomarket
|
*** We ship internationally, so do not use a package forwarding service. We cannot ship to a package forwarding company address because of the Japanese customs regulation. If it is shipped and customs office does not let the package go, we do not make a refund. 【注意事項】 *** 特に注意してください。 *** ・個人ではない法人・団体名義での購入はできません。この場合税関で滅却されてもお客様負担になりますので御了承願います。 ・お名前にカタカナが入っている場合法人である可能性が高いため当店システムから自動保留します。カタカナで記載が必要な場合はカタカナ変わりローマ字で記載してください。 ・お名前またはご住所が法人・団体名義(XX株式会社等)、商店名などを含めている場合、または電話番号が個人のものではない場合、税関から法人名義でみなされますのでご注意ください。 ・転送サービス会社への発送もできません。この場合税関で滅却されてもお客様負担になりますので御了承願います。 *** ・注文後品切れや価格変動でキャンセルされる場合がございますので予めご了承願います。 ・当店でご購入された商品は、原則として、「個人輸入」としての取り扱いになり、すべてニュージャージからお客様のもとへ直送されます。 ・ご注文後、30営業日以内(通常2~3週間)に配送手続きをいたします。配送作業完了後、2週間程度でのお届けとなります。 ・まれに商品入荷状況や国際情勢、運送、通関事情により、お届けが2ヶ月までかかる場合がありますのでお急ぎの場合は注文をお控えください。 ・個人輸入される商品は、すべてご注文者自身の「個人使用・個人消費」が前提となりますので、ご注文された商品を第三者へ譲渡・転売することは法律で禁止されております。 ・関税・消費税が課税される場合があります。詳細はこちらをご確認下さい。PC販売説明文
|
5,362円
|

洋書 O'Reilly Media paperback Book, Building Android Apps with HTML, CSS, and JavaScript: Making Native Apps with Standards-Based Web Tools
Glomarket
|
*** We ship internationally, so do not use a package forwarding service. We cannot ship to a package forwarding company address because of the Japanese customs regulation. If it is shipped and customs office does not let the package go, we do not make a refund. 【注意事項】 *** 特に注意してください。 *** ・個人ではない法人・団体名義での購入はできません。この場合税関で滅却されてもお客様負担になりますので御了承願います。 ・お名前にカタカナが入っている場合法人である可能性が高いため当店システムから自動保留します。カタカナで記載が必要な場合はカタカナ変わりローマ字で記載してください。 ・お名前またはご住所が法人・団体名義(XX株式会社等)、商店名などを含めている場合、または電話番号が個人のものではない場合、税関から法人名義でみなされますのでご注意ください。 ・転送サービス会社への発送もできません。この場合税関で滅却されてもお客様負担になりますので御了承願います。 *** ・注文後品切れや価格変動でキャンセルされる場合がございますので予めご了承願います。 ・当店でご購入された商品は、原則として、「個人輸入」としての取り扱いになり、すべてニュージャージからお客様のもとへ直送されます。 ・ご注文後、30営業日以内(通常2~3週間)に配送手続きをいたします。配送作業完了後、2週間程度でのお届けとなります。 ・まれに商品入荷状況や国際情勢、運送、通関事情により、お届けが2ヶ月までかかる場合がありますのでお急ぎの場合は注文をお控えください。 ・個人輸入される商品は、すべてご注文者自身の「個人使用・個人消費」が前提となりますので、ご注文された商品を第三者へ譲渡・転売することは法律で禁止されております。 ・関税・消費税が課税される場合があります。詳細はこちらをご確認下さい。PC販売説明文
|
8,996円
|

Building Serverless Apps with Azure Functions and Cosmos DB: Leverage Azure functions and Cosmos DB for building serverless applications (English Edition)【電子書籍】[ Hansamali Gamage ]
楽天Kobo電子書籍ストア
|
<p><strong>Build Azure functions and integrate them with Azure Cosmos DB data models</strong></p> <p><strong>DESCRIPTION</strong></p> <p>This book provides examples to start with Azure functions and Azure Cosmos DB. It demonstrates the features available in both of the mentioned Azure services and discusses them in detail with some real-world examples. Reading a csv file and write to a Cosmos DB table store, Read emails using Microsoft Graph API and save them in a Cosmos DB, Cosmos DB trigger function to send SMS notifications to clients, A queue trigger to create new nodes in the Cosmos DB graph data store are some of them. You will be able to see the above case studies with code samples implemented in C# .NET Core, TypeScript, and Python. It consists of a very basic example, two intermediate samples, then and an advanced level one.</p> <p>You will experience the triggers and input/output bindings available for a function, like queue trigger, blob trigger, and Cosmos DB trigger to name a few. Also, you will be able to see some interesting features available in Azure functions like performance optimizations, scalability of a function app, geographical distribution of the function in different locations, error handling, writing unit tests for the functions to avoid breaking changes, how to ensure a function app is secure, and then how to deploy a function, and monitor and troubleshoot a function app.</p> <p>At the end of this book, you will gain strong experience in using Azure functions and how to manage serverless applications seamlessly without any failure with utmost performance.</p> <p><strong>KEY FEATURES</strong></p> <p>● Expert-led coverage on integrating Azure functions</p> <p>● Industry-proven examples and best practices on implementation of Azure Cosmos DB</p> <p>● Learn to work on performance optimization and error handling</p> <p>● Integration of Azure function with other Azure services</p> <p><strong>WHAT YOU WILL LEARN</strong></p> <p>● You will be able to create an Azure function and integrate it with many Azure services including the Azure Cosmos DB</p> <p>● You will get experience implementing a function using programming languages like C# .NET Core, TypeScript, and Python.</p> <p>● You will get hands-on experience on the performance optimizing of a function, how to scale them, how to apply security to the function app, error handling and testing in a function.</p> <p><strong>WHO THIS BOOK IS FOR</strong></p> <p>This book is for developers who want to get the knowledge and experience in Azure Functions and Azure Cosmos DB. If you have a programming knowledge of .NET, TypeScript, Python, or any other programming language, it will be enough to understand the concepts and samples in this book. If you have worked with a cloud technology or have experience in any of the Azure cloud services, then it will be a definite advantage.</p> <p><strong>AUTHOR BIO</strong></p> <p><strong>Hansamali Gamage</strong> is an enthusiastic and dedicated professional with over eight years of experience in .NET stack, Azure, and front-end technologies. She has also been an MVP (Azure) for three consecutive years and is a Microsoft Certified Trainer. She is a frequent speaker at tech conferences and an award-winning writer on the Microsoft Tech Net forum.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
2,300円
|

Apps Security A Complete Guide - 2020 Edition【電子書籍】[ Gerardus Blokdyk ]
楽天Kobo電子書籍ストア
|
<p>Is there a recommended audit plan for routine surveillance inspections of apps Security's gains? What is the apps Security's sustainability risk? Where is apps Security data gathered? Marketing budgets are tighter, consumers are more skeptical, and social media has changed forever the way we talk about apps Security, how do you gain traction? Who will be responsible for deciding whether apps Security goes ahead or not after the initial investigations?</p> <p>Defining, designing, creating, and implementing a process to solve a challenge or meet an objective is the most valuable role… In EVERY group, company, organization and department.</p> <p>Unless you are talking a one-time, single-use project, there should be a process. Whether that process is managed and implemented by humans, AI, or a combination of the two, it needs to be designed by someone with a complex enough perspective to ask the right questions. Someone capable of asking the right questions and step back and say, 'What are we really trying to accomplish here? And is there a different way to look at it?'</p> <p>This Self-Assessment empowers people to do just that - whether their title is entrepreneur, manager, consultant, (Vice-)President, CxO etc... - they are the people who rule the future. They are the person who asks the right questions to make Apps Security investments work better.</p> <p>This Apps Security All-Inclusive Self-Assessment enables You to be that person.</p> <p>All the tools you need to an in-depth Apps Security Self-Assessment. Featuring 935 new and updated case-based questions, organized into seven core areas of process design, this Self-Assessment will help you identify areas in which Apps Security improvements can be made.</p> <p>In using the questions you will be better able to:</p> <p>- diagnose Apps Security projects, initiatives, organizations, businesses and processes using accepted diagnostic standards and practices</p> <p>- implement evidence-based best practice strategies aligned with overall goals</p> <p>- integrate recent advances in Apps Security and process design strategies into practice according to best practice guidelines</p> <p>Using a Self-Assessment tool known as the Apps Security Scorecard, you will develop a clear picture of which Apps Security areas need attention.</p> <p>Your purchase includes access details to the Apps Security self-assessment dashboard download which gives you your dynamically prioritized projects-ready tool and shows your organization exactly what to do next. You will receive the following contents with New and Updated specific criteria:</p> <p>- The latest quick edition of the book in PDF</p> <p>- The latest complete edition of the book in PDF, which criteria correspond to the criteria in...</p> <p>- The Self-Assessment Excel Dashboard</p> <p>- Example pre-filled Self-Assessment Excel Dashboard to get familiar with results generation</p> <p>- In-depth and specific Apps Security Checklists</p> <p>- Project management checklists and templates to assist with implementation</p> <p>INCLUDES LIFETIME SELF ASSESSMENT UPDATES</p> <p>Every self assessment comes with Lifetime Updates and Lifetime Free Updated Books. Lifetime Updates is an industry-first feature which allows you to receive verified self assessment updates, ensuring you always have the most accurate information at your fingertips.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
6,400円
|

Beginning App Development with Flutter Create Cross-Platform Mobile Apps【電子書籍】[ Rap Payne ]
楽天Kobo電子書籍ストア
|
<p>Create iOS and Android apps with Flutter using just one codebase. App development on multiple platforms has historically been difficult and complex. This book breaks down complex concepts and tasks into easily digestible segments with examples, pictures, and hands-on labs with starters and solutions.</p> <p>In doing so, you'll develop a basic understanding of the Dart programming language; the entire Flutter development toolchain; the differences between stateful and stateless widgets; and a working knowledge of the architecture of apps. All the most important parts of app development with Flutter are covered in this book. Work with themes and styles. Develop custom widgets. Teach your app to respond to gestures like taps, swipes, and pinches. Design, create and control the layout of your app. Create tools to handle form data entry from users. And ultimately create killer multiscreen apps with navigation, menus, and tabs.</p> <p>Flutter is Google's new framework for creating mobile apps that run on iOS and Android phones both.You had to be a super-developer to write apps for iOS or Android alone. But writing for both? Forget about it! You had to be familiar with Swift, Java/Kotlin, Xcode, Eclipse, and a bunch of other technologies simultaneously. <em>Beginning App Development with Flutter</em> simplifies the entire process.</p> <p><strong>What You'll Learn</strong></p> <ul> <li>Get the most out of great Flutter widgets</li> <li>Create custom widgets, both stateless and stateful</li> <li>Exercise expert control over your Flutter layouts</li> <li>Make your app respond to gestures like swiping, pinching and tapping</li> <li>Initiate async Ajax calls to RESTful APIs ー including Google Firebase!</li> </ul> <p><strong>Who This Book Is For</strong></p> <p>Developers who have coded in Java, C#, C++, or any similar language. It brings app development within the reach of younger developers, so STEM groups are likely to pick up the technology. Managers, product owners, and business analysts need to understand Flutter's capabilities.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
6,685円
|

【中古】 誰でもできる!Google Apps導入ガイド / (株)サテライトオフィス / 日経BP [単行本]【メール便送料無料】【最短翌日配達対応】
もったいない本舗 楽天市場店
|
著者:(株)サテライトオフィス出版社:日経BPサイズ:単行本ISBN-10:4822296296ISBN-13:9784822296292■通常24時間以内に出荷可能です。※繁忙期やセール等、ご注文数が多い日につきましては 発送まで48時間かかる場合があります。あらかじめご了承ください。 ■メール便は、1冊から送料無料です。※宅配便の場合、2,500円以上送料無料です。※最短翌日配達ご希望の方は、宅配便をご選択下さい。※「代引き」ご希望の方は宅配便をご選択下さい。※配送番号付きのゆうパケットをご希望の場合は、追跡可能メール便(送料210円)をご選択ください。■ただいま、オリジナルカレンダーをプレゼントしております。■お急ぎの方は「もったいない本舗 お急ぎ便店」をご利用ください。最短翌日配送、手数料298円から■まとめ買いの方は「もったいない本舗 おまとめ店」がお買い得です。■中古品ではございますが、良好なコンディションです。決済は、クレジットカード、代引き等、各種決済方法がご利用可能です。■万が一品質に不備が有った場合は、返金対応。■クリーニング済み。■商品画像に「帯」が付いているものがありますが、中古品のため、実際の商品には付いていない場合がございます。■商品状態の表記につきまして・非常に良い: 使用されてはいますが、 非常にきれいな状態です。 書き込みや線引きはありません。・良い: 比較的綺麗な状態の商品です。 ページやカバーに欠品はありません。 文章を読むのに支障はありません。・可: 文章が問題なく読める状態の商品です。 マーカーやペンで書込があることがあります。 商品の痛みがある場合があります。
|
441円
|

iPhone and iPad Apps for Absolute Beginners【電子書籍】[ Rory Lewis ]
楽天Kobo電子書籍ストア
|
<p>This update of an Apress bestseller walks you through creating your first app, with plain English and practical examples using the latest iOS 7 software development platform and more. It cuts through the fog of jargon and misinformation that surrounds iPhone and iPad app development, and gives you simple, step-by-step instructions to get you started.</p> <ul> <li>Teaches iPhone and iPad apps development in language anyone can understand</li> <li>Provides simple, step-by-step examples that make learning easy, using iOS 7</li> <li>Offers bonus videos from the author that enable you to follow alongーit’s like your own private classroom</li> </ul> <p>The iPhone is the hottest gadget of our generation, and much of its success has been fueled by the App Store, Apple’s online marketplace for iPhone apps. Over 1 billion apps were downloaded during the nine months following the launch of the App Store, ranging from the simplest games to the most complex business apps. Everyone has an idea for the next best-selling iPhone appーthat’s why you’re reading this now! And with the popularity of the iPad, this demand will just continue to grow.</p>画面が切り替わりますので、しばらくお待ち下さい。 ※ご購入は、楽天kobo商品ページからお願いします。※切り替わらない場合は、こちら をクリックして下さい。 ※このページからは注文できません。
|
3,276円
|
|