EBookClubs

Read Books & Download eBooks Full Online

EBookClubs

Read Books & Download eBooks Full Online

Book Phoenix in Action

    Book Details:
  • Author : Geoffrey Lessel
  • Publisher : Simon and Schuster
  • Release : 2019-04-26
  • ISBN : 1638356203
  • Pages : 508 pages

Download or read book Phoenix in Action written by Geoffrey Lessel and published by Simon and Schuster. This book was released on 2019-04-26 with total page 508 pages. Available in PDF, EPUB and Kindle. Book excerpt: Summary Phoenix is a modern web framework built for the Elixir programming language. Elegant, fault-tolerant, and performant, Phoenix is as easy to use as Rails and as rock-solid as Elixir's Erlang-based foundation. Phoenix in Action builds on your existing web dev skills, teaching you the unique benefits of Phoenix along with just enough Elixir to get the job done. Foreword by Sasa Juric, author of Elixir in Action, Second Edition. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the Technology Modern web applications need to be efficient to develop, lightning fast, and unfailingly reliable. Phoenix, a web framework for the Elixir programming language, delivers on all counts. Elegant and intuitive, Phoenix radically simplifies the dev process. Built for concurrency, Phoenix channels make short work of developing real-time applications. And as for reliability, Phoenix apps run on the battle-tested Erlang VM, so they're rock solid! About the Book Phoenix in Action is an example-based book that teaches you to build production-quality web apps. You'll handle business logic, database interactions, and app designs as you progressively create an online auction site. As you go, you'll build everything from the core components to the real-time user interactions where Phoenix really shines. What's inside Functional programming in a web environment An introduction to Elixir Database interactions with Ecto Real-time communication with channels About the Reader For web developers familiar with a framework like Rails or ASP.NET. No experience with Elixir or Phoenix required. About the Author Geoffrey Lessel is a seasoned web developer who speaks and blogs about Elixir and Phoenix. Table of Contents PART 1 - GETTING STARTED Ride the Phoenix Intro to Elixir A little Phoenix overview PART 2 - DIVING IN DEEP Phoenix is not your application Elixir application structure Bring in Phoenix Making changes with Ecto.Changeset Transforming data in your browser Plugs, assigns, and dealing with session data Associating records and accepting bids PART 3 - THOSE IMPORTANT EXTRAS Using Phoenix channels for real-time communication Building an API Testing in Elixir and Phoenix

Book Programming Phoenix

    Book Details:
  • Author : Chris McCord
  • Publisher : Pragmatic Bookshelf
  • Release : 2016-04-20
  • ISBN : 1680504363
  • Pages : 398 pages

Download or read book Programming Phoenix written by Chris McCord and published by Pragmatic Bookshelf. This book was released on 2016-04-20 with total page 398 pages. Available in PDF, EPUB and Kindle. Book excerpt: Don't accept the compromise between fast and beautiful: you can have it all. Phoenix creator Chris McCord, Elixir creator Jose Valim, and award-winning author Bruce Tate walk you through building an application that's fast and reliable. At every step, you'll learn from the Phoenix creators not just what to do, but why. Packed with insider insights, this definitive guide will be your constant companion in your journey from Phoenix novice to expert, as you build the next generation of web applications. Phoenix is the long-awaited web framework based on Elixir, the highly concurrent language that combines a beautiful syntax with rich metaprogramming. The authors, who developed the earliest production Phoenix applications, will show you how to create code that's easier to write, test, understand, and maintain. The best way to learn Phoenix is to code, and you'll get to attack some interesting problems. Start working with controllers, views, and templates within the first few pages. Build an in-memory repository, and then back it with an Ecto database layer. Learn to use change sets and constraints that keep readers informed and your database integrity intact. Craft your own interactive application based on the channels API for the real-time, high-performance applications that this ecosystem made famous. Write your own authentication components called plugs, and even learn to use the OTP layer for monitored, reliable services. Organize your code with umbrella projects so you can keep your applications modular and easy to maintain. This is a book by developers and for developers, and we know how to help you ramp up quickly. Any book can tell you what to do. When you've finished this one, you'll also know why to do it. What You Need: To work through this book, you will need a computer capable of running Erlang 17 or better, Elixir 1.1, or better, Phoenix 1.0 or better, and Ecto 1.0 or better. A rudimentary knowledge of Elixir is also highly recommended.

