Hacker News new | past | comments | ask | show | jobs | submit login
Seth Levine: Sick of start-up BS (cnn.com)
135 points by cwan on March 5, 2012 | hide | past | favorite | 39 comments



i work at a J2EE shop. We pivoted recently. We feel like a startup, we engineer like a startup, we work as hard as a startup, but we also have existing client relationships, existing revenue streams funding our pivot, and we already have a team of domain experts and strong engineers.

When I give a talk and my bio says J2EE I'm a bit sheepish, and all the twenty-somethings are like LOL you use java, but that's silly - I work for a better, stronger business than all the little startups[1] emailing me on careers.stackoverflow. And the money is better. And we dodge the whole class of issues that come with taking money[2], like being told by your VC to collect and sell personal information.

That's why I'm still here. I believe in this business, and when interviewees ask the founder about the business model, the answer isn't "freemium" - its how we've been paid to contract a product for a huge client but retain IP rights so we can reinvest the profit to productize something that the entire industry wants. and we have assets (domain experts, software, client relationships, functional sales team) that a startup doesn't have - there are tremendous barriers for competition to overcome. we're halfway through this, and it's working, and when you look at it you're like, duh, of course its working.

[1] i don't want to pick on anyone, and there are a few awesome startups out there that I'd love to work for, and maybe yours is in this set, and maybe i'm not good enough for the ones in this set. What I do see is that the startups emailing me seem to need a decent rails guy to build their commodity webapp. rails apps are important, and i'm sure they have all sorts of challenges which i'm not aware of, but they aren't particularly interesting, to me. J2EE on a good team is about building out < http://c2.com/cgi/wiki?WhyIsPayrollHard >, which is in a whole new class of scale/complexity that is, well, the type of hard which causes languages like Clojure and Scala to exist. [2] http://37signals.com/svn/posts/3107-99-problems-but-money-ai...

edit: i'm getting lots of voting activity in both directions, it surprises me that this is controversial, i'd love to hear criticism.


Somehow I met more Java shops with stronger revenue and a more solid future compare the rest.

I've been using JavaEE 6 (with Spring MVC) for a while and I believe it has improved a lot (and a lot simpler) compared to the previous versions and perfectly suitable for modern software systems: MVC (Spring), API json/xml (JAX-RS supports this easily), superb Testing tools (can mock almost everything), Asynchronous like Node via Servlet 3.0, WebService via JAX-WS easily (less than 5 minutes to produce XSD/WSDL or to generate client stubs).

I'm also impressed with the tools such as Maven for dependency, build, and package management, FindBugs for code analysis, CheckStyle for code-style enforcer, Hudson for Continuous Integration, and JavaDoc for code documentation that Java ecosystems has provided in order to write high quality software.


I find it ridiculous that a significant percentage of the population here equate raising VC money with selling your soul. I know you cite the SvN post, but that is one opinion. Raising VC is good for some businesses, bad for others. So is your hiring plan. So is your product choices. And a hundred other things.

We struggled for a long time, and our business came perilously close to the end a few times. But you know what got us out? Funding. VCs. Amazing investors that were thoughtful, supportive and value accretive. The marketing that we could invest in with our funding. We're doing millions of revenue now, and it is all because we were able to light the rocketship with our VC fuel. And did I say our VCs became great friends and mentors, even through the tough times?

It's not for everyone, and my experience may be an outlier. But let's stop with the snarky ant-VC comments.

I agree with the rest of your points and good luck with the pivot!


>"I find it ridiculous that a significant percentage of the population here equate raising VC money with selling your soul."

Really? I find the opposite. Every "we're hiring" thread brags about the company being "VC funded" and people seem to fall all over themselves figuring out the best pitching strategies or slide deck appearances.

I always find it odd, because being VC funded isn't good or bad in and of itself. There we agree.


> Raising VC is good for some businesses

As said before: The fact that people "celebrate" a funding event is really bass-ackwards when you think about it.

It says that the company couldn't figure out how to grow without bringing in a bunch of financiers, who have a low hit rate (3 go north, 3 go south, 4 turn into the living dead), who provided negative 10 yr returns even with Google in the portfolio, and who take 2-3% + 20% of exit from their own investors.

Definitely an excuse to drink, but not for reasons of celebration.

> And did I say our VCs became great friends and mentors, even through the tough times?

If you consider them among your friends, you have not hit the tough times.

They are your business partners. And when it comes time to sacrifice you in order to make some money you will be sacrificed.


thank you for sharing - certainly, one takes VC money because he thinks he's better with it (and the implications of having heavier profit incentives) than without it.

> ... equate raising VC money with selling your soul... one opinion... Raising VC is good for some businesses, bad for others

one interesting datapoint is that most* YC startups accept the Yuri Milner offer (auto 150k angel round). not that all startups are like YC startups, and that all businesses should take money, and that taking money/aiming for the stars is what defines a startup, but I do feel a bit of a stigma of "if you aren't a startup you and your company suck". As I get better acquainted with Dunning-Kruger I wonder if all those YC founders are mortals after all, just like you and me. or maybe i'm on the wrong end of it again ;)

