From 4d214b9fb519f052175fe1cc334c28ddd14a63fb Mon Sep 17 00:00:00 2001 From: Aymeric Beaumet Date: Sat, 18 Nov 2023 11:23:24 +0100 Subject: [PATCH] update --- backend/readme.md | 25 +++++++++++++------------ ios/readme.md | 16 ++++++++-------- 2 files changed, 21 insertions(+), 20 deletions(-) diff --git a/backend/readme.md b/backend/readme.md index 6b3e85d..f779096 100644 --- a/backend/readme.md +++ b/backend/readme.md @@ -15,15 +15,15 @@ messaging app, and the kind of technical challenges we face and care about. We know time is precious, and we are expecting you to spend no more than 48 hours on this. -## Summary +## Instructions -You are tasked with the implementation of the backend of a messaging app that +You are tasked with the implementation of the backend for a messaging app that allows users to send and receive messages in private 1:1 chats. -The only constraint you are given is that you must use Go. For the rest, you are -free to choose your data layer, network protocol, and design your API as you see -fit. You are purposefully being given a lot of freedom here, and you will not be -judged on these decisions alone. But we are expecting you to understand the +You are being given one constraint: you must use Go. For the rest, you are free +to choose your data layer, network protocol, and design your API as you see fit. +You are purposefully being given a lot of freedom here, and you will not be +judged on these decisions alone, but we are expecting you to understand the trade-offs you make. ## Requirements @@ -31,20 +31,20 @@ trade-offs you make. What are we expecting you to build? - [ ] Users should be able to authenticate with their phone numbers +- [ ] Users should be able to list all their ongoing chats - [ ] Users should be able receive messages from other users - [ ] Users should be able to send messages to other users ## Bonus -Some topics to look at if you are looking for ideas to dive deeper: +Some topics to look at to dive deeper: - [ ] Users should be able to authenticate with their email address -- [ ] Write tests that assert the functional scope of your server -- [ ] Add support for SMS forwarding to send the messages to the users phone numbers -- [ ] Add support for Email forwarding to send the messages to the users email addresses -- [ ] Add an idempotency mecanism for mutable requests +- [ ] Add support for SMS forwarding to relay the messages to the users phone numbers +- [ ] Add support for Email forwarding to relay the messages to the users email addresses - [ ] Make the backend idempotent in regards to what you receive -- [ ] Expose the relevant endpoints to add support for a read/unread message status +- [ ] Add support for a read/unread message status +- [ ] Users should be able to receive messages as they are sent ## What we look at @@ -52,6 +52,7 @@ We know it's a short amount of time, and you will have to prioritize what you spend time on. A few things that are important for us and that will be considered during the review: - collaboration: is the code easy to read, maintain, and evolve? +- features: what did you prioritize to maximize your impact? - testability: is the code tested or easily testable? - documentation: is the readme clear? are important parts of the code documented? can we follow your thought process with your commits? diff --git a/ios/readme.md b/ios/readme.md index 3051fbe..df8850a 100644 --- a/ios/readme.md +++ b/ios/readme.md @@ -15,7 +15,7 @@ messaging app, and the kind of technical challenges we face and care about. We know time is precious, and we are expecting you to spend no more than 48 hours on this. -## Summary +## Instructions You are tasked with the implementation of a messaging app that allows to send and receive messages with several bots, each in their own chat. @@ -35,7 +35,7 @@ What are we expecting you to build? ## Bonus -Some topics to look at if you are looking for ideas to dive deeper: +Some topics to look at to dive deeper: - [ ] Make the app work offline (both for app state and sending) - [ ] Make the app resilient to bad network conditions (retries & timeouts) @@ -58,11 +58,11 @@ receive the Figma link along with the challenge instructions. ## Challenge Review We know it's a short amount of time, and you will have to prioritize what you -spend time on. A few things that are important for us and that we will consider -during the review: -- structure: is the code easy to maintain and easy to evolve? -- robustness: is the code tested (or testable, we don't expect 100% code -coverage here) -- documentation: is the readme clear and are important parts of the code documented? +spend time on. A few things that are important for us and that will be +considered during the review: +- collaboration: is the code easy to read, maintain, and evolve? +- features: what did you prioritize to maximize your impact? +- testability: is the code tested or easily testable? +- documentation: is the readme clear? are important parts of the code documented? can we follow your thought process with your commits? Good luck, and enjoy!