Browse Results

Showing 24,126 through 24,150 of 59,387 results

Go Live!: Turn Virtual Connections into Paying Customers

by Jeffrey Gitomer

Learn how to go online with a winning sales and marketing strategy in this insightful resource Go Live! Turn Virtual Connections into Paying Customers helps readers understand and take advantage of several online tools to boost their sales and increase their revenue. Accomplished salesperson, consultant, and online personality Jeffrey Gitomer describes how tools like Facebook Live and podcasting can drive sales and help you connect with your customers. You'll discover: How to use tools like YouTube, LinkedIn Live, podcasting, and Facebook Live to connect with and develop your leads How to properly utilize social media like Instagram and Twitter to spread your message and sell to clients How to promote and repurpose content to create as big an impact on your audience as possible Written specifically for a post-pandemic sales audience, Go Live! Turn Virtual Connections into Paying Customers delivers results for anyone expected to deliver sales results in a virtual environment. It also belongs on the bookshelves of those who hope to take their successful offline sales strategies to the online world.

Go Machine Learning Projects: Eight Projects Demonstrating End-to-end Machine Learning And Predictive Analytics Applications In Go

by Xyanyi Chew

This book would appeal to machine learning engineers, data analysts or developers who have basic knowledge of Golang and essential understanding of machine learning. This book is perfect for readers who want to get machine learning into their real-world projects and make the application much smarter with comfort.

Go programmieren für Dummies (Für Dummies)

by Wei-Meng Lee

Go ist eine der neueren Programmiersprachen, die Softwareentwickler in ihrer Werkzeugkiste haben sollten. Die Sprache wurde mit dem Ziel entwickelt, besonders gut lesbar, benutzerfreundlich und effizient zu sein, und ist eine gute Wahl für Entwickler, die Anwendungen für die Cloud erstellen. Dieses Buch zeigt Ihnen die ersten Schritte in Go. Steigen Sie ein und beginnen Sie mit dem Schreiben von Code, der Daten aus der Cloud holt und sie in die Hände der Benutzer legt.

Go Programming Blueprints

by Mat Ryer

Intended for seasoned Go programmers who want to put their expertise in Go to use to solve big, real-world, modern problems. With a basic understanding of channels and goroutines, you will hone your skills to build tools and programs that are quick and simple. You need not be an expert in distributed systems or technologies in order to deliver solutions capable of great scale. It is assumed that you are familiar with the basic concepts of Go.

Go Programming Blueprints

by Mat Ryer

<P><P>Key Features <P><P>Learn to apply the nuances of the Go language, and get to know the open source community that surrounds it to implement a wide range of start-up quality projects <P><P>Write interesting, and clever but simple code, and learn skills and techniques that are directly transferrable to your own projects <P><P>Discover how to write code capable of delivering massive world-class scale performance and availability <P><P>Book Description <P><P>Dive headfirst into solving actual enterprise problems and start cutting code from the word go. You will build complete applications around a variety of subjects using a range of different technologies and techniques, all of which are directly applicable to today's tech start-up world. <P><P>Scale, performance, and high availability lie at the heart of the projects, and the lessons learned throughout this book will arm you with everything you need to build world-class solutions. Well-designed applications and sensible architectures can scale horizontally to cope with the demands of up to millions of users, while avoiding the prohibitive up-front investment that can bring a project to its knees. <P><P>What you will Learn <P><P>Build quirky and fun projects from scratch while exploring widely applicable skills, patterns, practices, and techniques, as well as a range of different technologies <P><P>Create websites and data services capable of massive scale using <P><P>Go's net/http package, exploring RESTful patterns as well as low-latency WebSocket APIs <P><P>Interact with a variety of remote web services to consume capabilities ranging from authentication and authorization to a fully functioning thesaurus <P><P>Develop high-quality command-line tools that utilize the powerful shell capabilities and have great performance using Go's in-built concurrency mechanisms <P><P>Implement a modern document database as well as high-throughput messaging queue technology to put together an architecture that is truly ready for scale <P><P>Write concurrent programs and gracefully manage their execution and communication with smart use of channels

Go Programming Blueprints - Second Edition

by Mat Ryer

