Book picks similar to
App Empire: Make Money, Have a Life, and Let Technology Work for You by Chad Mureta
business
entrepreneurship
startup
knowledge
The Monk and the Riddle: The Education of a Silicon Valley Entrepreneur
Randy Komisar - 2000
Silicon Valley is filled with garage-to-riches stories and hot young entrepreneurs with big ideas. Yet even in this place where the exceptional is common, Randy Komisar is a breed apart. Currently a "Virtual CEO" who provides "leadership on demand" for several renowned companies, Komisar was recently described by the "Washington Post" as a "combined professional mentor, minister without portfolio, in-your-face investor, trouble-shooter and door opener." But even more interesting than what he does is how - and why - he does it. Komisar has found a way to turn an ambitious and challenging work life into his life's work."The Monk and the Riddle" is unlike any other business book you've read. Transcending the typical "leadership book" model of lists and frameworks on how to succeed in business, "The Monk and the Riddle" is instead a lively and humorous narrative about the education of a unique Valley insider. It unfolds over the course of an ongoing dialogue between Komisar and would-be entrepreneurs, "Lenny and Allison," and is at once a portal into the inner workings of Silicon Valley - from how startups get launched to how venture capitalists do their deals to how plans get prepared and pitched - and a deeply personal account of how one mover and shaker found fulfillment, not in work's rewards but in work itself.As the narrative follows Komisar through meetings with venture capitalists and eager entrepreneurs, and as his conversations with Lenny evolve toward a resolution, "The Monk and the Riddle" imparts invaluable lessons about the differences between leadership and management and passion and drive, and about the meaning of professional and personal success. "When all is said and done," writes Komisar, "the journey is the reward."
Product Leadership: How Top Product Managers Launch Awesome Products and Build Successful Teams
Richard Banfield - 2017
Yet, managing human beings and navigating complex product roadmaps is no easy task, and it's rare to find a product leader who can steward a digital product from concept to launch without a couple of major hiccups. Why do some product leaders succeed while others don't?This insightful book presents interviews with nearly 100 leading product managers from all over the world. Authors Richard Banfield, Martin Eriksson, and Nate Walkingshaw draw on decades of experience in product design and development to capture the approaches, styles, insights, and techniques of successful product managers. If you want to understand what drives good product leaders, this book is an irreplaceable resource.In three parts, Product Leadership helps you explore:Themes and patterns of successful teams and their leaders, and ways to attain those characteristicsThe best approaches for guiding your product team through the startup, emerging, and enterprise stages of a company's evolutionStrategies and tactics for working with customers, agencies, partners, and external stakeholders
Blog, Inc.: Blogging for Passion, Profit, and to Create Community
Joy Deangdeelert Cho - 2012
This authoritative handbook gives creative hopefuls a leg up. Joy Cho, of the award-winning Oh Joy!, offers expert advice on starting and growing a blog, from design and finance to overcoming blogger's block, attracting readers, and more. With a foreword from Grace Bonney of Design*Sponge plus expert interviews, this book will fine-tune what the next generation of bloggers shares with the world.Learn how to: - Design your site - Choose the right platform - Attract a fan base - Finance your blog - Maintain work/life balance - Manage comments - Find content inspiration - Overcome blogger's block - Choose the right ads - Develop a voice - Protect your work - Create a media kit - Leverage your social network - Take better photographs - Set up an affiliate program - Partner with sponsors - Build community - Go full-time with your blog - And more!
Technology-as-a-Service Playbook: How to Grow a Profitable Subscription Business
Thomas Lah - 2016
Whether you are a pureplay cloud company or a traditional technology provider making the pivot to the cloud, this book will help guide your decision-making and execution around the “as-a-service” model to put your company on a path to profitable growth
The Presentation Secrets of Steve Jobs
Carmine Gallo - 2009
Communications expert Carmine Gallo has studied and analyzed the very best of Jobs's performances, offering point-by-point examples, tried-and-true techniques, and proven presentation secrets in 18 "scenes," including:Develop a messianic sense of purposeReveal the Conquering heroChannel your inner ZenStage your presentation with propsMake it look effortlessWith this revolutionary approach, you'll be surprised at how easy it is to sell your ideas, share your enthusiasm, and wow your audience the Steve Jobs way."No other leader captures an audience like Steve Jobs does and, like no other book, The Presentation Secrets of Steve Jobs captures the formula Steve uses to enthrall audiences."--Rob Enderle, The Enderle Group"Now you can learn from the best there is--both Jobs and Gallo. No matter whether you are a novice presenter or a professional speaker like me, you will read and reread this book with the same enthusiasm that people bring to their iPods."--David Meerman Scott, bestselling author of The New Rules of Marketing & PR and World Wide Rave
JavaScript: The Definitive Guide
David Flanagan - 1996
This book is both an example-driven programmer's guide and a keep-on-your-desk reference, with new chapters that explain everything you need to know to get the most out of JavaScript, including:Scripted HTTP and Ajax XML processing Client-side graphics using the canvas tag Namespaces in JavaScript--essential when writing complex programs Classes, closures, persistence, Flash, and JavaScript embedded in Java applicationsPart I explains the core JavaScript language in detail. If you are new to JavaScript, it will teach you the language. If you are already a JavaScript programmer, Part I will sharpen your skills and deepen your understanding of the language.Part II explains the scripting environment provided by web browsers, with a focus on DOM scripting with unobtrusive JavaScript. The broad and deep coverage of client-side JavaScript is illustrated with many sophisticated examples that demonstrate how to:Generate a table of contents for an HTML document Display DHTML animations Automate form validation Draw dynamic pie charts Make HTML elements draggable Define keyboard shortcuts for web applications Create Ajax-enabled tool tips Use XPath and XSLT on XML documents loaded with Ajax And much morePart III is a complete reference for core JavaScript. It documents every class, object, constructor, method, function, property, and constant defined by JavaScript 1.5 and ECMAScript Version 3.Part IV is a reference for client-side JavaScript, covering legacy web browser APIs, the standard Level 2 DOM API, and emerging standards such as the XMLHttpRequest object and the canvas tag.More than 300,000 JavaScript programmers around the world have made this their indispensable reference book for building JavaScript applications."A must-have reference for expert JavaScript programmers...well-organized and detailed."-- Brendan Eich, creator of JavaScript
Fluent Python: Clear, Concise, and Effective Programming
Luciano Ramalho - 2015
With this hands-on guide, you'll learn how to write effective, idiomatic Python code by leveraging its best and possibly most neglected features. Author Luciano Ramalho takes you through Python's core language features and libraries, and shows you how to make your code shorter, faster, and more readable at the same time.Many experienced programmers try to bend Python to fit patterns they learned from other languages, and never discover Python features outside of their experience. With this book, those Python programmers will thoroughly learn how to become proficient in Python 3.This book covers:Python data model: understand how special methods are the key to the consistent behavior of objectsData structures: take full advantage of built-in types, and understand the text vs bytes duality in the Unicode ageFunctions as objects: view Python functions as first-class objects, and understand how this affects popular design patternsObject-oriented idioms: build classes by learning about references, mutability, interfaces, operator overloading, and multiple inheritanceControl flow: leverage context managers, generators, coroutines, and concurrency with the concurrent.futures and asyncio packagesMetaprogramming: understand how properties, attribute descriptors, class decorators, and metaclasses work"