Book Real Time Phoenix

    Book Details:
  • Author : Stephen Bussey
  • Publisher : Pragmatic Bookshelf
  • Release : 2020-03-25
  • ISBN : 1680507753
  • Pages : 405 pages

Download or read book Real Time Phoenix written by Stephen Bussey and published by Pragmatic Bookshelf. This book was released on 2020-03-25 with total page 405 pages. Available in PDF, EPUB and Kindle. Book excerpt: Give users the real-time experience they expect, by using Elixir and Phoenix Channels to build applications that instantly react to changes and reflect the application's true state. Learn how Elixir and Phoenix make it easy and enjoyable to create real-time applications that scale to a large number of users. Apply system design and development best practices to create applications that are easy to maintain. Gain confidence by learning how to break your applications before your users do. Deploy applications with minimized resource use and maximized performance. Real-time applications come with real challenges - persistent connections, multi-server deployment, and strict performance requirements are just a few. Don't try to solve these challenges by yourself - use a framework that handles them for you. Elixir and Phoenix Channels provide a solid foundation on which to build stable and scalable real-time applications. Build applications that thrive for years to come with the best-practices found in this book. Understand the magic of real-time communication by inspecting the WebSocket protocol in action. Avoid performance pitfalls early in the development lifecycle with a catalog of common problems and their solutions. Leverage GenStage to build a data pipeline that improves scalability. Break your application before your users do and confidently deploy them. Build a real-world project using solid application design and testing practices that help make future changes a breeze. Create distributed apps that can scale to many users with tools like Phoenix Tracker. Deploy and monitor your application with confidence and reduce outages. Deliver an exceptional real-time experience to your users, with easy maintenance, reduced operational costs, and maximized performance, using Elixir and Phoenix Channels. What You Need: You'll need Elixir 1.9+ and Erlang/OTP 22+ installed on a Mac OS X, Linux, or Windows machine.

Book Elixir in Action

    Book Details:
  • Author : Sasa Juric
  • Publisher : Simon and Schuster
  • Release : 2019-01-03
  • ISBN : 1638351651
  • Pages : 652 pages

Download or read book Elixir in Action written by Sasa Juric and published by Simon and Schuster. This book was released on 2019-01-03 with total page 652 pages. Available in PDF, EPUB and Kindle. Book excerpt: Summary Revised and updated for Elixir 1.7, Elixir in Action, Second Edition teaches you how to apply Elixir to practical problems associated with scalability, fault tolerance, and high availability. Along the way, you'll develop an appreciation for, and considerable skill in, a functional and concurrent style of programming. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the Technology When you're building mission-critical software, fault tolerance matters. The Elixir programming language delivers fast, reliable applications, whether you're building a large-scale distributed system, a set of backend services, or a simple web app. And Elixir's elegant syntax and functional programming mindset make your software easy to write, read, and maintain. About the Book Elixir in Action, Second Edition teaches you how to build production-quality distributed applications using the Elixir programming language. Author Saša Jurić introduces this powerful language using examples that highlight the benefits of Elixir's functional and concurrent programming. You'll discover how the OTP framework can radically reduce tedious low-level coding tasks. You'll also explore practical approaches to concurrency as you learn to distribute a production system over multiple machines. What's inside Updated for Elixir 1.7 Functional and concurrent programming Introduction to distributed system design Creating deployable releases About the Reader You'll need intermediate skills with client/server applications and a language like Java, C#, or Ruby. No previous experience with Elixir required. About the Author Saša Jurić is a developer with extensive experience using Elixir and Erlang in complex server-side systems. Table of Contents First steps Building blocks Control flow Data abstractions Concurrency primitives Generic server processes Building a concurrent system Fault-tolerance basics Isolating error effects Beyond GenServer Working with components Building a distributed system Running the system

Book Phoenix

    Book Details:
  • Author : SF Said
  • Publisher : Candlewick Press
  • Release : 2016-10-11
  • ISBN : 0763688509
  • Pages : 497 pages