Build real-world, production-ready solutions in Go using cutting-edge technology and techniques About This Book * Get up to date with Go and write code capable of delivering massive world-class scale performance and availability * Learn to apply the nuances of the Go language, and get to know the open source community that surrounds it to implement a wide range of start-up quality projects * Write interesting and clever but simple code, and learn skills and techniques that are directly transferrable to your own projects Who This Book Is For If you are familiar with Go and are want to put your knowledge to work, then this is the book for you. Go programming knowledge is a must. What You Will Learn * Build quirky and fun projects from scratch while exploring patterns, practices, and techniques, as well as a range of different technologies * Create websites and data services capable of massive scale using Go's net/http package, exploring RESTful patterns as well as low-latency WebSocket APIs * Interact with a variety of remote web services to consume capabilities ranging from authentication and authorization to a fully functioning thesaurus * Develop high-quality command-line tools that utilize the powerful shell capabilities and perform well using Go's in-built concurrency mechanisms * Build microservices for larger organizations using the Go Kit library * Implement a modern document database as well as high-throughput messaging queue technology to put together an architecture that is truly ready to scale * Write concurrent programs and gracefully manage the execution of them and communication by smartly using channels * Get a feel for app deployment using Docker and Google App Engine In Detail Go is the language of the Internet age, and the latest version of Go comes with major architectural changes. Implementation of the language, runtime, and libraries has changed significantly. The compiler and runtime are now written entirely in Go. The garbage collector is now concurrent and provides dramatically lower pause times by running in parallel with other Go routines when possible. This book will show you how to leverage all the latest features and much more. This book shows you how to build powerful systems and drops you into real-world situations. You will learn to develop high-quality command-line tools that utilize the powerful shell capabilities and perform well using Go's in-built concurrency mechanisms. Scale, performance, and high availability lie at the heart of our projects, and the lessons learned throughout this book will arm you with everything you need to build world-class solutions. You will get a feel for app deployment using Docker and Google App Engine. Each project could form the basis of a start-up, which means they are directly applicable to modern software markets. Style and approach This book provides fun projects that involve building applications from scratch. These projects will teach you to build chat applications, a distributed system, and a recommendation system.

Go Programming Cookbook: Over 85 recipes to build modular, readable, and testable Golang applications across various domains, 2nd Edition

by Aaron Torres

Tackle the trickiest of problems in Go programming with this practical guide Key Features Develop applications for different domains using modern programming techniques Tackle common problems when it comes to parallelism, concurrency, and reactive programming in Go Work with ready-to-execute code based on the latest version of Go Book Description Go (or Golang) is a statically typed programming language developed at Google. Known for its vast standard library, it also provides features such as garbage collection, type safety, dynamic-typing capabilities, and additional built-in types. This book will serve as a reference while implementing Go features to build your own applications. This Go cookbook helps you put into practice the advanced concepts and libraries that Golang offers. The recipes in the book follow best practices such as documentation, testing, and vendoring with Go modules, as well as performing clean abstractions using interfaces. You'll learn how code works and the common pitfalls to watch out for. The book covers basic type and error handling, and then moves on to explore applications, such as websites, command-line tools, and filesystems, that interact with users. You'll even get to grips with parallelism, distributed systems, and performance tuning. By the end of the book, you'll be able to use open source code and concepts in Go programming to build enterprise-class applications without any hassle. What you will learn Work with third-party Go projects and modify them for your use Write Go code using modern best practices Manage your dependencies with the new Go module system Solve common problems encountered when dealing with backend systems or DevOps Explore the Go standard library and its uses Test, profile, and fine-tune Go applications Who this book is for If you're a web developer, programmer, or enterprise developer looking for quick solutions to common and not-so-common problems in Go programming, this book is for you. Basic knowledge of the Go language is assumed.

The Go Programming Language

by Alan A. A. Donovan Brian W. Kernighan

The Go Programming Language is the authoritative resource for any programmer who wants to learn Go. It shows how to write clear and idiomatic Go to solve real-world problems. The book does not assume prior knowledge of Go nor experience with any specific language, so you’ll find it accessible whether you’re most comfortable with JavaScript, Ruby, Python, Java, or C++. <p><p> The book features hundreds of interesting and practical examples of well-written Go code that cover the whole language, its most important packages, and a wide range of applications. Each chapter has exercises to test your understanding and explore extensions and alternatives. Source code is freely available for download from http://gopl.io/ and may be conveniently fetched, built, and installed using the go get command.

Go Programming Language For Dummies

by Wei-Meng Lee

Ready, set, program with Go! Now is the perfect time to learn the Go Programming Language. It’s one of the most in-demand languages among tech recruiters and developers love its simplicity and power. Go Programming Language For Dummies is an easy way to add this top job skill to your toolkit. Written for novice and experienced coders alike, this book traverses basic syntax, writing functions, organizing data, building packages, and interfacing with APIs. Go—or GoLang, as it’s also known—has proven to be a strong choice for developers creating applications for the cloud-based world we live in. This book will put you on the path to using the language that’s created some of today’s leading web applications, so you can steer your career where you want to Go! Learn how Go works and start writing programs and modules Install and implement the most powerful third-party Go packages Use Go in conjunction with web services and MySQL databases Keep your codebase organized and use Go to structure data With this book, you can join the growing numbers of developers using Go to create 21st century solutions. Step inside to take start writing code that puts data in users’ hands.

