Platform45 is offering the opportunity to work with the best web and mobile software developers in

the country! Are you daring and creative? If you've got a keen eye for design and you love

building top-notch interfaces, we want to meet you.

The position includes working alongside Ruby on Rails developers to create slick visual designs for our world-class applications - starting with photoshop drafts and mock-ups through to the final HTML5 / CSS3 package.
This is an incredible chance to work on projects for big names, such as Toyota and Anglo-American and conceptualize new interfaces for well funded start-ups. All of this carried out in an agile software development environment.

We're looking for someone who understands the importance of functional design that is both intuitive and user-friendly without being intrusive to the application. A deep understanding of modern CSS techniques and cross-browser optimization is a must. Experience with SASS and responsive / mobile design is a major plus.

Interested? We'd love to see some of your work - get in touch, tell us a bit about yourself, and wow us with something of yours that you're really proud of. We could be inviting you round our offices soon to get to know you better.
Send us your application here


Developers! Try out the Battleships challenge below, and see if you've got what it takes.

The Challenge

Battleships

Developer Challenge

Beat us at a game of Battleships and you could find yourself working with the best Rails developers in the country.

Use your Rails ability to build a game that you're able to play against our server. We will judge you on your coding ability and style. (Don't forget to write tests.)


Instructions

Instructions

  1. Read API documentation below
  2. Build a web based game interface that can be played or play itself against our server. Be creative
  3. Win a game and we'll provide the next set of instructions.

API documentation

API reference

Our API is based on a JSON interface over HTTP using POST requests. All responses and requests should be made in JSON encoded strings.

InterfaceDescription
POST battle.platform45.com/registerUse this action to register and start a new game
POST battle.platform45.com/nukeUse this action to launch your salvos at us

Status Messages

200 OK - All requests respond with this

400 BAD REQUEST - If your request is malformed

Making Requests

Requests to the server are made in JSON

POST battle.platform45.com/register
json: { "name":"Your name", "email":"email@example.com" }

POST battle.platform45.com/register

Use this action to register and start a new game.

nameYour name
emailYour email address

POST battle.platform45.com/nuke

Use this action to launch your salvos at us.

idid of the game being played
xx target coordinate
yy target coordinate

Responses

Responses from the server are also sent as JSON encoded strings.

The server will respond to a request to /register with a game id and the first salvo coordinates of the game. Thats right, we always go first.

Example response:

{ "id":, "x":, "y": }

Possible keys for responses

idReturned upon registration
xx coordinate of fired salvo
yy coordinate of fired salvo
statusCan be hit or miss
sunkName of the craft which was sunk
game_statusReturned with "lost" when the game is lost
errorIf something went wrong, this will contain the error message
prizeOnce you have sunk all the enemy ships, this will contain your prize

General Information

The game is played on a 10x10 board with the following ships:

1 x Carrier (5 long)
1 x Battleship (4 long)
1 x Destroyer (3 long)
2 x Submarines (2 long)
2 x Patrol Boats (1 long)