HN user

jgross206

87 karma
Posts0
Comments40
View on HN
No posts found.

Why? Because them caring about outward appearances would signal to me that they have a fundamental lack of understanding about what factors are relevant to running a successful business.

why does it matter to you if your customers understand what factors are relevant to running a business?

The difference, to me, is that the lack of freedom you describe is simply a part of the human condition (food and shelter require work, which has been true as long as life has existed) as opposed to what you call "traditional slavery" which is man-made.

...alcohol is involved in the majority of car accidents.

This didn't sound right to me, so I did some digging and found:

"In 2010, 10,228 people were killed in alcohol-impaired driving crashes, accounting for nearly one-third (31%) of all traffic-related deaths in the United States."

http://www.cdc.gov/motorvehiclesafety/impaired_driving/impai...

I couldn't find any data on non-fatal car accidents, but my intuition says that it would be a smaller proportion (i.e. alcohol-related accidents are more likely to be fatal).

Can you share your sources?

Looks like somebody wants to nominate themselves for a government contract.

Interesting how when the news media baselessly questions the motives of whistleblowers it's a "smear campaign." When someone on HN does it to someone who's vaguely pro-NSA it's the top comment.

Dance in a Year 13 years ago

In what way does your anecdote support your assertion that "a year is much too long"?

How to Get a Job 13 years ago

This is splitting hairs a bit. They are, for all intents and purposes, world champions.

Not sure of the universality of this, but my intuitive way of understanding O(log n) is as follows:

An algorithm is O(log n) if you can reduce the solution space (the set of all possible solutions) by a fraction (e.g. divide it in half or divide it into tenths) using a constant number of operations.

For example, binary search is O(log n) because you can cut the solution space in half (regardless of how big it is) by using a constant number of operations.

A very, very simple cd "hack" I use is (put this in your .bashrc):

function cd() { builtin cd "$*" && ls }

it automatically runs "ls" every time you cd somewhere. I find when I'm using someone elses box or SSH'd in somewhere it's really annoying not to have it.