Download or read book Phoenix written by SF Said and published by Candlewick Press. This book was released on 2016-10-11 with total page 497 pages. Available in PDF, EPUB and Kindle. Book excerpt: "Lucky thinks he's an ordinary Human boy. But one night, he dreams that the stars are singing - and wakes to find an uncontrollable power rising inside him. Now he's on the run, racing through space, searching for answers. In a galaxy at war, where Humans and Aliens are deadly enemies, the only people who can help him are an Alien starship crew - and an Alien warrior girl, with neon needles in her hair. Together, they must find a way to save the galaxy. For Lucky is not the only one in danger. His destiny and the fate of the universe are connected in the most explosive way"--Publisher information.

Book Crimson Phoenix

    Book Details:
  • Author : John Gilstrap
  • Publisher : Pinnacle
  • Release : 2021-11-30
  • ISBN : 0786046643
  • Pages : 418 pages

Download or read book Crimson Phoenix written by John Gilstrap and published by Pinnacle. This book was released on 2021-11-30 with total page 418 pages. Available in PDF, EPUB and Kindle. Book excerpt: Brad Taylor meets The Stand in a riveting novel of suspense kicking off a brand new series perfect for fans of the page-turning novels of A.G. Riddle, Mark Greaney, and Matthew Mather. “One of the most singular and compelling heroines to come along in years.” —Jeffery Deaver, New York Times bestselling author “Snaps with action from the very first page.” —Marc Cameron, New York Times bestselling author of Stone Cross and of Tom Clancy’s Code of Honor From John Gilstrap, the New York Times and USA Today bestselling author of the Jonathan Grave novels, comes Crimson Phoenix—first in the new Victoria Emerson Thriller series. With America brought to the brink of destruction, one woman becomes the last hope of a nation and its people... Victoria Emerson is a congressional member of the U. S. House of Representatives for the state of West Virginia. Her aspirations have always been to help her community and to avoid the ambitious power plays of her peers in Washington D. C. Then Major Joseph McCrea appears on her doorstep and uses the code phrase Crimson Phoenix, meaning this is not a drill. The United States is on the verge of nuclear war. Victoria must accompany McCrea to a secure bunker. She cannot bring her family. A single mother, Victoria refuses to abandon her three teenage sons. Denied entry to the bunker, they nonetheless survive the nuclear onslaught that devastates the country. The land is nearly uninhabitable. Electronics have been rendered useless. Food is scarce. Millions of scared and ailing people await aid from a government that is unable to regroup, much less organize a rescue from the chaos. Victoria devotes herself to reestablishing order—only to encounter the harsh realities required of a leader dealing with desperate people... “Just the thing for readers who feel oppressed by the pandemic lockdown.” —Kirkus Reviews “A gripping page-turner.” —Taylor Stevens, New York Times bestselling author “An explosive story that keeps your mind churning and pulse racing . . . Don't miss this powerful new series from a master thriller writer.” —Jamie Freveletti, international bestselling and award-winning author

Book Phoenix Web Development

Download or read book Phoenix Web Development written by Mike Voloz and published by Packt Publishing Ltd. This book was released on 2018-04-30 with total page 398 pages. Available in PDF, EPUB and Kindle. Book excerpt: The Phoenix web development framework is an object-oriented application development tool written in Elixir. With Elixir and Phoenix, you build your application the right way, ready to scale and ready for the increasing demands of real-time web applications. If you have some knowledge of Elixir, have experience with web frameworks in other ...

Book Functional Web Development with Elixir  OTP  and Phoenix