*no source, read it 6 months ago

edit: this doesn't even make any sense, sorry haha


When I give a talk and my bio says J2EE I'm a bit sheepish, and all the twenty-somethings

You shouldn't feel sheepish at all. With how the client side JS frameworks are shaping up I think for many apps the optimal architecture is going to end up being JS in the browser calling web services in the backend written in Java/.Net ecosystems.


I've been doing this for the last 4 years.

First product was using GWT to communicate with a special type of Servlet (GWTServlet) via XML-RPC. We definitely can substitute the back-end to use plain Servlet or JAX-RS or SpringMVC and tweak the front-end a little bit with no problem.

Second was an enterprise project utilizing IBM WebSphere Portal (JSR-286, or... if you're not familiar, take a peek at Liferay) in which we implemented 90% of it using AJAX to talk to a Portlet (like Servlet) that returns JSON.

One of the components was implemented using JAX-RS that can easily switch between XML or JSON or ATOM without having to write a single line of logic other than annotating the method to return any or all of the above format (JAX-RS uses content-negotiation).

You'll be surprised how easy it is to implement such set-up in Java. It is built with modularity in mind but you can always use SpringMVC if you'd like to have something more like Rails as well :).


I've worked on 2 large GWT apps, neither backed by Java (one was backed by C++, the other was backed by Perl). Using it to create web applications is really nice, but it's a bit bulky when it comes to some UI work (though, UIBinder helps a lot when you just want to write HTML).

Java is an overall great language. While it does have it flaws, it helps protect you from lots of stupid programming mistakes and it has pretty good performance.


GWT is definitely heavy, considering all its functionality from minifying js, js splitting to optimize page load, multiple js output for browser specific optimization and to reduce js size, generating sprites, merging css, images, etc.

The best part of GWT is the testability aspect via MVP pattern if you compare it against weiting in pure JS which is usually hard to write headless test automation.


I'm sick of a different kind of BS. Generally speaking, creating startups has become almost as "meaningless" as trading stocks. You used to buy a stock because you believed in the long-term value of the company. Now you buy a stock because people panic on that given day and you feel you can take brief ownership of it to squeeze a few pennies out of it, before dumping it back on the market.

Why do VCs love startups? Because you can create value where there is none. Somehow 1,000,000 users capable of generating $200,000 in ad revenue per year (never mind the startup is burning 2 million a year!) are able to create valuations of $50 million. But hey, hot investors X, Y, and Z are in on this deal so it must be good! And thus the creation of companies no one gives two shits about continues.

How many startups are actually profitable - that is, genuinely creating more cash than they are burning? I think I can count them on one hand.


> How many startups are actually profitable - that is, genuinely creating more cash than they are burning? I think I can count them on one hand.

Surprisingly less true than you might think. I am friends with many founders that are cash flow positive!

Also, I haven't yet seen many of these crazy valuations. I mean, I see a few in TechCrunch every now and then, but the consistency of the valuations I'm seeing seems to be rare compared to others' experiences.


I blame it all on the Facebook movie, it over hyped startup world. People don't understand that more then half the time, we are knee deep in code or running out of cash.


Ah, this is material for a "captain hindsight" meme. "If you didn't want your founders to party it up, you shouldn't have pointed a fire hose of money at them"

There may be "hard work" going on in the start-up world, but you'll have to seek it out. For every "serious" start-up you'll find 5-10 Zynga/foursquare/etc... clones.


> If you didn't want your founders to party it up, you shouldn't have pointed a fire hose of money at them

Ah, but then they wouldn't be your founders would they?


The BS is not limited to start-ups. Check out the break-dance troupe kicking off JavaOne. geez: http://www.tbray.org/ongoing/When/200x/2008/05/07/PS080733.p... (credit: http://www.tbray.org/ongoing/When/200x/2008/05/07/J1D1)


Sounds like he's sick of the deluge of marketing dollars into these events, not necessarily the startup game.

Problem is, it's unavoidable. These guys have to get their name out there as quickly and loudly as possible. It's unfortunate, but until everyone in your target market has heard of you, you can't stop screaming "Look at me!"


To me it is one thing to be noticed ('get their name out there') for remarkable products/services, that took either time, effort, genius or a combination.

It is a complete separate thing when you either haven't produced anything, or have produced, but it is far from remarkable, and you are being noticed by running around screaming.

It is the latter that gets tiresome and old. Not to mention the former is so much more honerable.


I agree completely.

But pragmatically this is how small companies make a lot of money now. Run around screaming, "pivot" your non-business until it's the lowest common denominator buzzword compliant non-product and get an exit.

It's like the Hollywood sitcom model. It's basically focus group driven and hit based. Your agent and connections are more important than acting ability. The market created around start-ups cares way way more about "connectors" than introverted technical talent. And you can't blame them, web development tools have gotten very good and there are all kinds of new niches to fill on the web. You run the numbers and they are worth more.

In many other career paths there are various different cultural norms that push back against this kind of pandering, with varying degrees of success.

