Browse Source

issues from the students

content-update
miguel 2 years ago
parent
commit
892ec973c4
  1. 7
      subjects/get-some-time/README.md
  2. 2
      subjects/make-your-game/README.md
  3. 2
      subjects/real-time-forum/audit/README.md
  4. 2
      subjects/real-time-forum/typing-in-progress/audit.md
  5. 2
      subjects/rebecca-black/README.md
  6. 5
      subjects/using-map/README.md

7
subjects/get-some-time/README.md

@ -4,8 +4,11 @@
Create a function `firstDayWeek` that receives a week of the year
(from 1 to 53) and a year (as a string), and returns the first day
of that week, in the format: 'dd-mm-yyyy'. By beginning of the week
we mean the monday of that week.
of that week, in the format: 'dd-mm-yyyy'.
In this task you have to assume that the `week #1` is in all cases the week which contains the 1st of January.
By beginning of the week we mean the monday of that week.
If the first week is requested and it starts on the previous year
of the presented one, it should return the first day of the year.

2
subjects/make-your-game/README.md

@ -30,7 +30,7 @@ You must not use frameworks or canvas, the game must be implemented using plain
### Instructions
Animation must have consistent motion, so in order to have a smooth animation (without interruptions or so called jank animation) you must achieve the special number, [**60 FPS**](https://blog.algolia.com/performant-web-animations/). You can see more about performance [here](../good-practices/README.md)
Animation must have consistent motion, so in order to have a smooth animation (without interruptions or so called jank animation) you must achieve the special number, [**60 FPS**](https://www.algolia.com/developers-tech-blog/code-and-deep-dives/performant-web-animations/). You can see more about performance [here](../good-practices/README.md)
In order to play the game the player must only use the keyboard. The controls must be smooth, in other words you should not need to spam a key to take actions in the game. Instead, for example, if a key is kept pressed, the player must continue to do the relevant action. If the key is released the player should stop doing the action.

2
subjects/real-time-forum/audit/README.md

@ -1,6 +1,6 @@
#### Functional
###### Has the requirement for the allowed packages been respected? (Reminder for this project: only [standard packages](https://golang.org/pkg/))
###### Has the requirement for the allowed packages been respected? (Check the [allowed packages](../README.md))
###### Do you need to register/login in the forum to use it?

2
subjects/real-time-forum/typing-in-progress/audit.md

@ -1,6 +1,6 @@
#### Functional
###### Has the requirement for the allowed packages been respected? (Reminder for this project: only [standard packages](https://golang.org/pkg/))
###### Has the requirement for the allowed packages been respected? (Check the [allowed packages](README.md))
##### Open two browsers (ex: Chrome and Firefox or private windows) and log in with different users in each one. With one user start typing.

2
subjects/rebecca-black/README.md

@ -6,7 +6,7 @@ Create the following functions:
- `isFriday` returns true if the date is a friday
- `isWeekend` returns true if the date is a day of the weekend
- `isLeapYear` returns true if the year is a leap year
- `isLeapYear` returns true if the year of the date is a leap year
- `isLastDayOfMonth` returns true if the date is the last day of the month
### Notions

5
subjects/using-map/README.md

@ -2,8 +2,7 @@
### Instructions
- Create a function named `citiesOnly` which takes an array of objects
and which return an array of strings from the key `city`.
- Create a function named `citiesOnly` which takes an array of objects and which return an array of strings from the key `city`.
#### Example:
@ -21,7 +20,7 @@ citiesOnly([
```
- Create a function named `upperCasingStates` which takes an array of strings
and which Upper Case each words of a string. \
and which Upper Case the first letter of each word in a string. \
The function returns then an array of strings.
#### Example:

Loading…
Cancel
Save