Go Recipes

by Shiju Varghese

Solve your Go problems using a problem-solution approach. Each recipe is a self-contained answer to a practical programming problem in Go. Go Recipes contains recipes that deal with the fundamentals of Go, allowing you to build simple, reliable, and efficient software. Other topics include working with data using modern NoSQL databases such as MongoDB and RethinkDB. The book provides in-depth guidance for building highly scalable backend APIs in Go for your mobile client applications and web client applications. All this means that you’ll be able to write programs that get the most out of multicore and networked machines, using Go’s novel type system that enables flexible and modular program construction. You'll see how to test your Go applications so they are ready for deployment, as well as learning how to write HTTP servers to offer you maximum flexibility when dealing with remote clients.What You'll LearnWork with the core fundamentals of GoPersist data into NoSQL databasesBuild scalable backend APIsTest your Go applicationsCreate HTTP web servers in GoWho This Book Is ForExperienced programmers who have some or no prior experience with Go.

Go Standard Library Cookbook: Over 120 specific ways to make full use of the standard library components in Golang

by Radomír Sohlich

Implement solutions by leveraging the power of the GO standard library and reducing dependency on external crates Key Features Develop high quality, fast and portable applications by leveraging the power of Go Standard Library. Practical recipes that will help you work with the standard library algorithms to boost your productivity as a Go developer. Compose your own algorithms without forfeiting the simplicity and elegance of the Standard Library. Book Description Google's Golang will be the next talk of the town, with amazing features and a powerful library. This book will gear you up for using golang by taking you through recipes that will teach you how to leverage the standard library to implement a particular solution. This will enable Go developers to take advantage of using a rock-solid standard library instead of third-party frameworks. The book begins by exploring the functionalities available for interaction between the environment and the operating system. We will explore common string operations, date/time manipulations, and numerical problems. We'll then move on to working with the database, accessing the filesystem, and performing I/O operations. From a networking perspective, we will touch on client and server-side solutions. The basics of concurrency are also covered, before we wrap up with a few tips and tricks. By the end of the book, you will have a good overview of the features of the Golang standard library and what you can achieve with them. Ultimately, you will be proficient in implementing solutions with powerful standard libraries. What you will learn Access environmental variables Execute and work with child processes Manipulate strings by performing operations such as search, concatenate, and so on Parse and format the output of date/time information Operate on complex numbers and effective conversions between different number formats and bases Work with standard input and output Handle filesystem operations and file permissions Create TCP and HTTP servers, and access those servers with a client Utilize synchronization primitives Test your codeWho this book is for This book is for Go developers who would like to explore the power of Golang and learn how to use the Go standard library for various functionalities. The book assumes basic Go programming knowledge.

Go Systems Programming

by Mihalis Tsoukalos

Intermediate Linux and general UNIX programmers. Network programmers from beginners to advanced practitioners. C and C++ programmers interested in different approaches to concurrency and Linux systems programming.

Go Tweet Yourself: 365 Reasons Why Twitter, Facebook, MySpace, and Other Social Networking Sites Suck

by Janelle Randazza

Flip Twitter the bird.Tell Facebook to f#@% off.Lose it on LinkedIn.Somewhere between the advent of Facebook and launching Twitter to the masses, the Internet betrayed us. It allowed pages to be viewed by job interviewers, newsfeeds to be flooded by Aunt Julie, and for constant tweets about what color socks that random girl from the study group is going to wear today.This book is the hilarious reply all that says: enough is enough. We don’t want to see the pictures from your business trip to Omaha. We don’t want a page-by-page account of what’s going on in Twilight. We definitely don’t want a virtual drink!When you can’t fix the problem, fix the blame. And since there’s no way in 2.0-hell that you can put an end to the bastardization of the Book, you may as well have a good laugh while pointing the finger at those who ruined their online experience.

Go Web Development Cookbook: Build full-stack web applications with Go

by Arpit Aggarwal

