Viewing profile — tom-lord
tom-lord
HN member- Joined
- Fri, Jan 09, 2015, 10:03 AM UTC
- HN karma
- 125
- Public activity
- 58 items
- HN profile
- View on Hacker News ↗
About tom-lord
Recent public activity
-
comment
Comment #24364945
There's no such thing as a performance measurement "on all workloads".
-
comment
Comment #15132759
It's written in the article?
-
comment
Comment #12831311
That was the whole point in theory, yes. But in reality, almost all new gTLD registrations are being made as brand protection, and redirecting to the company's existing .com domain…
-
comment
Comment #12826722
Why does there even need to be such thing as a TLD? :P I'm guessing the idea is similar to .London, .NYC, .Amsterdam, ... i.e. it would be used for a geographic indicator/market.
-
comment
Comment #12825986
> Restricted gTLDs should have only been for trademarked company names, like .google or .microsoft Unfortunately however, there are a lot of grey areas... To name a few: * Amazon h…
-
comment
Comment #12304028
Shell/batch scripting can often be useful in the devops world, where you have no guarantee that any additional tools (python, ruby, perl, powershell, whatever) wil be available. Sh…
-
comment
Comment #12135643
> If the POSIX standard is going to require backreferences, then it should also require a non-backtracking implementation for regular expressions without backreferences At least in…
-
comment
Comment #11396102
No one really knows for sure, but.... https://en.wikipedia.org/wiki/Planck_length
-
comment
Comment #11329954
Yes, however that was 3 and a half months ago -- and as far as I can tell, there's been no movement towards doing so.
-
comment
Comment #11327338
Funny how the conclusion is basically "Don't use `var`, use `let` instead" - even though almost all documentation/examples exclusively use the `var` keyword!
-
comment
Comment #11109105
> Designers suck at code. Coders suck at design. Keep that shit separate. I currently work in a small-ish company, where I am the ONLY person designing/developing multiple systems.…
-
comment
Comment #11108937
[1] pry(main)> 10..100 => 10..100 [2] pry(main)> (10..100).class => Range [3] pry(main)> (10..100).to_a => [10, 11, 12, 13, 14, ..., 99, 100]
-
comment
Comment #11108899
Yes, you can. Ordering has been guaranteed since ruby v1.9, very much intentionally. The implementation of a ruby hash is now as a doubly linked list [0]. This has inevitably cause…
-
comment
Comment #11010730
* No comparison with other time periods, and their respective tuition fees. * No comparison with other countries, and their respective policies. * No data on where these students g…
-
comment
Comment #10450437
> this would never pass a code review, the expectation of "foo?" is that it returns true/false. 95% of the time, yes. However, the "official" rule is simply that such methods must …
-
comment
Comment #10419652
> According to his numbers, the mode is precisely 0. I was referring to the fact that the graphs - e.g. https://theoverspill.files.wordpress.com/2015/10/screenshot-... - are using …
-
comment
Comment #10419046
I'm confused... How can the mode number of searches be 0.5?! "More people perform half a search every day, than any other amount." -- What?! I guess maybe that's more like "the mod…
- comment
-
comment
Comment #9980886
> Fingerprints are usernames, not passwords, even if some people use them as passwords. This doesn't make sense. You cannot "use a username as a password". Fingerprints, retina sca…
-
comment
Comment #9980868
It's also worth noting that (at least in the UK) such notice periods are not legally binding. You can only be forced to give a notice period up to your payroll pay frequency. So fo…
-
comment
Comment #9974999
> the claim that [...] What are you talking about? The comment I replied to didn't make any such claims! > passwords must be changeable Not necessarily. What about fingerprints? > …
-
comment
Comment #9973829
There are plenty of sites that allow you to change your username!
-
comment
Comment #9817887
> If I could stealthily patch the compiler for any language supporting the "\v" escape so I'd receive mail whenever it occurred in source code, then I could trace actual uses of it…
-
comment
Comment #9366811
Ohh right, so your plan would be to essentially check for third-party javascript things running on the same page? This would be a really easy "security" measure to circumvent, thou…
-
comment
Comment #9366617
I don't know much javascript, but that looks extremely error prone to me. How would it behave in different monitor sizes? With zoomed in/out screens? On mobiles, tablets, etc? And …