Skip to content

Commit

Permalink
Merge branch 'master' into CON-3391-Review-public-to-match-module
Browse files Browse the repository at this point in the history
  • Loading branch information
EldritchGriffin authored Jan 31, 2025
2 parents 125cf0e + 632d11a commit 8b9dfce
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion subjects/make-your-game/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ This project will help you learn about:
- [Event loop](https://developer.mozilla.org/en-US/docs/Web/JavaScript/EventLoop)
- FPS
- DOM
- [Jank/stutter animation](https://murtada.nl/blog/going-jank-free-achieving-60-fps-smooth-websites)
- [Jank/stutter animation](https://addyosmani.com/blog/making-a-site-jank-free/)
- [Example](https://googlechrome.github.io/devtools-samples/jank/)
- [Transform](https://developer.mozilla.org/en-US/docs/Web/CSS/transform)/ [opacity](https://developer.mozilla.org/en-US/docs/Web/CSS/opacity)
- Tasks
- JavaScript
Expand Down
2 changes: 1 addition & 1 deletion subjects/road_intersection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ You must create an environment which contains all the objects described in this
You will create two roads which cross each other to create an intersection. Each road will have **one lane** in each direction.

Traffic entering the intersection will be able to select a route by:

- turning left
- turning right
- continuing on straight
Expand Down Expand Up @@ -107,7 +108,6 @@ You can implement the following optional features:

- [limezu](https://limezu.itch.io/)
- [finalbossblue](http://finalbossblues.com/timefantasy/free-graphics/).
- [mobilegamegraphics](https://mobilegamegraphics.com/product-category/all_products/freestuff/).
- [spriters-resource](https://www.spriters-resource.com/).

### Notions
Expand Down
2 changes: 1 addition & 1 deletion subjects/shoppinglistsort/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (

func main() {
slice := []string{"Pineapple", "Honey", "Mushroom", "Tea", "Pepper", "Milk"}
fmt.Println(ShoppingListSort(slice))
fmt.Println(piscine.ShoppingListSort(slice))
}
```

Expand Down
2 changes: 1 addition & 1 deletion subjects/social-network/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ After creating the event every user can choose one of the options for the event.

Users should be able to send private messages to other users that they are following or being followed, in other words, at least one of the users must be following the other.

When a user sends a message, the recipient will instantly receive it through Websockets if they are following the sender or if the sender has a public profile.
When a user sends a message, the recipient will instantly receive it through Websockets if they are following the sender or if the recipient has a public profile.

It should be able for the users to send emojis to each other.

Expand Down

0 comments on commit 8b9dfce

Please sign in to comment.