86 recipes on how to build fast, scalable, and powerful web services and applications with GoKey FeaturesBecome proficient in RESTful web servicesBuild scalable, high-performant web applications in GoGet acquainted with Go frameworks for web developmentBook DescriptionGo is an open source programming language that is designed to scale and support concurrency at the language level. This gives you the liberty to write large concurrent web applications with ease. From creating web application to deploying them on Amazon Cloud Services, this book will be your one-stop guide to learn web development in Go. The Go Web Development Cookbook teaches you how to create REST services, write microservices, and deploy Go Docker containers. Whether you are new to programming or a professional developer, this book will help get you up to speed with web development in Go. We will focus on writing modular code in Go; in-depth informative examples build the base, one step at a time. You will learn how to create a server, work with static files, SQL, NoSQL databases, and Beego. You will also learn how to create and secure REST services, and create and deploy Go web application and Go Docker containers on Amazon Cloud Services. By the end of the book, you will be able to apply the skills you've gained in Go to create and explore web applications in any domain.What you will learn Create a simple HTTP and TCP web server and understand how it works Explore record in a MySQL and MongoDB database Write and consume RESTful web service in Go Invent microservices in Go using Micro – a microservice toolkit Create and Deploy the Beego application with Nginx Deploy Go web application and Docker containers on an AWS EC2 instanceWho this book is forThis book is for Go developers interested in learning how to use Go to build powerful web applications. A background in web development is expected.

Go Web Programming

by Sau Sheong Chang

SummaryGo Web Programming teaches you how to build scalable, high-performance web applications in Go using modern design principles.Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.About the TechnologyThe Go language handles the demands of scalable, high-performance web applications by providing clean and fast compiled code, garbage collection, a simple concurrency model, and a fantastic standard library. It's perfect for writing microservices or building scalable, maintainable systems.About the BookGo Web Programming teaches you how to build web applications in Go using modern design principles. You'll learn how to implement the dependency injection design pattern for writing test doubles, use concurrency in web applications, and create and consume JSON and XML in web services. Along the way, you'll discover how to minimize your dependence on external frameworks, and you'll pick up valuable productivity techniques for testing and deploying your applications.What's InsideBasicsTesting and benchmarkingUsing concurrencyDeploying to standalone servers, PaaS, and DockerDozens of tips, tricks, and techniquesAbout the ReaderThis book assumes you're familiar with Go language basics and the general concepts of web development.About the AuthorSau Sheong Chang is Managing Director of Digital Technology at Singapore Power and an active contributor to the Ruby and Go communities.Table of ContentsPART 1 GO AND WEB APPLICATIONSGo and web applications Go ChitChat PART 2 BASIC WEB APPLICATIONSHandling requests Processing requests Displaying content Storing data PART 3 BEING REALGo web services Testing your application Leveraging Go concurrency Deploying Go

Go Web Scraping Quick Start Guide: Implement the power of Go to scrape and crawl data from the web

by Vincent Smith

Learn how some Go-specific language features help to simplify building web scrapers along with common pitfalls and best practices regarding web scraping. Key Features Use Go libraries like Goquery and Colly to scrape the web Common pitfalls and best practices to effectively scrape and crawl Learn how to scrape using the Go concurrency model Book Description Web scraping is the process of extracting information from the web using various tools that perform scraping and crawling. Go is emerging as the language of choice for scraping using a variety of libraries. This book will quickly explain to you, how to scrape data data from various websites using Go libraries such as Colly and Goquery. The book starts with an introduction to the use cases of building a web scraper and the main features of the Go programming language, along with setting up a Go environment. It then moves on to HTTP requests and responses and talks about how Go handles them. You will also learn about a number of basic web scraping etiquettes. You will be taught how to navigate through a website, using a breadth-first and then a depth-first search, as well as find and follow links. You will get to know about the ways to track history in order to avoid loops and to protect your web scraper using proxies. Finally the book will cover the Go concurrency model, and how to run scrapers in parallel, along with large-scale distributed web scraping. What you will learn Implement Cache-Control to avoid unnecessary network calls Coordinate concurrent scrapers Design a custom, larger-scale scraping system Scrape basic HTML pages with Colly and JavaScript pages with chromedp Discover how to search using the "strings" and "regexp" packages Set up a Go development environment Retrieve information from an HTML document Protect your web scraper from being blocked by using proxies Control web browsers to scrape JavaScript sites Who this book is for Data scientists, and web developers with a basic knowledge of Golang wanting to collect web data and analyze them for effective reporting and visualization.

GO with Microsoft: Office 2016 All in One (3rd Edition)

by Shelley Gaskin Debra Geoghan Nancy Graviett Alicia Vargas

GO! with Office 2016 is the right approach to learning for today's fast-moving, mobile environment. The GO! Series focuses on the job and success skills students need to succeed in the workforce. With GO! All in One, you can teach Computer Concepts and Applications together - the way it is in the real world!

GO! with Microsoft Excel 2010, Comprehensive (GO!)

