Giter VIP home page Giter VIP logo

longest_word's Introduction

Background & Objectives

Time to re-implement your "Longest-word game" with a cool web-interface. You can use the code in the solution to 01-Ruby/06-Parsing/02-Numbers-and-Letters as a starting point.

Specs

Herebelow is how your game should work. We only give you the routing structure. Your call to generate the relevant controller, actions and views.

  • GET '/game': render the page with a new random grid of words, and the HTML form to write your guess just below the word-grid.

  • GET '/score' should compute and display your score..

Tips

  • To submit a parameter through a form without displaying the corresponding input, you can use a hidden input field <input type="hidden">!

  • Remember: for the forms to work you will need to remove the following line :

  protect_from_forgery with: :exception

In the app/controllers/application_controller.rb file. This will be explained in more details during the next days, but you can learn more about it here.

Extra (optional)

Everytime a new HTTP request hits your Rails app, it generates a new instance of the controller. Hence, you cannot store values across requests, except if you use Rails session. Rails session is persisted between all requests of the user's session.

Here you can use Rails session to keep track of the total number of games you have played, your average score and other kind of general information.

longest_word's People

Contributors

brandsrd avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.