Download or read book Functional Web Development with Elixir OTP and Phoenix written by Lance Halvorsen and published by Pragmatic Bookshelf. This book was released on 2018-01-25 with total page 298 pages. Available in PDF, EPUB and Kindle. Book excerpt: Elixir and Phoenix are generating tremendous excitement as an unbeatable platform for building modern web applications. For decades OTP has helped developers create incredibly robust, scalable applications with unparalleled uptime. Make the most of them as you build a stateful web app with Elixir, OTP, and Phoenix. Model domain entities without an ORM or a database. Manage server state and keep your code clean with OTP Behaviours. Layer on a Phoenix web interface without coupling it to the business logic. Open doors to powerful new techniques that will get you thinking about web development in fundamentally new ways. Elixir and OTP provide exceptional tools to build rock-solid back-end applications that scale. In this book, you'll build a web application in a radically different way, with a back end that holds application state. You'll use persistent Phoenix Channel connections instead of HTTP's request-response, and create the full application in distinct, decoupled layers. In Part 1, start by building the business logic as a separate application, without Phoenix. Model the application domain with Elixir functions and simple data structures. By keeping state in memory instead of a database, you can reduce latency and simplify your code. In Part 2, add in the GenServer Behaviour to make managing in-memory state a breeze. Create a supervision tree to boost fault tolerance while separating error handling from business logic. Phoenix is a modern web framework you can layer on top of business logic while keeping the two completely decoupled. In Part 3, you'll do exactly that as you build a web interface with Phoenix. Bring in the application from Part 2 as a dependency to a new Phoenix project. Then use ultra-scalable Phoenix Channels to establish persistent connections between the stateful server and a stateful front-end client. You're going to love this way of building web apps! What You Need: You'll need a computer that can run Elixir version 1.5 or higher and Phoenix 1.3 or higher. Some familiarity with Elixir and Phoenix is recommended.

Book Dragon and Phoenix

    Book Details:
  • Author : Joanne Bertin
  • Publisher : Macmillan
  • Release : 2000-11-15
  • ISBN : 1466820675
  • Pages : 809 pages

Download or read book Dragon and Phoenix written by Joanne Bertin and published by Macmillan. This book was released on 2000-11-15 with total page 809 pages. Available in PDF, EPUB and Kindle. Book excerpt: In Dragon and Phoenix, the sweeping sequel to Joanne Bertin's hugely successful fantasy epic The Last Dragonlord, Linden and Muarynna must rescue a trapped dragon from an evil princess. Once every thousand years the phoenix of Jehanglan burns to death in a magical release. For millennia the emperors of Jehanglan have tried to harness the awesome power of the phoenix's rebirth. One has finally succeeded, using black magic and the enslavement of a dragon. Far away at the Crown of the World, Dragon-lord Linden and his new wife, Maurynna, are trying to live the life of happy newlyweds. But all is not well. Since her first Change into dragon-form, Maurynna has been unable to duplicate it. And as her inability to Change drives her into a dark abyss of depression, Linden begins to doubt the love he was once so sure of... At this time of personal crisis, these two must journey to Jehanglan and marshall all of their diplomatic and martial skill to penetrate the treachery of the empire and set free the phoenix. But to do so they must face the dragon--the dragon who just might be a Dragonlord gone mad.... At the Publisher's request, this title is being sold without Digital Rights Management Software (DRM) applied.

Book Phoenix

    Book Details:
  • Author : Elizabeth Richards
  • Publisher : Speak
  • Release : 2014-06-12
  • ISBN : 0147511372
  • Pages : 370 pages

Download or read book Phoenix written by Elizabeth Richards and published by Speak. This book was released on 2014-06-12 with total page 370 pages. Available in PDF, EPUB and Kindle. Book excerpt: Ash must choose between saving the Darklings or saving Natalie.

Book The Book of Phoenix

    Book Details:
  • Author : Nnedi Okorafor
  • Publisher : Astra Publishing House
  • Release : 2015-05-05
  • ISBN : 0698175166
  • Pages : 236 pages

Download or read book The Book of Phoenix written by Nnedi Okorafor and published by Astra Publishing House. This book was released on 2015-05-05 with total page 236 pages. Available in PDF, EPUB and Kindle. Book excerpt: A fiery spirit dances from the pages of the Great Book. She brings the aroma of scorched sand and ozone. She has a story to tell.... The Book of Phoenix is a unique work of magical futurism. A prequel to the highly acclaimed, World Fantasy Award-winning novel, Who Fears Death, it features the rise of another of Nnedi Okorafor’s powerful, memorable, superhuman women. Phoenix was grown and raised among other genetic experiments in New York’s Tower 7. She is an “accelerated woman”—only two years old but with the body and mind of an adult, Phoenix’s abilities far exceed those of a normal human. Still innocent and inexperienced in the ways of the world, she is content living in her room speed reading e-books, running on her treadmill, and basking in the love of Saeed, another biologically altered human of Tower 7. Then one evening, Saeed witnesses something so terrible that he takes his own life. Devastated by his death and Tower 7’s refusal to answer her questions, Phoenix finally begins to realize that her home is really her prison, and she becomes desperate to escape. But Phoenix’s escape, and her destruction of Tower 7, is just the beginning of her story. Before her story ends, Phoenix will travel from the United States to Africa and back, changing the entire course of humanity’s future.

