andrewmccall | 9 years ago | on: Importing JSON into Hadoop via Kafka
andrewmccall's comments
andrewmccall | 13 years ago | on: What We Don't Know About Spying on Citizens: Scarier Than What We Know
Far from giving up the EU is engaged in strengthening the directives far beyond what's required now: http://en.wikipedia.org/wiki/General_Data_Protection_Regulat...
andrewmccall | 13 years ago | on: Google tried to resist FBI requests for data, but the FBI took it anyway
andrewmccall | 13 years ago | on: US intelligence mining data from 9 US Internet companies in broad secret program
I think it's far more likely this is built off the back of the data they're already known to be sucking down via major exchanges.
A national security letter for the TLS certs and you can take what you want, when you want off straight from the stream of packets.
andrewmccall | 13 years ago | on: Hey disaster novelists: Remember bicycles
If walking turns into scrambling or climbing the bike becomes a bit of a hinderance, but they're not that heavy and the benefits across most terrain outweigh the inconvenience. In fact on a bike you could probably avoid it altogether, not losing a great deal of time just going around.
You're not likely to still be travelling long distances long enough after whatever event that the roads and paths are in such a state of disrepair. You'd be talking years for that to happen and you probably would have had to sort out some sort of place to live and grow food long before you had to worry about it.
andrewmccall | 13 years ago | on: Stalled Out on Tesla’s Electric Highway
Also a while a digital camera does get to spend some time outdoors it spends most of it's life in fairly people comfortable environment.
andrewmccall | 13 years ago | on: Why Everyone Eventually Hates or Leaves Maven
andrewmccall | 13 years ago | on: Power surges in Britain caused by millions of people making tea [video]
With 25 million homes in the UK that's 6% of them suddenly wanting another 1000w of electricity.
andrewmccall | 13 years ago | on: A bold but simple login system
I'd assume that if you used the email to login and since the article talks about also using cookies with expiry dates in the future the codes in emails would be single use.
andrewmccall | 14 years ago | on: The Open Web Needs You Now
I can't remember any specific examples off the top of my head but I do remember that some of the -webkit and -moz prefixes were ever so slightly different.
I think once it made it into the draft most browsers start supporting it using the standard css without any prefix.
andrewmccall | 14 years ago | on: Hadoop vs. an RDBMS: How much (less) would you pay?
Hadoop excels at data processing, trawling vast quantities of unstructured or semi structured data and extracting information from it. It's a poor platform for random access to specific elements of that data though.
RDBMS are great in exactly the places Hadoop isn't, getting access to random elements of data in a structured manner. Executing structured queries on that data. Things you know you'll do a lot of and can optimise.
There are column and table data stores built on top of Hadoop, and it can be argued that they could be used as an alternative to an RDBMS but they aren't drop in replacements and for the most part they're not meant to do the same job.
The most interesting uses of Hadoop aren't going to come from replacing existing RDBMS infrastructure with a Hadoop cluster. They're going to come from pushing data into a Hadoop cluster to process it. Collecting data that would otherwise be impossible to collect because it's either unstructured or there is simply too much to put in a RDBMS at a cost effective scale.
Hadoop and the NoSQL movement is exciting when you start to think about processing that data and pulling what's useful back out into your existing infrastructure.
andrewmccall | 14 years ago | on: Source: Groupon Doesn’t Have The Cash to Build Its New Data Center
andrewmccall | 14 years ago | on: What really happened aboard Air France 447
andrewmccall | 14 years ago | on: What really happened aboard Air France 447
andrewmccall | 14 years ago | on: The OAuth chronicles: I am not stupid
That means you have to agree on a way of exchanging that client ID.
Which at it's simplest is what OAuth 2 does with bearer tokens. If you have no use for the other parts of the spec then just ignore them, it's all optional and you only need to implement it if you need it.
andrewmccall | 14 years ago | on: The OAuth chronicles: I am not stupid
andrewmccall | 14 years ago | on: The OAuth chronicles: I am not stupid
andrewmccall | 14 years ago | on: The OAuth chronicles: I am not stupid
andrewmccall | 14 years ago | on: Modern Web Applications are Here
It also makes a developer program something that's quick and easy to support, again the API is ready and waiting.
andrewmccall | 14 years ago | on: Modern Web Applications are Here
I actually find that bit easier, because I can separate out the the parts and worry about things a piece at a time. The other benefit of this is if you chose to develop for iOS, Android or any other platforms you already have an API. Equally if you wanted a developer program, again it's already there.
The complexity comes when you make the decision as to whether or not to support clients that can't or won't execute Javascript, if you want to make it work for them too you're stuck with more work and things do get more difficult.
As far as testing goes, there are plenty of mature javascript unit testing frameworks and if your inclined to unit test your javascript already this doesn't add a great deal of overhead. Your really just testing something in JS you would have otherwise done and tested server-side.