smoove's comments

smoove | 14 years ago | on: Ask HN: What kind of kezboard do programmers in Germanz use?

Normal German layout, with some keys (braces and other programming stuff) mapped to the home row with caps lock as the modifier key. So <caps lock>+h = $ for example -> sucks to program on computers not owned by me ;)

I also consider to switch the y and z keys like in the us layout, because i need the y key way more often (copy selection in vim) and find it very uncomfortable to reach.

smoove | 14 years ago | on: Augmented Reality Cinema

That's just playing a video of a location in the same location?! There is no augmented reality whatsoever, just watching videos...

smoove | 14 years ago | on: Ask HN: Is there a search engine which understands regular expressions?

>>Would it really? I'd like to see some hard data on that.

The process would be this:

-> User submits Regex

-> Google fetches all documents in it's database (46 billion documents according to mryan) - If we assume 1kb of data per document (wich is probably way to small), google just fetched 43869 GigaByte of data

-> now google somehow iterates over said 43869Gb (we assume we have a lot of RAM btw.) and check if the regex matches any of them

-> Search results are delivered to user (days later?)

I can not give you any "hard facts", but the problem is that if you can not build an index, you have to look at each individual document. And in google's case the amount of documents is just way too high.

page 1