|
|||
Create cryptocurrency and blockchain applications by examining the key algorithms and concepts pertaining to blockchains, transaction processing, mining, distributed consensus, and anonymous currencies. In this book, you’ll develop a fully functional cryptocurrency from scratch in the Python language.  Practical Blockchains and Cryptocurrencies  is a reference for development of blockchain applications and provides you with rigorous information on cryptography and the theory underlying blockchains. This book consists of small chapters that focus on particular topics. You’ll start with a short history of money. Next, you will survey the bitcoin and altcoin ecosystem before delving into cryptographic hash functions, symmetric encryption, public key cryptography, and digital signatures. All the mathematics required to develop blockchain applications is covered. The emphasis is on providing a lucid and rigorous exposition on the nature and working of these constructs. The next major segment of the book discusses the key concepts and algorithms required to develop blockchain and cryptocurrency applications. There are expositions on blockchain construction, Merkle trees, peer-to-peer networks, cryptocurrency addresses, transactions, and mining. You’ll take a deep dive into the formation of consensus in distributed systems. In this book you’ll develop a fully functional cryptocurrency called Helium from scratch in Python. The language requirements are modest since it is presumed that most readers will not be acquainted with Python. The entire source code and unit test code is included in this book. Practical Blockchains and Cryptocurrencies  interleaves theory and Helium program code chapters in order to demonstrate the practical application of theory in working Helium program code.       You will: Gain the mathematical foundations as well as the concepts and algorithms of blockchains and cryptocurrenciesImplement a cryptocurrency from scratch in PythonMaster the design of distributed blockchain applications     |
|
|||
This book was written to help anyone want to get started with Azure Database for MySQL. It describes the basic elements of Azure Database for MySQL operations and shows you how to develop programs with database on Azure Database for MySQL. You will learn: * Setting up Azure Database for MySQL * Administering Azure Database for MySQL * Developing Applications for Azure Database for MySQL * Developing Azure App Service with Azure Database for MySQL |
|
|||
Compile and run Bitcoin full nodes, lightning nodes, and user-friendly web-apps that help abstract the complexities of Bitcoin. This book not only explains the tools and techniques to help readers build their own banks and banking apps, but it also tells a story. Starting with the origins of Bitcoin—what it is and why we need it—find out what its strengths and limitations are. Understand the nature of mining and why so much energy is put into it. The blockchain itself will be reviewed, as well, and compared to other options such as a normal SQL database or a simple spreadsheet. With this book, you can control Bitcoin wallets via RPC commands on a Raspberry Pi. Configure, compile, and run two implementation of the Lightning Network-compatible daemons: LND and c-lightning. And employ user-friendly web apps that abstract the complexities of Bitcoin/Lightning-Network. The Internet of Information is currently transitioning to the Internet of Things, which in turn may well be followed by the Internet of Value (or Money). However, there is no evolution without happy users and Bitcoin will never reach the same heights like the original internet without having offered “useful” and “easy to use” tools. Just like nobody would ever want to use UUCP to send messages via web the same applies to current cryptocurrency tools. These are hard to use and very unforgiving. But, the evolution doesn’t stop here and many easy-to-use tools are already available. We will meet some of them when building apps for the Lightning Network, a new technology running on top of Bitcoin’s blockchain that makes it possible to generate billions of transactions within a single second. What You'll Learn Control Bitcoin wallets via console RPC commandsRun two implementation of the Lightning Network compatible daemonsSimplify the complexities of Bitcoin and the Lightning network with user-friendly web apps |
|
|||
This book explores how to get started with NVIDIA Jetson Nano for board development. This board support for CUDA and Deep Learning computation. The following is a list of highlight topics in this book. * Introduction to NVIDIA Jetson Nano * Preparation System Environment * Setting up System Environment * NVIDIA Jetson Nano Networking * Setting up WiFi module on NVIDIA Jetson Nano * Administering NVIDIA Jetson Nano * NVIDIA Jetson Nano Programming * Accessing GPIO * Working with Deep Learning |
|
|||
BuzzFeed News Senior Reporter Lam Thuy Vo explains how to mine, process, and analyze data from the social web in meaningful ways with the Python programming language. Did fake Twitter accounts help sway a presidential election? What can Facebook and Reddit archives tell us about human behavior? In Mining Social Media , senior BuzzFeed reporter Lam Thuy Vo shows you how to use Python and key data analysis tools to find the stories buried in social media. Whether you're a professional journalist, an academic researcher, or a citizen investigator, you'll learn how to use technical tools to collect and analyze data from social media sources to build compelling, data-driven stories. Learn how to:    •   Write Python scripts and use APIs to gather data from the social web    •   Download data archives and dig through them for insights    •   Inspect HTML downloaded from websites for useful content    •   Format, aggregate, sort, and filter your collected data using Google Sheets    •   Create data visualizations to illustrate your discoveries    •   Perform advanced data analysis using Python, Jupyter Notebooks, and the pandas library    •   Apply what you've learned to research topics on your own Social media is filled with thousands of hidden stories just waiting to be told. Learn to use the data-sleuthing tools that professionals use to write your own data-driven stories. |
|
|||
Summary Building Ethereum Dapps introduces you to decentralized applications based on the Ethereum blockchain platform. In this book, you'll learn the principles of Dapps development by rolling up your sleeves and actually building a few! About the technology Imagine unbreakably secure applications that handle personal and business transactions without any central agency controlling the process. Decentralized applications, or Dapps, do just this, shifting power to users. The Ethereum blockchain platform provides the tools you need to build Dapps, including an innovative “smart contracts” model and Solidity, a Dapp-aware JavaScript-like programming language. About the book Building Ethereum Dapps teaches Dapps development on the Ethereum blockchain platform. You’ll begin with a mental model of how Dapps operate, and then dive into designing and implementing smart contracts in Ethereum’s Solidity language. You’ll explore Ethereum smart contract development tools, like Truffle and Web3, and pick up best practices for design and security. Practical exercises throughout give you valuable hands-on experience.  What's inside Ethereum’s key components Implementing smart contracts in Solidity Communicating with a smart contract in Web3 Developing Dapps with Truffle Best practices for design and security improvement About the reader For developers with intermediate experience in JavaScript or an OO language. Familiarity with blockchain concepts is helpful. About the author Roberto Infante is a software development consultant who specializes in finance. He currently works on financial risk management systems and on blockchain technology. |
|
|||
Protect your data from attack by using SQL Server technologies to implement a defense-in-depth strategy for your database enterprise. This new edition covers threat analysis, common attacks and countermeasures, and provides an introduction to compliance that is useful for meeting regulatory requirements such as the GDPR. The multi-layered approach in this book helps ensure that a single breach does not lead to loss or compromise of confidential, or business sensitive data. Database professionals in today’s world deal increasingly with repeated data attacks against high-profile organizations and sensitive data. It is more important than ever to keep your company’s data secure. Securing SQL Server demonstrates how developers, administrators and architects can all play their part in the protection of their company’s SQL Server enterprise. This book not only provides a comprehensive guide to implementing the security model in SQL Server, including coverage of technologies such as Always Encrypted, Dynamic Data Masking, and Row Level Security, but also looks at common forms of attack against databases, such as SQL Injection and backup theft, with clear, concise examples of how to implement countermeasures against these specific scenarios. Most importantly, this book gives practical advice and engaging examples of how to defend your data, and ultimately your job, against attack and compromise. What You'll Learn: Perform threat analysis Implement access level control and data encryption Avoid non-reputability by implementing comprehensive auditing Use security metadata to ensure your security policies are enforced Mitigate the risk of credentials being stolen Put countermeasures in place against common forms of attack |
|
|||
Go, commonly referred to as golang, is a programming language initially developed at Google in 2007. This book helps you to get started with Go programming. It describes all the elements of the language and illustrates their use with code examples. The following is highlight topics in this book: * Development Environment * Go Programming Language * Arrays, Slices and Maps * Functions * Pointers * Structs and Methods * String Operations * File Operations * Error Handling and Logging * Building Own Go Package * Concurrency * Encoding * Hashing and Cryptography * Database Programming * Socket Programming |
|
|||
After providing information to so many Mac users, I thought it would be helpful to just make it into a book with easy-to-understand descriptions. |
|
|||
Influence action through data! This is not a book. It is a one-of-a-kind immersive learning experience through which you can become—or teach others to be—a powerful data storyteller. Let’s practice! helps you build confidence and credibility to create graphs and visualizations that make sense and weave them into action-inspiring stories. Expanding upon best seller storytelling with data ’s foundational lessons, Let’s practice! delivers fresh content, a plethora of new examples, and over 100 hands-on exercises. Author and data storytelling maven Cole Nussbaumer Knaflic guides you along the path to hone core skills and become a well-practiced data communicator. Each chapter includes: ● Practice with Cole: exercises based on real-world examples first posed for you to consider and solve, followed by detailed step-by-step illustration and explanation ● Practice on your own: thought-provoking questions and even more exercises to be assigned or worked through individually, without prescribed solutions ● Practice at work: practical guidance and hands-on exercises for applying storytelling with data lessons on the job, including instruction on when and how to solicit useful feedback and refine for greater impact The lessons and exercises found within this comprehensive guide will empower you to master—or develop in others—data storytelling skills and transition your work from acceptable to exceptional. By investing in these skills for ourselves and our teams, we can all tell inspiring and influential data stories! |
|
|||
ARDUINO FOR BEGINNERS   The Arduino is a small computer, originally created in Italy. It is small, functional, and most importantly affordable. It can be used for a wide range of projects, and is great fun for anyone to learn and use. This guide covers the basics of the Arduino, including the different models, what's included, how to use the Arduino, and some different projects to try. As your skills develop, the amount of Arduino projects you can complete is virtually limitless. This book will serve as an introduction to the Arduino system, and will have you proficient and confident in using it in no time!   Here Is A Preview Of What You'll Learn About... The Basics of Arduino Different Arduino Models & Their Features How To Install Software Arduino Projects To Try Handy Tips & Tricks Much, much more! |
|
|||
Teensy is a complete USB-based microcontroller system, in a very small footprint, breadboard-friendly development board designed by Paul Stoffregen and PJRC. This book helps you to get started with Teensy development. The following is highlight topics: * Preparing development environment * Setting up Teensy * GPIO Programming * UART * PWM and analog input * Working with I2C * Working with SPI * mbed development for Teensy |
|
|||
• Covers 2D drawing and 3D modeling  • Uses step-by-step tutorials and written for novice users  • Organization that parallels an introductory engineering course  • Mechanical, electrical, civil, and architectural based end of chapter problems  • Prepares you for the AutoCAD Certification Exam  Tutorial Guide to AutoCAD 2020 provides a step-by-step introduction to AutoCAD with commands presented in the context of each tutorial. In fifteen clear and comprehensive chapters, author Shawna Lockhart guides you through all the important commands and techniques in AutoCAD 2020, from 2D drawing to solid modeling and finally finishing with rendering. In each lesson, the author provides step-by-step instructions with frequent illustrations showing exactly what appears on the AutoCAD screen. Later, individual steps are no longer provided, and you are asked to apply what you've learned by completing sequences on your own. A carefully developed pedagogy reinforces this cumulative-learning approach and supports you in becoming a skilled AutoCAD user. Tutorial Guide to AutoCAD 2020 begins with three Getting Started chapters that include information to get readers of all levels prepared for the tutorials. The author includes tips that offer suggestions and warnings as you progress through the tutorials. Key Terms and Key Commands are listed at the end of each chapter to recap important topics and commands learned in each tutorial. Also, a glossary of terms and Commands Summary list the key commands used in the tutorials. Each chapter concludes with end of chapter problems providing challenges to a range of abilities in mechanical, electrical, and civil engineering as well as architectural problems. Table of Contents       Getting Started: Preparing for the Tutorials        Getting Started: AutoCAD Basics        Getting Started: Studying for the AutoCAD Certification Exam  1.   Introduction to AutoCAD  2.   Basic Construction Techniques  3.   Basic Editing and Plotting Techniques  4.   Geometric Constructions  5.   Template Drawings and More Plotting  6.   2D Orthographic Drawings  7.   Dimensioning  8.   Advanced Dimensioning  9.   Section and Auxiliary Views  10. Blocks, DesignCenter, and Tool Palettes  11. Introduction to Solid and Surface Modeling  12. Changing and Plotting Solid Models  13. Creating Assembly Drawings from Solid Models  14. Solid Modeling for Section and Auxiliary Views  15. Rendering        Glossary        Appendix A: AutoCAD Command Summary        Index |
|
|||
• Designed for users new to CAD  • Uses step-by-step tutorials to teach you 2D drawing using AutoCAD  • Covers the performance tasks found on the AutoCAD 2021 Certified User Examination  The primary goal of AutoCAD 2021 Tutorial First Level 2D Fundamentals is to introduce the aspects of Computer Aided Design and Drafting (CADD). This text is intended to be used as a training guide for students and professionals. This text covers AutoCAD 2021 and the lessons proceed in a pedagogical fashion to guide you from constructing basic shapes to making multiview drawings. This textbook contains a series of eleven tutorial style lessons designed to introduce beginning CAD users to AutoCAD 2021. It takes a hands-on, exercise-intensive approach to all the important 2D CAD techniques and concepts. This text is also helpful to AutoCAD users upgrading from a previous release of the software. The new improvements and key enhancements of the software are incorporated into the lessons. The 2D-CAD techniques and concepts discussed in this text are also designed to serve as the foundation to the more advanced parametric feature-based CAD packages such as Autodesk Inventor. The basic premise of this book is that the more designs you create using AutoCAD 2021, the better you learn the software. With this in mind, each lesson introduces a new set of commands and concepts, building on previous lessons. This book is intended to help readers establish a good basis for exploring and growing in the exciting field of Computer Aided Engineering. AutoCAD 2021 Certified User Examination The content of AutoCAD 2021 Tutorial First Level 2D Fundamentals covers the performance tasks that have been identified by Autodesk as being included on the AutoCAD 2021 Certified User Examination. Special reference guides show you where the performance tasks are covered in the book. Table of Contents       AutoCAD Certified User Examination Reference Guide        Introduction: Getting Started  1.   AutoCAD Fundamentals  2.   Basic Object Construction Tools  3.   Geometric Construction and Editing Tools  4.   Object Properties and Organization  5.   Orthographic Views in Multiview Drawings  6.   AutoCAD 2D Isometric Drawings  7.   Basic Dimensioning and Notes  8.   Templates and Plotting  9.   Parametric Drawing Tools  10. Auxiliary Views and Editing with GRIPS  11. Section Views  12. Assembly Drawings and Blocks        Index  |
|
|||
Learn how to develop applications with SwiftUI today! SwiftUI for Masterminds takes the reader step by step through the technologies required to develop applications for iPhones, iPads and Mac computers. After reading this book, you will know how to program in Swift, how to design user interfaces, and how to combine traditional frameworks with the advanced features provided by SwiftUI to build modern applications.   This book is a complete course on app development for Apple devices. Every chapter explores basic and advanced topics, from computer programming to graphics and databases. The information is supported by examples that guide beginners and experts through the development process and gradually introduce them to complex topics.   The goal of SwiftUI for Masterminds is to familiarize you with the latest technologies introduced by Apple for app development. It was designed to prepare you for the future and was written for the genius inside you, for Masterminds.   Introduction to Swift 5.1 Swift Paradigm Declarative User Interfaces SwiftUI Framework Combine Framework Layout and Navigation Mac Catalyst UIKit in SwiftUI Collection Views Text Views MapKit Graphics and Animations Files Archiving Core Data iCloud CloudKit AVFoundation Camera and Photos Library WebKit Views Gesture Recognizers Timers Notifications Operation Queues Error Handling ...and more! iOS app development with iOS 13, Xcode 11 and Swift 5.1 App development, Swift programming, Create apps, Create app, iPhone apps, Build app, Swift language, develop application, Objective-C, Apple development, iOS development, iOS Apps, Program apps. |
|
|||
• Designed for new users of AutoCAD 2019  • Project based tutorials design a house from start to finish using AutoCAD 2019  • Includes extensive embedded video instruction  • Bonus material covers must know commands, sketching exercises, a roof study workbook and more  Residential Design Using AutoCAD 2019 is an introductory level tutorial which uses residential design exercises as the means to teach you AutoCAD 2019. Each book comes with embedded video instruction in which the author explains the most common tools and techniques used when designing residential buildings using AutoCAD 2019. After completing this book you will have a well-rounded knowledge of Computer Aided Drafting that can be used in the industry and the satisfaction of having completed a set of residential drawings. This textbook starts with a basic introduction to AutoCAD 2019. The first three chapters are intended to get you familiar with the user interface and the most common menus and tools. Throughout the rest of the book you will design a residence through to its completion. Using step-by-step tutorial lessons, the residential project is followed through to create elevations, sections, details, etc. Throughout the project, new AutoCAD commands are covered at the appropriate time. Focus is placed on the most essential parts of a command rather than an exhaustive review of every sub-feature of a particular command. The Appendix contains a bonus section covering the fundamental principles of engineering graphics that relate to architecture. This book also comes with extensive video instruction as well as bonus chapters that cover must know commands, sketching exercises, a roof study workbook and much more. About the Videos Each book includes embedded video training created by author Daniel Stine. The videos make it easy to see the exact menu selections made by the author while he describes how and why each step is made making it straightforward and simple to learn AutoCAD. These videos allow you to become familiar with the menu selections and techniques before you begin the tutorial. By watching these videos you will be more confident in what you are doing and have a better understanding of the desired outcome of each lesson. The videos cover the following: • User Interface  • Getting Started  • Draw Tools  • Modify Tools  • Annotation  • Floor Plans  • Exterior Elevations  • Sections  • Interior Design  • Plotting  Table of Contents 1.   Getting started with AutoCAD 2019  2.   Crash Course Introduction (The Basics)  3.   Drawing Architectural Objects (Draw & Modify)  4.   Floor Plans  5.   Exterior Elevations  6.   Sections  7.   Plan Layout & Elevations  8.   Site Plan  9.   Schedules & Sheet Set Up  10. Lineweights & Plotting        Index  11. Introduction to Computers  12. Introduction: Must Know Commands        Appendix A: Engineering Graphics        Appendix B: Roof Study Workbook - Draft Edition        Appendix C: Sketching Exercises |
|
|||
iOS 14, iPadOS 14, tvOS 14, and watchOS 7 for Users and Developers somewhat mirrors macOS Big Sur in that there are some design tweaks like the new Widgets and your ability to place them on the home screen for device running iOS, the new App Library system, which can help you organize your home screen. Along with the home screen changes, search and Siri have seen some improvements as well, and those are covered. Safari can now help keep you informed about who is tracking you across the web. Communications is a big part of today’s society, so the updates to Messages is covered, and there is a whole new help to help you translate text, called the Translate app. Users will be able to learn about the new updates to Notes, Reminders, and Maps. If you prefer to handwrite items there is a new feature just for you called called Scribble, which will take your handwriting and covert it into text. Health is a huge topic and there have been some big changes like the renamed Fitness app on the iPhone and a way of tracking Sleep on the Apple Watch. These are both covered along with updates to Face ID and masks, as well as new ways to protect your hearing. The Music and Home apps have been slightly changed and updated and the Shortcuts app gets some new tricks to help automate things even better than before. Developers will learn all about Apple Silicon, because their iOS and iPadOS apps can run natively on Macs running Apple Silicon. Along with Apple Silicon, developers can learn about changes to Xcode, the new Swift, SwiftUI, and Swift Packages, as well as how to implement WidgetKit, some things to keep in mind about AppClips, how to implement the new Color Picker and how to support PencilKit and Scribble with their custom interfaces. |
|
|||
iPads have become an essential tool for students, business users, and home users. Updated to cover the iPadOS 14 update, Exploring Apple iPad will help you get to grips with the fundamentals of your device. Written in a clear and accessible way using screenshots, video demos, and easy to follow instructions, Exploring Apple iPad will help you: Upgrade your iPad to iPadOS 14Discover new features of iPadOS 14Find your way around the dock, menus, and iconsNavigate with touch gestures: tap, drag, pinch, spread and swipeMulti-task with slide over, split view, and drag & dropUse control centre, lock screen, notifications, and handoffUse Apple Pencil to draw, annotate, and take notesGet to know Siri, voice dictation, and recording voice memosCommunicate with email, FaceTime, and iMessageUse digital touch, and peer-to-peer paymentsBrowse the web with Safari web browserTake, enhance, and share photos and videoStream music with Apple Music, buy tracks & albums from iTunes StoreStream TV programs & movies with the new Apple TV AppUse Files App, as well as Maps, News, Apple Books, and NotesSetup and use Apple Pay, Calendar, and Contacts, and more... In addition, you will learn how to make the most of the new features of iPadOS 14 with clear explanations and video demos to help you along the way. Finally, system updates, backups, and general housekeeping tips complete this invaluable guide. You'll want to keep this edition handy as you explore your iPad. |
|
|||
This bestselling on-the-job reference and test preparation guide has been fully revised for the new 2019 CompTIA A+ exam objectives This fully revised and updated resource offers complete coverage of the latest release of CompTIA A+ exams 220-1001 & 220-1002. You'll find learning objectives at the beginning of each chapter, exam tips, practice exam questions, and in-depth explanations. Designed to help you pass the CompTIA A+ exams with ease, this definitive guide also serves as an essential on-the-job IT reference. Covers all exam topics, including how to: •Work with CPUs, RAM, BIOS, motherboards, power supplies, and other personal computer components•Install, configure, and maintain hard drives•Manage input devices and removable media•Set up, upgrade, and maintain all versions of Windows•Troubleshoot and fix computer problems•Install printers and other peripherals•Configure and secure mobile devices•Connect to the Internet•Set up wired and wireless networks•Protect your personal computer and your network•Implement virtualization and cloud-based technologies Online content includes: •Practice exams for 1001 & 1002•More than one hour of free video training•TotalSim simulations of performance-based questions•Mike Meyers’ favorite PC tools and utilities |
|
|||
"What does AI mean for your business? Read this book to find out." -- Hal Varian, Chief Economist, Google Artificial intelligence does the seemingly impossible, magically bringing machines to life--driving cars, trading stocks, and teaching children. But facing the sea change that AI will bring can be paralyzing. How should companies set strategies, governments design policies, and people plan their lives for a world so different from what we know? In the face of such uncertainty, many analysts either cower in fear or predict an impossibly sunny future. But in Prediction Machines , three eminent economists recast the rise of AI as a drop in the cost of prediction. With this single, masterful stroke, they lift the curtain on the AI-is-magic hype and show how basic tools from economics provide clarity about the AI revolution and a basis for action by CEOs, managers, policy makers, investors, and entrepreneurs. When AI is framed as cheap prediction, its extraordinary potential becomes clear: Prediction is at the heart of making decisions under uncertainty. Our businesses and personal lives are riddled with such decisions.Prediction tools increase productivity--operating machines, handling documents, communicating with customers.Uncertainty constrains strategy. Better prediction creates opportunities for new business structures and strategies to compete. Penetrating, fun, and always insightful and practical, Prediction Machines follows its inescapable logic to explain how to navigate the changes on the horizon. The impact of AI will be profound, but the economic framework for understanding it is surprisingly simple. |
|
|||
macOS Catalina FileVault administration guide for macOS administrators or System Engineers. Non MDM-vendor specific and up to date with macOS 10.15.4 (19E266). |
|
|||
Statistical methods are a key part of data science, yet few data scientists have formal statistical training. Courses and books on basic statistics rarely cover the topic from a data science perspective. The second edition of this popular guide adds comprehensive examples in Python, provides practical guidance on applying statistical methods to data science, tells you how to avoid their misuse, and gives you advice on what’s important and what’s not. Many data science resources incorporate statistical methods but lack a deeper statistical perspective. If you’re familiar with the R or Python programming languages and have some exposure to statistics, this quick reference bridges the gap in an accessible, readable format. With this book, you’ll learn: Why exploratory data analysis is a key preliminary step in data scienceHow random sampling can reduce bias and yield a higher-quality dataset, even with big dataHow the principles of experimental design yield definitive answers to questionsHow to use regression to estimate outcomes and detect anomaliesKey classification techniques for predicting which categories a record belongs toStatistical machine learning methods that "learn" from dataUnsupervised learning methods for extracting meaning from unlabeled data |
|
|||
Salary surveys worldwide regularly place software architect in the top 10 best jobs, yet no real guide exists to help developers become architects. Until now. This book provides the first comprehensive overview of software architecture’s many aspects. Aspiring and existing architects alike will examine architectural characteristics, architectural patterns, component determination, diagramming and presenting architecture, evolutionary architecture, and many other topics. Mark Richards and Neal Ford—hands-on practitioners who have taught software architecture classes professionally for years—focus on architecture principles that apply across all technology stacks. You’ll explore software architecture in a modern light, taking into account all the innovations of the past decade. This book examines: Architecture patterns: The technical basis for many architectural decisions Components: Identification, coupling, cohesion, partitioning, and granularity Soft skills: Effective team management, meetings, negotiation, presentations, and more Modernity: Engineering practices and operational approaches that have changed radically in the past few years Architecture as an engineering discipline: Repeatable results, metrics, and concrete valuations that add rigor to software architecture |
|
|||
Find out the essentials of cryptocurrency mining   The cryptocurrency phenomenon has sparked a new opportunity mine for virtual gold, kind of like the prospectors of a couple centuries back. This time around, you need some tech know-how to get into the cryptocurrency mining game.  This book shares the insight of two cryptocurrency insiders as they break down the necessary hardware, software, and strategies to mine Bitcoin, Ethereum, Monero, LiteCoin, and Dash. They also provide insight on how to stay ahead of the curve to maximize your return on investment. Get the tech tools and know-how to start mining Pick the best cryptocurrency to return your investment Apply a sound strategy to stay ahead of the game Find cryptocurrency value at the source  From the basics of cryptocurrency and blockchain to selecting the best currency to mine, this easy-to-access book makes it easy to get started today! |
|
|||
Get ahead of the curve—learn about big data on the blockchain Blockchain came to prominence as the disruptive technology that made cryptocurrencies work. Now, data pros are using blockchain technology for faster real-time analysis, better data security, and more accurate predictions. Blockchain Data Analytics For Dummies is your quick-start guide to harnessing the potential of blockchain. Inside this book, technologists, executives, and data managers will find information and inspiration to adopt blockchain as a big data tool. Blockchain expert Michael G. Solomon shares his insight on what the blockchain is and how this new tech is poised to disrupt data. Set your organization on the cutting edge of analytics, before your competitors get there! Learn how blockchain technologies work and how they can integrate with big data Discover the power and potential of blockchain analytics Establish data models and quickly mine for insights and results Create data visualizations from blockchain analysis Discover how blockchains are disrupting the data world with this exciting title in the trusted For Dummies line! |