HN user

rhdoenges

1,132 karma
Posts16
Comments79
View on HN

Additionally, this article only considers /static stretching/, which is far less helpful to me as a runner than /active stretching/: leg swings, kicks, or arm circles.

What "small experimental studies" are you referring to? This entire comment was a dismissive appeal to authority.

We have to bite our tongues and be careful of everything we say

Every word out of your mouth has an effect on the people around you. Please, consider consequences before you speak. This is not a radical notion.

The dashboard isn't good at telling you whether you've seen a post already and moves much too fast for traditional blogs that post once a day or less to even show up within the first few pages. I don't think Tumblr has the right UI for an RSS reader.

It says she paid her fare. What other motive could she have had to make this accusation?

Unfortunately, there is little evidence to go on at this point aside from her testimony, so much of this discussion is mere speculation.

Every time a "how to hire women" article pops up on HN, there's a flurry of comments that argue we should hire whoever can do the work best. That isn't what this article is about. In order to bring more diversity into your workplace or community, you have to consciously make the environment more welcoming to people who are different from you. When you let the "who can do the work" question decide your hires, prejudices control your decision without you even noticing. We must fight prejudice consciously or we contribute to oppression--not just the oppression women, but the oppression of any disadvantaged or underrepresented group.

Violence in books is textual, so it's going to be far less vivid for the reader than a video game where you actually cause the violence. Additionally, violent books/conversations/thoughts/lectures often focus on the negative aspects of violence rather than glorifying it the way movies and video games do.

The Web We Lost 14 years ago

I've found that Tumblr's tag system works very well for the sort of serendipitous interaction you bring up. By tracking tags, I have met plenty of friends who, of course, share some of my interests. Heck, some of us started up an IRC channel. The web isn't going to stop forming friendships anytime soon.

Ah yes.

========

Traceback (most recent call last): File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/_webapp25.py", line 701, in __call__ handler.get(groups) File "/base/data/home/apps/s~pythonmeme/4.356927075625222638/hello.py", line 395, in get normallist = item.all().order('-time').order('-vote').fetch(limit=20, offset=(pageNumber-1) 20) File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/db/__init__.py", line 2084, in fetch return list(self.run(limit=limit, offset=offset, kwargs)) File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/db/__init__.py", line 2237, in next return self.__model_class.from_entity(self.__iterator.next()) File "/base/python_runtime/python_lib/versions/1/google/appengine/datastore/datastore_query.py", line 2655, in next next_batch = self.__batcher.next() File "/base/python_runtime/python_lib/versions/1/google/appengine/datastore/datastore_query.py", line 2525, in next return self.next_batch(self.AT_LEAST_ONE) File "/base/python_runtime/python_lib/versions/1/google/appengine/datastore/datastore_query.py", line 2562, in next_batch batch = self.__next_batch.get_result() File "/base/python_runtime/python_lib/versions/1/google/appengine/api/apiproxy_stub_map.py", line 592, in get_result return self.__get_result_hook(self) File "/base/python_runtime/python_lib/versions/1/google/appengine/datastore/datastore_query.py", line 2317, in __query_result_hook self._conn.check_rpc_success(rpc) File "/base/python_runtime/python_lib/versions/1/google/appengine/datastore/datastore_rpc.py", line 1182, in check_rpc_success rpc.check_success() File "/base/python_runtime/python_lib/versions/1/google/appengine/api/apiproxy_stub_map.py", line 558, in check_success self.__rpc.CheckSuccess() File "/base/python_runtime/python_lib/versions/1/google/appengine/api/apiproxy_rpc.py", line 133, in CheckSuccess raise self.exception OverQuotaError: The API call datastore_v3.RunQuery() required more quota than is available.

Vim anti-patterns 14 years ago

say I have a line here ( | being my cursor)

    callFunction(); |// HEY THIS IS A REALLY LONG COMMENT
From there, I hit D, which is the same as d$. I want to then paste it so I have something like
    // HEY THIS IS A REALLY LONG COMMENT
    callFunction();
But I want to do that without entering insert mode.