# Game of Snake with Fusetools

**URL:** https://forums.fusetools.com/t/game-of-snake-with-fusetools/5734
**Category:** Show and Tell
**Created:** [August 23, 2016, 6:07pm UTC](https://forums.fusetools.com/t/game-of-snake-with-fusetools/5734 "2016-08-23T18:07:59Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Uldis](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/uldis/32/657_2.png) [@Uldis](https://forums.fusetools.com/u/Uldis)
#### Post date: [August 23, 2016, 6:07pm UTC](https://forums.fusetools.com/t/game-of-snake-with-fusetools/5734/1 "2016-08-23T18:07:59Z")

</div>

I just couldn’t stand the fact that there were almost no games done on fuse, so I made one. As a gag mostly.

Since the classics never die, I present you [drumroll…] the mighty `Fuse Snake v2.0`, with improved performance over the initial version (huge thanks @duckers!). Noteworthy fact is that it’s done with pure UX and JS.

Feedback, forks and pull requests welcome 🙂

Link: [https://bitbucket.org/uzeidurs/fuse-snake/src](https://bitbucket.org/uzeidurs/fuse-snake/src)

---

<div class="post-metadata">

### Author: ![Anders\_Schau\_Knatten](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/anders_schau_knatten/32/41_2.png) [@Anders\_Schau\_Knatten](https://forums.fusetools.com/u/Anders_Schau_Knatten)
#### Post date: [August 30, 2016, 10:26am UTC](https://forums.fusetools.com/t/game-of-snake-with-fusetools/5734/2 "2016-08-30T10:26:33Z")

</div>

Cool! Nice and tidy code too! 🙂

---

<div class="post-metadata">

### Author: ![Mitnick](https://avatars.discourse-cdn.com/v4/letter/m/779978/32.png) [@Mitnick](https://forums.fusetools.com/u/Mitnick)
#### Post date: [August 30, 2016, 12:03pm UTC](https://forums.fusetools.com/t/game-of-snake-with-fusetools/5734/3 "2016-08-30T12:03:16Z")

</div>

Hey Uldis, looks great! 🙂

One question why did you make the Grid in the MainView

```
<Grid Rows="25*,50*,25*">

```

and not

```
<Grid Rows="1*,2*,1*">

```

?

Is there a difference?

---

<div class="post-metadata">

### Author: ![Uldis](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/uldis/32/657_2.png) [@Uldis](https://forums.fusetools.com/u/Uldis)
#### Post date: [August 30, 2016, 12:07pm UTC](https://forums.fusetools.com/t/game-of-snake-with-fusetools/5734/4 "2016-08-30T12:07:45Z")

</div>

Thanks Anders, appreciate feedback like this from Fuse team!

Mitnick: nope, no difference. I just went for something that looked more like straightforward percentages. Talk about lazy 🙂
