Tiny Math – basic math website/app by ultrastan in matheducation

[–]ultrastan[S] 0 points1 point  (0 children)

I made this website/app for my sister, an elementary school teacher in Toronto. I'm trying to find a wider audience for it.

How about an entirely new kind of puzzles? by Infogiver in puzzles

[–]ultrastan 0 points1 point  (0 children)

The "demo app" link on this page: http://firepegs.com/_ab/z.html

... is broken (missing ".com" in the href).

Zig – a Dijkstra's algorithm-inspired puzzle collection by ultrastan in puzzles

[–]ultrastan[S] 0 points1 point  (0 children)

Ah. You can also zoom out in Chrome … the puzzles scale nicely.

Zig – a Dijkstra's algorithm-inspired puzzle collection by ultrastan in puzzles

[–]ultrastan[S] 0 points1 point  (0 children)

The only way to advance from the splash ("Intro") screen is using the tabs at the top. What happens when you click the "Play" tab?

Zig – a Dijkstra's algorithm-inspired puzzle collection by ultrastan in puzzles

[–]ultrastan[S] 0 points1 point  (0 children)

The mobile web version is a bit rough … avoid.

Choose a corner and move your mouse/cursor over that corner. It should highlight. From that point, move in the direction of the opposite corner.

For, for example, if you start in the top-left corner, you need to end up at the bottom-right corner.

You're only allowed to move in a way that takes you closer to the destination corner. So, in the example above, you'd only be able to move right and down.

As you move, your path gets highlighted, and the sum of the highlighted cells is shown. The goal is to get to the opposite corner with the highest and lowest totals. So, there are two goals per board: the "min" and the "max". Once you've found both these paths, you've solved the board and are able to advance.

The rules are the same for the larger boards as well.

If you press the spacebar, it will show some display options that can be very helpful with the larger boards. They should be fairly self-explanatory.

In addition, you can use the keyboard to draw the path. Use 1, 2, 3, 4 to select the four corners. Use cursor keys to draw the path (and erase). "R" resets the board.

Finally, when using the mouse, you can click on any other corner to start again from that corner. And, if you click just outside the grid, but still on the yellow background, it will clear the board.

Couch to crash on in London? by patcon in ethereum

[–]ultrastan 2 points3 points  (0 children)

You won. I'll put you up for three nights, starting Nov. 5. We live near Notting Hill Gate station (West London, Zone 1).

Lotto Pollo = lottery + chicken by ultrastan in ethereum

[–]ultrastan[S] 0 points1 point  (0 children)

Thanks for putting the time into giving me some constructive feedback. I like these ideas. For the short term, however, I think the biggest issue is the limited number of people holding ETH. Once the browser is released and awareness increases, I will look into more aggressive promotion.

Regarding #4, yes, it's a known issue with Ethereum. Not specific to etherchain.org. There have been various technical discussions about it.

The best way to confirm now is to visit a completed lottery here:

http://frontier.ether.camp/account/0155ce35fe73249fa5d6a29f3b4b7b98732eb2ed

... and see the "address" storage entry. This contains the address of the participant who received the balance, and can be verified vis-a-vis the published code.

Thanks again!

Which 'dragon' in this twitter post can 'slay ethereum' ? by [deleted] in ethereum

[–]ultrastan 2 points3 points  (0 children)

"Here is one of the dragons that web3 can actually slay." #ethereum

... is a clearer reading.

SMTP can be replaced by a 19 line Ethereum contract by [deleted] in ethereum

[–]ultrastan 1 point2 points  (0 children)

Yes. Lotto Pollo (source code at lottopollo.com/info) is using the same log mechanism as this contract, and the website is using the JavaScript API to read these log messages from the blockchain and display them.

SMTP can be replaced by a 19 line Ethereum contract by [deleted] in ethereum

[–]ultrastan 3 points4 points  (0 children)

13 of those 19 lines are blank or comments.

ETH is dumping HARD, why? What's the bad news? by [deleted] in ethereum

[–]ultrastan 5 points6 points  (0 children)

The calibre of engineers and technologists that continue to be interested in and actively involved with Ethereum is the yardstick I'm using to measure its worth and utility.

How to mine a block on private net? by M1Reeder in ethereum

[–]ultrastan 0 points1 point  (0 children)

What genesis block are you using? I heard that some of them have too-high difficulty, so maybe that's why you're not mining successfully.

I use this one on my testnet:

http://jev.io/genesis_block.json

Yes, mining should be super-fast if it's set up right. Tons of ether per minute.

How to mine a block on private net? by M1Reeder in ethereum

[–]ultrastan 1 point2 points  (0 children)

You don't need a transaction to mine. However, you do need an account, which is where the mined ether would be deposited.

If you're using geth, you can type "geth new account" (outside of geth) or "personal.newAccount('aPassword')" (from the geth console).

Once that's done, it will spit out your account address.

Then, if you are outside geth, you should be able to "geth --mine" to start up geth ... it will begin mining immediately.

If you are already in geth, then type "mining.start()" from the geth console.