• Complain

Yevgeniy Brikman - Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams

Here you can read online Yevgeniy Brikman - Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2015, publisher: OReilly Media, genre: Romance novel. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Yevgeniy Brikman Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams
  • Book:
    Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams
  • Author:
  • Publisher:
    OReilly Media
  • Genre:
  • Year:
    2015
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

At this very moment, somewhere in the world, two programmers are sitting in a garage and creating our future, one line of code at a time. We are in the era of the high tech startup.

This book is the Hello, World tutorial for building products, technologies, and teams in a startup environment. Its based on the experiences of the author, Yevgeniy Brikman, as well as interviews with programmers from some of the most successful startups of the last decade, including Google, Facebook, LinkedIn, Twitter, GitHub, Stripe, Instagram, AdMob, Pinterest, and many others.

If youre at all interested in startupswhether youre a programmer at the beginning of your career, a seasoned developer bored with the politics of large companies, a manager trying to figure out how to motivate your engineers, or just someone trying to figure out what this startup thing is all aboutthis book is for you. For more info, see http://www.hello-startup.net

Yevgeniy Brikman: author's other books


Who wrote Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams? Find out the surname, the name of the author of the book and a list of all author's works by series.

Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Hello, Startup

by Yevgeniy Brikman

Copyright 2015 Yevgeniy Brikman. All rights reserved.

Printed in the United States of America.

Published by OReilly Media, Inc. , 1005 Gravenstein Highway North, Sebastopol, CA 95472.

OReilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles ( http://safaribooksonline.com ). For more information, contact our corporate/institutional sales department: 800-998-9938 or corporate@oreilly.com .

  • Editors: Mary Treseler and Angela Rufino
  • Production Editor: Nicole Shelby
  • Copyeditor: FILL IN COPYEDITOR
  • Proofreader: FILL IN PROOFREADER
  • Indexer: FILL IN INDEXER
  • Interior Designer: Monica Kamsvaag
  • Cover Designer: FILL IN COVER DESIGNER
  • Illustrator: Rebecca Demarest
  • September 2015 First Edition
Revision History for the First Edition
  • 2015-04-06 First Release
  • 2015-06-25 Second Release

See http://oreilly.com/catalog/errata.csp?isbn=9781491909904 for release details.

The OReilly logo is a registered trademark of OReilly Media, Inc. Hello, Startup, the cover image, and related trade dress are trademarks of OReilly Media, Inc.

While the publisher and the author(s) have used good faith efforts to ensure that the information and instructions contained in this work are accurate, the publisher and the author(s) disclaim all responsibility for errors or omissions, including without limitation responsibility for damages resulting from the use of or reliance on this work. Use of the information and instructions contained in this work is at your own risk. If any code samples or other technology this work contains or describes is subject to open source licenses or the intellectual property rights of others, it is your responsibility to ensure that your use thereof complies with such licenses and/or rights.

978-1-491-90990-4

[FILL IN]

Dedication

To Mom, Dad, Lyalya, and Molly.

Preface
main(){printf("hello, world");}

When you learn a new programming language, the traditional first step is to gothrough a Hello, World tutorial that teaches you everything you need to knowto get a basic program working, such as one that prints the text Hello, Worldto the screen. This book is the Hello, World tutorial for building products,technologies, and teams in a startup environment.

I wish I had a book like this when I was in college. By the time Igraduated, I had a BS, a Masters, a bunch of internshipsand absolutely noidea what I was doing.

I remember one of the first big projects I built by myself was a desktopapplication for performance testing at Thomson Financial. I had no ideahow to create a user interface, so I randomly sprinkled text fields, menus,and buttons across the screen. I had no idea how to reason aboutperformance, so I randomly sprinkled caches and thread pools across the code.And I had no idea how to think about code maintenance, so I didnt bother withtests or documentation, but I did manage to cram several thousand lines of codeinto one gigantic file.

I remember my first project at TripAdvisor was to add new sort options to thewebpage that listed all the hotels in a city. It was a quick task, just enoughto become familiar with the code base, and I was able to get it done and pushedto production in my first week. Shortly after, I was in my managers office forour first one-on-one meeting, and I watched as he clicked on the hotel listingsfor Paris, selected the new sort option, and then waited. And waited. Andwaited. It took nearly two hours for the page to load. Well, it was probablycloser to two minutes, but Im pretty sure there is a law of specialrelativity that causes time to dilate when youre sweating profusely andjust hoping you can melt through the floor and disappear. Later thatnightmuch laterI figured out that my fancy new code was makingtwo database calls every time it compared hotels during the sorting process. Ittakes on the order of n log n comparisons to sort n items, so for Paris,which has roughly n = 2,000 hotels, that works out to roughly 40,000 databasecalls for a single page load. I may not have melted that day, but our databaseserver nearly did.

I remember lots of other nasty bugs, ugly code, uglier user interfaces, siteoutages, and late nights. But mostly, I remember having tons of questions, andno easy way to find an answer. What technologies should I learn and use? Whyshould I bother with automated tests? How do I build a product thatdoesnt look terrible? How do I get people to use my product? How do Inegotiate a job offer? Should I negotiate for more salary or more equity? Whatis equity, anyway? Should I work at a large company or join a startup?

I learned the answers to these questions, and many others, the hard way. Itried to capture what I learned, much of it the result of painful trial anderror, in blog posts and talks, but afterrealizing that thousands of other developers were going through thesame trial and error process, making the same mistakes, and still havingnowhere to turn with the same questions, I decided it was time to do somethingmore substantial. This book is the result. Of course, some lessons you can onlylearn by making your own mistakes, but for the rest, I hope Hello, Startupwill save you a lot of pain by letting you learn from the mistakes of others.

One of my biggest mistakes was not paying enough attention to the startupworld early in my career. My first few jobs were all at big, establishedcompanies (Cisco Systems, Thompson Financial, Cornell University), and it wasonly later, and somewhat accidentally, that I made the jump into the startupworld (LinkedIn, TripAdvisor). What I saw there astonished me. I learned more inmy first few months at a startup than I had in all the years of work,internships, and schooling before that.

A startup is not just a smaller version of a larger company[], much like quantum mechanics is notjust a smaller version of classical mechanics. Classical mechanics describesthe behavior of large objects (e.g. a baseball or a planet) moving atrelatively slow speeds with rules that are predictable and deterministic.Similarly, large companies tend to move slowly and live in a world withpredictable rules because the customers and products are all known. Quantummechanics describes the behavior of tiny objects (e.g. photons and electrons)moving at extremely high speeds with rules based on uncertainty, probability,and non-determinism. Similarly, startups tend to move at a hectic pace tosurvive in an unpredictable world where nothing is known. While manypeople are familiar with classical mechanics and large companies, youwont have a complete picture of the world unless you also understandquantum mechanics and startups, and that means youll need new ways ofthinking and new ways of working.

The way you work is, in many ways, the way you live, as you will spendhalf of the waking hours in your life at work.Wouldnt you prefer to spend those hours doing something that makes youhappy? I used to think that all software jobs involved endless cubiclefarms, pointy haired bosses, TPS reports, and enterprise code.Fortunately, there is an alternative, which I hope to show you in this book byintroducing you to the way work gets done at some of the best startups in theworld. The ideas from these companies will be useful even if you never join astartup yourself and will grow even more useful as startups become more and moreubiquitous.

This book is based on my own experiences, plus a considerable amount ofresearch, including a series of interviews with programmersfrom some of the most successful startups of the last decade, such as Google,Facebook, Twitter, GitHub, Stripe, Instagram, Coursera, Foursquare,Pinterest, and Typesafe (the full list of interviewees is in the). Youll find their stories and thoughtsthroughout the book. They offer a raw glimpse into startup life, with nomarketing or PR spinjust programmers sharing their successes, mistakes,and advice.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams»

Look at similar books to Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams»

Discussion, reviews of the book Hello, Startup: A Programmers Guide to Building Products, Technologies, and Teams and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.