HackerTrans
TopNewTrendsCommentsPastAskShowJobs

thedufer

no profile record

comments

thedufer
·قبل 5 أشهر·discuss
> Can't log in when standing up

This reminds me of a recent issue I had. I had just gotten a new laptop from IT. While picking it up from them, I had generated myself a password, put it in my password manager on my phone, and then entered it twice to set it on the laptop. Everything worked great. But when I got back to my desk, the password didn't work! I tried a bunch of times, watched myself hit each key to eliminate typos, etc.

I went back to IT and they asked me to demonstrate. But this time it worked! I walked back to my desk, thoroughly embarrassed. But a couple hours later I had to log in again and once again could not.

After thinking about it for awhile, I realized that I was typing at IT while standing over a sitting-height desk. Sure enough, typing in that position fixed my issue. I carefully watched what I was doing this time - something about the exact layout of the keyboard and the weird angle I was typing at ensured that I was making a particular typo I typed in that position - just a single letter switched to another, every time. Sure enough, making that one substitution to my intended password got me in.
thedufer
·قبل 8 أشهر·discuss
OCaml predates multicore CPUs. Having a global lock was basically free at the time it was invented. It's totally crazy to dislike a language because the authors made a decision that was obviously correct at the time.
thedufer
·قبل 8 أشهر·discuss
> if you reduce latency from one second to a hundred milliseconds, could you celebrate that you've made it 10x faster

Yes you can, because speed has units of inverse time and latency has units of time. So it could be correct to say that cutting latency to 1/10 of its original value is equivalent to making it 10x the original speed - that's how inverses work.

Savings are not, to my knowledge, measured in units of inverse dollars.
thedufer
·قبل 10 أشهر·discuss
> you actually need to get a service ticket (TGS)

If we're being pedantic, TGS ("ticket granting server") is the service you get service tickets from. Service tickets are (occasionally) abbreviated ST, as you'd expect. The TGS is a logical part of the KDC, distinguished from the AS which grants TGTs.
thedufer
·قبل 5 سنوات·discuss
Have you ever said "let's hang out Tuesday afternoon"? Abolishing time zones makes that a useless phrase for a large slice of the world - consider the area where the date changes in the middle of the afternoon. And which days are the weekdays? The ones where it's Monday-Friday in the morning (with Tuesday-Saturday afternoons) or where it's Monday-Friday in the afternoon (with Sunday-Thursday mornings)?

This doesn't really solve the problems with times, it just moves them from times to dates.
thedufer
·قبل 7 سنوات·discuss
I don't think its inconceivable, but comparing it to a hedge fund makes it look pretty crazy. First note that they look more like a prop fund, in which typically returns are labor-constrained rather than cash-constrained. Annual returns there aren't really comparable to investing, as they're more performing services (like arbitrage) for the market than putting in money. Second, the fact that being able to invest is a perk of employment means that part of their pay structure is via Medallion returns. Income that other firms would have to subtract from returns because it is spent on payroll still counts for Rentech even though said returns are going to employees.
thedufer
·قبل 7 سنوات·discuss
They reportedly don't reinvest returns, which means that the 80%/year is paid out. A ponzi scheme can't return more money than is put in; Medallion does so every 15 months.
thedufer
·قبل 8 سنوات·discuss
The JSON spec doesn't bound numbers in any way, and plenty of languages have support for arbitrarily large numbers (for example, Python's number type).
thedufer
·قبل 8 سنوات·discuss
An integer suffixed with the letter "n" is not valid JSON and will not parse if you follow the spec. The "n" suffix is how you write BigInts in JavaScript, not JSON.
thedufer
·قبل 8 سنوات·discuss
The other problem is that this would be a bizarre JavaScript-specific quirk, and would fail to interop with JSON implementations in other languages.
thedufer
·قبل 14 سنة·discuss
> Is this just because it doesn't wrap, and mobile safari doesn't display a scrollbar?

Pretty sure that's it. OS X (Safari and Chrome, at least) does the same thing unless you have a mouse plugged in. The formatting is such that it doesn't feel like it should scroll, even in the common case of characters being cut in half. Better styling on code blocks would do wonders for this.