Book Spandau Phoenix

    Book Details:
  • Author : Greg Iles
  • Publisher : Penguin
  • Release : 2003-05-06
  • ISBN : 1101656085
  • Pages : 704 pages

Download or read book Spandau Phoenix written by Greg Iles and published by Penguin. This book was released on 2003-05-06 with total page 704 pages. Available in PDF, EPUB and Kindle. Book excerpt: From the #1 New York Times bestselling author of the Penn Cage series comes a heartstopping thriller about one of the great unsolved mysteries of World War II. The Spandau Diary—what was in it? Why did the secret intelligence agencies of every major power want it? Why was a brave and beautiful woman kidnapped and sexually tormented to get it? Why did a chain of deception and violent death lash out across the globe, from survivors of the Nazi past to warriors in the new conflict now about to explode? Why did the world’s entire history of World War II have to be rewritten as the future hung over a nightmare abyss? “Entirely plausible, totally engrossing…a remarkable, impressive novel.”—Nelson DeMille “An incredible web of intrigue and suspense, an avalanche of action from first page to last.”—Clive Cussler

Book Fox and Phoenix

Download or read book Fox and Phoenix written by Beth Bernobich and published by Penguin. This book was released on 2011-10-13 with total page 207 pages. Available in PDF, EPUB and Kindle. Book excerpt: "One cool, lively, exciting book set in a unique new world-more, please!" - Tamora Pierce The king of Long City is dying. For Kai Zu, the news means more than it does for most former street rats in the small mountain stronghold, because he and the king's daughter are close friends. Then the majestic ruler of the ghost dragons orders Kai to travel across the country to the Phoenix Empire, where the princess is learning statecraft. In a court filled with intrigue, Kai and his best (female) friend Yan must work together to help the princess escape and return to Long City. A refreshing mixture of magic, wit, and action, Fox and Phoenix is an auspicious debut! "I couldn't stop reading! Ghost dragons, talking pig spirit-companions, magic phones, royal intrigue, and a treacherous journey. . . . I loved this adventure through a unique magic world." - Sarah Beth Durst, author of Into the Wild

Book The Phoenix Project

Download or read book The Phoenix Project written by Gene Kim and published by IT Revolution. This book was released on 2018-02-06 with total page 580 pages. Available in PDF, EPUB and Kindle. Book excerpt: ***Over a half-million sold! And available now, the Wall Street Journal Bestselling sequel The Unicorn Project*** “Every person involved in a failed IT project should be forced to read this book.”—TIM O'REILLY, Founder & CEO of O'Reilly Media “The Phoenix Project is a must read for business and IT executives who are struggling with the growing complexity of IT.”—JIM WHITEHURST, President and CEO, Red Hat, Inc. Five years after this sleeper hit took on the world of IT and flipped it on it's head, the 5th Anniversary Edition of The Phoenix Project continues to guide IT in the DevOps revolution. In this newly updated and expanded edition of the bestselling The Phoenix Project, co-author Gene Kim includes a new afterword and a deeper delve into the Three Ways as described in The DevOps Handbook. Bill, an IT manager at Parts Unlimited, has been tasked with taking on a project critical to the future of the business, code named Phoenix Project. But the project is massively over budget and behind schedule. The CEO demands Bill must fix the mess in ninety days or else Bill's entire department will be outsourced. With the help of a prospective board member and his mysterious philosophy of The Three Ways, Bill starts to see that IT work has more in common with a manufacturing plant work than he ever imagined. With the clock ticking, Bill must organize work flow streamline interdepartmental communications, and effectively serve the other business functions at Parts Unlimited. In a fast-paced and entertaining style, three luminaries of the DevOps movement deliver a story that anyone who works in IT will recognize. Readers will not only learn how to improve their own IT organizations, they'll never view IT the same way again. “This book is a gripping read that captures brilliantly the dilemmas that face companies which depend on IT, and offers real-world solutions.”—JEZ HUMBLE, Co-author of Continuous Delivery, Lean Enterprise, Accelerate, and The DevOps Handbook

