robmil | 12 years ago | on: The Sean Parker Wedding Is the Perfect Parable for Silicon Valley Excess
robmil's comments
robmil | 13 years ago | on: What Happens to Donated Cars?
robmil | 13 years ago | on: London Student: How I became Islamophobic
robmil | 13 years ago | on: Sass Style Guide
robmil | 13 years ago | on: Eleven people across UK arrested for racist comments on Twitter
You have to consider the different context at play here; the UK has never had a history of "fundamentalist" (for want of a better word) free speech like there is in the US. There are plenty of laws on the books, from sending malicious communications to inciting racial hatred, that prevent speech that would be entirely legal in the US.
I think that's something that's reflected (either a cause or an effect, I'm not sure which) in public opinion, too; there's certainly no widespread outcry here at these types of arrest. The only recent case I can think of where the ruling was against free speech and where public opinion was significantly against the ruling was the Robin Hood Airport tweet, where someone tweeted an obviously incredible threat to blow up an airport.[2]
[1]: http://www.guardian.co.uk/uk/2012/mar/27/student-jailed-fabr...
robmil | 13 years ago | on: jq - like sed for JSON data
There's an examples page, if you're struggling to see how it might be useful[2], but I find myself using 'extract', 'find', and 'pluck' on a daily basis.
[1]: https://github.com/ddopson/underscore-cli
[2]: https://github.com/ddopson/underscore-cli/blob/master/Exampl...
robmil | 13 years ago | on: How we use BitTorrent to improve our design sharing workflow
robmil | 13 years ago | on: How we use BitTorrent to improve our design sharing workflow
This is always a point of pain for us: in our studios we work from a central file server, so our shiny iMacs with their 1TB drives all have about 90% capacity on them — but we don't have any easy way to pool all that extra capacity and use it even as overflow for our central fileserver.
The search continues...
robmil | 13 years ago | on: Learn Web Penetration Testing The Right Way
robmil | 13 years ago | on: Interviewing in Silicon Valley
It's far more illuminating, and a far better reflection of their worth as a candidate, than their ability to go off into a room somewhere and work through a problem alone. I'm much more interested in someone who thinks well than who codes well (since the latter can easily be trained).
robmil | 13 years ago | on: Varnish in Five Acts
But yeah, it just got a bit painful after a while.
robmil | 13 years ago | on: Varnish in Five Acts
robmil | 13 years ago | on: Varnish in Five Acts
robmil | 13 years ago | on: Make Your UI More Responsive with HTML5 Web Workers
robmil | 13 years ago | on: Make Your UI More Responsive with HTML5 Web Workers
robmil | 13 years ago | on: Make Your UI More Responsive with HTML5 Web Workers
robmil | 13 years ago | on: What You Should Know About Chechnya as the Boston Story Unfolds
For wider reading on the region, I thoroughly enjoyed Oliver Bollough's "Let Our Fame Be Great: Journeys Among the Defiant People of the Caucasus", a nice blend of travelogue and history from the journalist who was Reuters' correspondent in the caucasus throughout the late 90s and early 2000s.
robmil | 13 years ago | on: Of Lisp Macros and Washing Machines (2011)
robmil | 13 years ago | on: Firefox Will Soon Block Third-Party Cookies
robmil | 13 years ago | on: Git workflow for projects with multiple developers
You can track and checkout a remote branch in just one command:
git checkout -t origin/foo
If someone's working on a topic branch themselves, it might be better to rebase master rather than merging it: git checkout foo
git rebase master