Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

mateacademy-ai-mentor

mateacademy-ai-mentor created a review on a pull request on mate-academy/js_sliding-tree-DOM
Great job! 🎉 Your code meets all the task requirements and constraints effectively. The expandable tree functionality works as expected, and you've handled the event listeners well. Just make sure ...

View on GitHub

mateacademy-ai-mentor created a review on a pull request on mate-academy/jv-storage
### Review Summary Great effort on improving the `StorageImpl` implementation! 🎉 The code has addressed some critical issues from the previous review, such as correctly handling maximum capacity a...

View on GitHub

mateacademy-ai-mentor created a review on a pull request on mate-academy/layout_moyo-header
Great job on your submission! 🎉 Your code meets most of the task requirements, and the functionality is intact. There are a couple of minor improvements you could make, such as using a CSS variable...

View on GitHub

mateacademy-ai-mentor created a review on a pull request on mate-academy/jv-storage
Sorry, the pull request review was unsuccessful for the following reasons: > [!WARNING] > **No changes were made in the pull request since the last review.** Please make sure that you have added ...

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/jv-storage
The `put` method does not handle the case when the storage reaches its maximum capacity (`MAX_SIZE`). If the storage is full and a new key-value pair is added, it will simply be ignored. Consider t...

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/jv-storage
Using generic arrays like `(K[]) new Object[MAX_SIZE]` and `(V[]) new Object[MAX_SIZE]` is unsafe and can lead to `ClassCastException` at runtime. Consider using a different data structure, such as...

View on GitHub

mateacademy-ai-mentor created a review on a pull request on mate-academy/jv-storage
**** Thank you for your hard work on this implementation! 😊 While your code meets many of the task requirements, there are a couple of critical issues that need to be addressed before we can appro...

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/js_sort_table_DOM
The sort function does not handle cases where `sortedName` does not match any of the expected column names ('Name', 'Position', 'Age', 'Salary'). Consider adding a default case or handling unexpect...

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/js_sort_table_DOM
The condition `if (columnName.textContent === 'Age')` should be `if (sortedName === 'Age')` to maintain consistency with the other conditions and ensure the correct column is being checked.

View on GitHub

mateacademy-ai-mentor created a review on a pull request on mate-academy/js_sort_table_DOM
Great job on implementing the table sorting functionality! 🎉 Your code meets the task requirements by allowing sorting of table rows based on the column headers, and it handles different data types...

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-person-class
Similar to the previous comment, this line assumes the husband's name exists in the `people` dictionary. Add error handling to manage cases where the name is not found.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-person-class
The `person_list` is returned, but it is not clear how it is used. Ensure that the function's return value is utilized effectively in the application.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-person-class
This line assumes that the wife's name exists in the `people` dictionary. If the name does not exist, this will raise a `KeyError`. Consider adding error handling for missing keys.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-person-class
Accessing `Person.people[person['name']]` assumes that the person already exists in the dictionary. Ensure that all names in the input list are unique and have been added to the dictionary.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-person-class
This line adds the `Person` instance to the `people` dictionary using the person's name as the key. Ensure that the name is unique, or previous entries will be overwritten.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-person-class
The `people` dictionary is used to store `Person` instances by their name. Ensure that names are unique to avoid overwriting existing entries.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-person-class
The `person_list` is being populated with `Person` instances, but this list is not used later in the function. Consider returning this list or using it in some way.

View on GitHub

mateacademy-ai-mentor created a review on a pull request on mate-academy/py-person-class
**** Thank you for your efforts on this task! Your code is on the right track, but there are a few critical issues that need to be addressed before it can be approved: 1. **Error Handling for Mis...

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-api-views
Similarly, the `@staticmethod` decorator is not needed for the `get_object` method in `GenreDetail`. It should be an instance method to maintain consistency with Django's class-based views.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-api-views
In the `__str__` method of the `Movie` model, directly including `self.genres` will not display the genre names as expected. You might want to use a method to join the genre names into a string, su...

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-api-views
The use of `@staticmethod` for the `get` and `post` methods in `GenreList` is unnecessary. These methods should be instance methods, not static methods, as they rely on the `request` object.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-api-views
Consider using `serializers.ModelSerializer` for the `CinemaHallSerializer` class to automatically handle the `create` and `update` methods, simplifying the code.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-api-views
Consider using `serializers.ModelSerializer` for the `ActorSerializer` class to simplify the code by automatically handling the `create` and `update` methods.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-api-views
Consider using `serializers.ModelSerializer` for the `GenreSerializer` class to reduce the need for manually defining the `create` and `update` methods.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-api-views
The `__str__` method for the `Actor` model should include a space between the first and last names for better readability. Consider changing it to `return f"{self.first_name} {self.last_name}"`.

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-api-views
Consider using `serializers.ModelSerializer` for the `MovieSerializer` class. This would automatically generate the `create` and `update` methods based on the model fields, reducing boilerplate code.

View on GitHub

mateacademy-ai-mentor created a review on a pull request on mate-academy/react_static-list-of-posts-js
Great job on implementing the task requirements! 🎉 Your code is well-structured, and the components are correctly implemented. There are just a couple of minor improvements you could make: consider...

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-car-wash-station
The `rate_service` method implementation is incorrect. The formula for updating `average_rating` should correctly account for the new rating and the total number of ratings. Ensure that the calcula...

View on GitHub

mateacademy-ai-mentor created a review comment on a pull request on mate-academy/py-car-wash-station
Typographical Error: The attribute name `comfort_class` is correct here, but ensure consistency throughout your code. Previously, it was noted as `comform_class`.

View on GitHub

mateacademy-ai-mentor created a review on a pull request on mate-academy/py-car-wash-station
### Review Summary Great job on addressing the issues from the previous review! 🎉 Your code implementation is mostly correct, and you've made significant improvements. Here are the key points: 1....

View on GitHub

Load more