by Shelley Gaskin Alicia Vargas Suzanne Marks

For introductory computer courses on Microsoft Excel 2010 or courses in computer concepts with a lab component on Excel. Teach the course YOU want in LESS TIME! The primary goal of the GO! Series, aside from teaching computer applications, is ease of implementation. This approach is based on clearly defined projects for students and a one-of-a-kind supplements package for instructors.

GO! With Microsoft Office 2013 Volume 1

by Shelley Gaskin Alicia Vargas Carolyn Mclellan

The primary goal of the GO! Series, aside from teaching computer applications, is ease of implementation, with an approach that is based on clearly defined projects for students and a one-of-a-kind supplements package.

Go! with Microsoft Office 2016 Volume 1

by Shelley Gaskin Debra Geoghan Nancy Graviett Alicia Vargas

Teach the course YOU want in LESS TIME! In today's fast-moving, mobile environment, the GO! with Office 2016 series focuses on the job skills needed to succeed in the workforce. For Office 2016, the hallmark guided-practice to skill-mastery pathway is better than ever. Students have many opportunities to work live in Microsoft office to apply the skills they've learned.

Go! With Microsoft Office 365, Excel 2019 Comprehensive: Learn, Practice, Succeed

by Shelley Gaskin Alicia Vargas

Seamless digital instruction, practice, and assessment; For over 17 years, instructors have relied upon the GO! series to teach Microsoft Office successfully. The series uses a project-based approach that clusters learning objectives around projects, rather than software features, so students can practice solving real business problems. <p><p> Gaskin uses easy-to-follow Microsoft Procedural Syntax so students always know where to go on the ribbon; she combines this with a Teachable Moment approach that offers learners tips and instructions at the precise moment they’re needed. Updated to Office 365, this book adds tips for Mac users, revised instructional projects, and improved coverage of the what, why, and how of skills application.

GO! with Microsoft Powerpoint 2010, Comprehensive (GO!)

by Shelley Gaskin Alicia Vargas Toni Marucco Donna Madsen

For introductory computer courses on Microsoft PowerPoint 2010 or courses in computer concepts with a lab component on PowerPoint. Teach the course YOU want in LESS TIME! The primary goal of the GO! Series, aside from teaching computer applications, is ease of implementation. This approach is based on clearly defined projects for students and a one-of-a-kind supplements package for instructors.

Go! With Microsoft Word 2010 (Brief Edition)

by Shelley Gaskin Robert L. Ferrett

For introductory computer courses on Microsoft Word 2010 or courses in computer concepts with a lab component on Word. Teach the course YOU want in LESS TIME! The primary goal of the GO! Series, aside from teaching computer applications, is ease of implementation. This approach is based on clearly defined projects for students and a one-of-a-kind supplements package for instructors.

Go! With Microsoft Word 2010, Comprehensive

by Shelley Gaskin Robert L. Ferrett Carol L. Martin

<P>In today's fast-moving, mobile environment, the GO! with Office 2016 series focuses on the job skills needed to succeed in the workforce.<P> With job-related projects that put Microsoft Office® into context, students learn the how and why at the moment they need to know, all in the appropriate Microsoft procedural syntax.<P> For Office 2016, the hallmark guided-practice to skill-mastery pathway is better than ever. <P>Students have many opportunities to work live in Microsoft office to apply the skills they've learned.<P> In addition, instructional projects are now available as grader projects in MyITLab, so students can work live in Office while receiving auto-graded feedback.<P> These high-fidelity simulations match the text and provide an effective pathway for learning, practicing, and assessing their abilities. After completing the instructional projects, students can apply their skills with a variety of progressively challenging projects that require them to solve problems, think critically, and create on their own. <P>New GO! Collaborate with Google projects allow students to apply their skills to a new environment that is already popular in many workplaces.<P> Integrated Microsoft Office Specialist (MOS) objectives make GO! your one resource for learning Office, gaining critical productivity skills, and prepare for MOS certification.

Go! With Office 2019: Volume 1

by Shelley Gaskin Debra Geoghan Alicia Vargas Nancy Graviett

The series uses a project-based approach that clusters learning objectives around projects, rather than software features, so students can practice solving real business problems. Gaskin uses easy-to-follow Microsoft Procedural Syntax so students always know where to go on the ribbon; she combines this with a Teachable Moment approach that offers learners tips and instructions at the precise moment they’re needed. Updated to Office 365, GO! with Microsoft® Office 365®, 2019 Edition, Introductory adds tips for Mac users, revised instructional projects, and improved coverage of the what, why, and how of skills application.

Refine Search

Showing 24,126 through 24,150 of 59,387 results