Live data from Hacker News

Show HN: /r/place backed by the Bitcoin blockchain

mess110.github.io

1–10 of 29 posts

Re: Show HN: /r/place backed by the Bitcoin blockchain

#5

A fun way to get people to donate money to wallets you control. Kind of like Million Dollar Homepage, but without any pesky guarantees.

Yea, with a 0.001 BTC (~$1.42) minimum, this 100x100 pixel pilot could generate $14,200 if all pixels are colored and no pixels are contested. If it scales, in both pixels and interest, a decent amount of donations could be generated.

That said, cryptocurrency is much more niche than, say, an open-access canvas requiring only a Reddit account.

Re: Show HN: /r/place backed by the Bitcoin blockchain

#7
post #4

I tend to be pretty skeptical of all things crypto, but this seems pretty cool. It's not very useful, but it seems like a fun concept.

And generate some modest revenue for a side project. It looks like he's made around $1500 so far.

How are you calculating that?

Re: Show HN: /r/place backed by the Bitcoin blockchain

#8
Would have been much easier with an ethereum smart contract. No gimmicky address list, it's a crowdsourced picture in the blockchain.

  contract Place {
    struct Pixel {
      bytes3 color;
      uint lastPayment;
    }

    Pixel[10000][10000] board;

    modifier onBoard(uint x, uint y) {
      if (x > 10000 || y > 10000) {
        throw;
      } 
      _;
    }

    // Accepts funds, if the funds sent are greater than funds for that pixel last, change the color.
    function colorPixel(uint x, uint y, bytes3 color) payable onBoard(x, y) { 
      Pixel p = board[x][y];
      if (msg.value > p.lastPayment) {
        msg.sender.send(p.lastPayment); // refund previous price of pixel
        p.color = color;                // set the color
        p.lastPayment = msg.value;      // set new cost to whatever the person sent in
      } else {
        throw;
      }
    }
  }
May contain an error or two, but that's the general gist of it.

Re: Show HN: /r/place backed by the Bitcoin blockchain

#9

A fun way to get people to donate money to wallets you control. Kind of like Million Dollar Homepage, but without any pesky guarantees.

Agreed. I think it could be a great way to raise money for some kind of cause though.

What a great idea!

Re: Show HN: /r/place backed by the Bitcoin blockchain

#10

Would have been much easier with an ethereum smart contract. No gimmicky address list, it's a crowdsourced picture in the blockchain. contract Place { struct Pixel { bytes3 color; uint lastPayment; } Pixel[10000][10000] board; modifier onBoard(uint x, uint y) { if (x > 10000 || y > 10000) { throw; } _; } // Accepts funds, if the funds sent are greater than funds for that pixel last, change the color. function colorPi…

Guess I know what I am playing with soon :)
Post reply on HN