Earlier quoted context omitted.
"6. A new internet community-hangout will appear. One that you and I will frequent. This is such a vague prediction does not even worth mentioning." This is one he nailed - Facebook.
I was thinking more of StackOverflow as an answer to this one.
Ten predictions (2004)
271–280 of 324 posts
Re: Ten predictions (2004)
#272Re: Ten predictions (2004)
#273Earlier quoted context omitted.
Ah, sorry. I thought they were still in start-up mode. It does seem a bit early for them to be turning a profit; I hope they are investing enough.
So, you were assuming that they weren't making a profit based on some sort of gut feeling that they were "still in start-up mode", but you used quite absolute language suggesting personal knowledge of the state of their books.
Re: Ten predictions (2004)
#274Earlier quoted context omitted.
> We got NoSQL (esp. JSON based ones) instead of XML. Close enough though. JSON is basically XML with 50% less bullshit. It does less but it does it so much more elegantly than XML - and has the further benefit of a syntax similar to that of structured data in such languages as Javascript (duh), Python and Ruby - that it was a shoo-in to squeeze XML out of most non-enterprise uses, at least on the data transfer forma…
It's true that JSON document databases very closely follow the model set out by earlier XML document databases, and have succeeded for the reason Yegge spelled out. The big lack is the equivalent of XQuery and XPath, in my opinion. Javascript plays this role in some systems, but I don't think there is anything for Javascript matching the power and flexibility of XQuery/XPath for querying and transforming data. I woul…
The main thing missing is that XML has attributes, so you can query against those.
I won't say that the JS stuff is better, but it's one less thing to learn, and what you learn is directly applicable to writing apps in JS.
Re: Ten predictions (2004)
#275Earlier quoted context omitted.
So, you were assuming that they weren't making a profit based on some sort of gut feeling that they were "still in start-up mode", but you used quite absolute language suggesting personal knowledge of the state of their books.
Why the heck would GitHub take $100 million in investment and still push for earning a profit every quarter? Does it make any sense to you? Now you can see why I'm confused.
Re: Ten predictions (2004)
#276Re: Ten predictions (2004)
#277Earlier quoted context omitted.
So, you were assuming that they weren't making a profit based on some sort of gut feeling that they were "still in start-up mode", but you used quite absolute language suggesting personal knowledge of the state of their books.
Why the heck would GitHub take $100 million in investment and still push for earning a profit every quarter? Does it make any sense to you? Now you can see why I'm confused.
Re: Ten predictions (2004)
#278Earlier quoted context omitted.
JSON is basically XML with 50% less bullshit. I don't get this. XML has the capacity of being as simple as you want it to be. You don't need schemas, namespaces, xpath, and so on, and can make your XML life every bit as easy as JSON. In many ways easier given that JSON doesn't even have a bloody date or time type. But if you do want strong-type validation, schemas and namespaces are there for you. If you want an easy…
XML has the capacity of being as simple as you want it to be Unfortunately in practice it never is. I've seen programmers do too many dumb things with data structures in XML, which then becomes "part of the spec" so it never goes away. Take an xml api in a fortune 500 and run it through 10 developers over the course of 5 years, then do the same thing with a json api, I guarantee you the json one will be more standard…
Re: Ten predictions (2004)
#279Earlier quoted context omitted.
Why the heck would GitHub take $100 million in investment and still push for earning a profit every quarter? Does it make any sense to you? Now you can see why I'm confused.
The idea that taking investment automatically means you would actively forgo earning a profit is kinda odd. You take investment to grow, not because you have an allergy to profits.
I'm not an accountant, and this is just my uninformed understanding.
Re: Ten predictions (2004)
#280Earlier quoted context omitted.
XML has the capacity of being as simple as you want it to be Unfortunately in practice it never is. I've seen programmers do too many dumb things with data structures in XML, which then becomes "part of the spec" so it never goes away. Take an xml api in a fortune 500 and run it through 10 developers over the course of 5 years, then do the same thing with a json api, I guarantee you the json one will be more standard…
Guarantee? Do you actually know how "enterprise" projects work?