If you think that the engineer personality type is well suited to push back against extroverted suits promising popularity, wealth and calling them "rockstar programmers" because "you geeks are cool now" in order to keep working on big problems or doing something honorable then you have more faith than I.

So I hope that we find a way to correct the perverse incentives in place but the rest of the world would also love to hear a solution to this problem.


That reminds me how (it was said) that Cray Research never spent anything on advertising. They just produced the fastest supercomputers of their time, and the rest took care of itself.


> I'm worried that in offering term sheets after a single 60 minute meeting, and in pricing early stage deals like they were already late-stage successes and most egregiously by constantly running around self promoting and self aggrandizing, VCs are falling prey to a cult of personality about themselves and forgetting that their jobs are to help companies be successful.

He's worried about this now?! 10-year returns are negative (and that includes funds lucky enough to have google!)

It's been that way at least since the 90s internet bubble.


Business guy discovers that business is often full of vapid jargon-filled nothingness promoted by stuffed shirts. Film at 11.


Post has less to do with business and more to do with the lack of business :)


Amen. I would think getting noticed based on the coolness of your parties instead of getting noticed based on your product would be lame. Instead, it seems to be what draws people to the game. "BS" is a good call.


"Build products, not hype."

Not that I disagree with anything said, but it is really easy to put your head down and build good products that eventually fail because no one knew about them. Just a thought.


The counter to this is that good products are - by virtue of being good - products that people use and talk about. Generating hype can accelerate awareness and growth, but only after the product is proven to be good via initial organic growth.


> The counter to this is that good products are - by virtue of being good - products that people use and talk about.

This is so insanely untrue. There are tons of great products that don't see the light of day because the people in charge of said product don't have the skill set to find the people that would be interested in them.


Historically that may have been true (if you consider making a product usable and finding users for it distinct from the task of making a product good), but the trend is very much in the opposite direction.

These days the difficulty in building a great product vastly outweighs the difficulty in finding an audience to validate it. Both skills can - and must - be learned, but these days, someone who is able to learn how to build a great product will find it comparatively easy to learn how to find an early-adopter audience for it.

This is what YC is talking about with their motto "make something people want".


I agree. How many times have you heard of a Google product only after it was announced that were shuttering the service? If Google has this problem, how many other businesses rise and fall without others knowing?

Hype can just as easily destroy a product by setting expectations too high and the product doesn't deliver. Think of how many movies have fallen into this trap?

You have to strike the perfect balance of sparking just enough interest while still delivering something of interest.


I feel you but networking is probably the most overlooked strategy with first-time entrepreneurs. Party and startup events are a great way to meet seasoned professionals.


Where do people go to find introverted, seasoned professionals? I'm going to guess the next Woz won't be at those parties.


"introverted, seasoned professionals"

There's probably a fair amount of "introverted, seasoned professionals" that stop by HN from time to time. But then they reply with something that pisses the clique off, get down voted and never return.


This is right. The startup party scene largely acts as an echo-chamber. However, there are a few events out there that are designed around meeting people instead of pimping a particular company. Super Happy Dev House is a good example: It's mostly full of people that like building things but aren't brogrammers.

To find the quiet, experienced, skilled, well-adjusted people that aren't out drinking/partying once a week you have to actively seek them out while working. If you meet anyone like this, stay in touch. They are, by definition, not out there at events.


Seasoned and sauced.


Seth expands on his thoughts in this video: http://www.youtube.com/watch?v=SKArupEBE6Y

Now in all seriousness, of course the focus should be on product. But having a ton of relationships to leverage doesn't hurt if the end goal is the success of the business. (and I love that video!)


I'm surprised to see swear words in content from cnn.com.


He's describing the euphoria that always accompanies a bubble atmosphere. In this case, it's a start-up bubble. The same exact atmosphere went on in the late 1990s, just with bigger rounds and fewer micro companies.

Money is sloshing around, and nobody wants to earn 2% on long term junk government paper.

$500,000 isn't what it used to be, literally, but it buys a lot in the way of a web start-up now. If that $500k is now really $250k in 1999 terms, it's buying more like $5 or 10 million in 1999 terms (when it comes to the infrastructure needed to get a web start-up off the ground).

I'd normally say the start-up bubble would continue until the next economic melt down dries up the funding, but the funding levels driving the start-up bubble are so low, it's hard to see what will slow it down short of government regulations (they're working on that).


Money is sloshing around, and nobody wants to earn 2% on long term junk government paper.

That's the most concise expression of this thing I've ever seen!

I'd normally say the start-up bubble would continue until the next economic melt down dries up the funding, but the funding levels driving the start-up bubble are so low, it's hard to see what will slow it down short of government regulations (they're working on that).

So, arc you thinking the Bay Area is in something like a perpetual bubble? Sort of like Helium starting to move and "roil" weirdly near absolute zero, once things have cooled enough to let quantum effects come into play?


Something PG predicted some time ago, at least the part with the cost-per-start-up thing. It almost looks like we've got a social media bubble, and not a internet-bubble in general like in the 90s. Strange enough the seemingly unlimited flow of yc-like incubators wasn't mentioned. Interessting we live in, don't we?




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: