HN user

snappy173

178 karma
Posts1
Comments71
View on HN
Because I Am Bored 5 years ago

We are trying to create scarcity. This is literally the opposite of the Star Trek economy. We are so fucked …

I really wish I knew how he is hedging his bets on this. is this a bet or a payoff? is he trying to prop BTC up so that his investors and allies can continue converting their offshore holdings back to USD?

"Great, retain a Chicago politician so you know you'll get the answer you're paying for."

right. regardless of where you stand on his performance as attorney general, hiring eric holder is a political move. if uber actually cared about investigating this, they wouldn't have hired a politician.

i could see other apps that use a native browser preferring the AMP version. something like yelp, that lets you click through to the source page, for instance.

Well, you can access the AMP version of the page from anywhere, not just Google search results. I could see apps that use an in-app browser serving the AMP version of a page, instead of the full version, for instance. I guess we'll see?

or create a wrapper function ...

  function withLoadingIndicator(Wrapped) {
    return function(props) {
      if (props.loading) {
        return (<LoadingIndicator />);
      }
      return (<Wrapped {...props} />);
    }
  }

  // ...

  export class PersonRenderer extends Component {
    render() {
      return <div>personcontent</div>
    }
  }

  export default withLoadingIndicator(PersonRenderer);
D3 v4.0.0 released 10 years ago

I wrote a react component to map react props to D3 accessor functions, and then use the react lifecycle functions to trigger D3 redraw.

http://bl.ocks.org/cpapazian/6228888157c39be85e9c (please excuse the coffeescript)

However, it looks like the work to modularize D3 will make it much, much easier to have the render function produce SVG markup directly.

Regardless of how strong Airbnb's legal standing is or isn't, they are the definition of a company who believes it better to ask forgiveness then permission.

not really. they were caught, and their response is f* you, rather than to ask forgiveness. whether or not you agree with their behavior, they are very much NOT asking for forgiveness.

Strictly interpreted, the 3rd amendment prevents the government from being able to force homeowners to quarter soldiers. If you think about the real intent of the bill though, it's obvious that the mindset is "you are free to use your own house without government interference."

that's a real stretch. that would nullify all zoning ...