Book Programming Phoenix LiveView

    Book Details:
  • Author : Bruce A. Tate
  • Publisher : Pragmatic Bookshelf
  • Release : 2021-09-30
  • ISBN : 9781680508215
  • Pages : 370 pages

Download or read book Programming Phoenix LiveView written by Bruce A. Tate and published by Pragmatic Bookshelf. This book was released on 2021-09-30 with total page 370 pages. Available in PDF, EPUB and Kindle. Book excerpt: The days of the traditional request-response web application are long gone, but you don't have to wade through oceans of JavaScript to build the interactive applications today's users crave. The innovative Phoenix LiveView library empowers you to build applications that are fast and highly interactive, without sacrificing reliability. This definitive guide to LiveView isn't a reference manual. Learn to think in LiveView. Write your code layer by layer, the way the experts do. Explore techniques with experienced teachers to get the best possible performance. Instead of settling for traditional manuals and tutorials, get insights that can only be learned from experience. Start with the Elixir language techniques that effortlessly marry your client templates and server-side handlers. Design your systems with the right layers in the right places so that your code is easier to understand, change, and support. Explore features like multi-part uploads and learn how to comprehensively test your live views. Roll into advanced techniques to tie your code to other services through the powerful publish-subscribe interface. LiveView brings the most important programming techniques from the popular Elm and JavaScript React frameworks to Elixir. You'll experience firsthand how to harness that power by working side by side with some of the first LiveView users. You will write your programs to change data on the server, and you'll see how LiveView efficiently detects those changes and reflects them on the web page. Start from scratch, use built-in generators, and craft reusable components. Your single-purpose reducers will transform server data that your renderers can turn into efficient client-side diffs. Don't settle for knowing how things work. To get the most out of LiveView, you need to know why they work that way. Co-authored by one of the most prolific authors and teachers in all of Elixir, this book is your perfect guide to one of the most important new frameworks of our generation. What You Need: Programming Phoenix LiveView uses Phoenix version 1.5, and any Elixir version compatible with it. You will also want PostgreSQL and JavaScript Node.

Book Stealing Phoenix

Download or read book Stealing Phoenix written by Joss Stirling and published by OUP Oxford. This book was released on 2012-06-07 with total page 0 pages. Available in PDF, EPUB and Kindle. Book excerpt: Phoenix belongs to the Community, a gang of thieves with paranormal powers. Yves Benedict, an American student visiting London, is her mark. But Yves turns out to be more than just a target. He is her destiny. Her soulmate. The Community owns Phoenix's past and it wants her future too. Can Phoenix save the boy she loves . . . and herself?

Book Blood of a Phoenix

    Book Details:
  • Author : Shannon Mayer
  • Publisher : Createspace Independent Publishing Platform
  • Release : 2017-08-26
  • ISBN : 9781548827113
  • Pages : 350 pages

Download or read book Blood of a Phoenix written by Shannon Mayer and published by Createspace Independent Publishing Platform. This book was released on 2017-08-26 with total page 350 pages. Available in PDF, EPUB and Kindle. Book excerpt: I thought that going after those who'd destroyed my life would help me move on. At the very least, that it would ease the thirst for vengeance singing in my blood. I was wrong. With my guns at my side, I continue to search for ways to punish the one man who took everything from me. The man who killed my family. Death is far too good for him. I want to make him suffer, to take from him everything he loves. To that end, I need a code breaker, one who deals in magical glyphs. But in the hunt for her, I discover there are far more secrets to my life, and my blood, than I ever could have imagined. Secrets that are burning their way out of the past and the shadows. A promise dangled in front of me by the enemy of my enemy is too sweet to ignore. And I will cast all my cards on the table for the one chance that the promise he offers is true. That my son is alive. God help those who stand between my boy and me.