Ecosyste.ms: Timeline

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

vsmutok

vsmutok created a review comment on a pull request on mate-academy/py-linter-formatter
use `format_linter_error` here

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-linter-formatter
no need to use loop here

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-linter-formatter
use `format_single_linter_file` here

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-linter-formatter

View on GitHub

vsmutok created a comment on a pull request on mate-academy/py-car-wash-station
> Спершу ШІ виділив у мене таку помилку: > > self.count_of_ratings += 1 self.average_rating = round((self.average_rating * (self.count_of_ratings - 1) + single_rate) / self.count_of_ratings, 1) ...

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-car-wash-station
Tests Failed!

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-fastapi-city-temperature-management-api
Great!

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-tickets-and-orders
use transaction.atomic decorator for better readability

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-tickets-and-orders
use `get_user` here

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-tickets-and-orders
The `get` method will raise a `DoesNotExist` exception if the user is not found. Consider handling this exception to avoid runtime errors.

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-tickets-and-orders

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-car-wash-station
Please fix `flake8` error!

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-cinema-full-stack
Looks Good!

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-scrape-quotes
remove this comment

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-scrape-quotes

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-linter-formatter
Good Job!

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-create-file-from-terminal
1. The logic doesn't work as expected: an extra folder `-d` is created, and the file name is incorrect. 2. If I run the command a second time, it causes an error. Tip: Read about the `argpa...

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-linter-formatter
Please fix `flake8` errors

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-create-file-from-terminal
Good Job!

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-create-file-from-terminal
```suggestion if args.f is None or args.d is not None: create_dirs() if args.d is not None: os.chdir(os.path.join(*args.d)) if args.f is not None: create_file() ```

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-create-file-from-terminal

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-create-file-from-terminal
1. **Readability**: Independent blocks are easier to understand than nested structures. 2. **Avoids nesting**: No deep indentation, making the code cleaner.

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-create-file-from-terminal

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-create-file-from-terminal
This will look somewhat better. :) ```suggestion if args.f is None or args.d is not None: create_dirs() if args.d is not None: os.chdir(os.path.join(*args.d)) if args.f is not Non...

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-create-file-from-terminal
There should be a blank line between entries in the file. ![image](https://github.com/user-attachments/assets/fd815951-8deb-4a30-80ce-b2b90e86fd36)

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-create-file-from-terminal

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-create-file-from-terminal
Try to use `with` only once and open the file just once.

View on GitHub

vsmutok created a review on a pull request on mate-academy/py-create-file-from-terminal

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-create-file-from-terminal
```suggestion line = input(f"Enter content line: Line{count} content: ") ```

View on GitHub

vsmutok created a review comment on a pull request on mate-academy/py-create-file-from-terminal
Try to use `with` only once and open the file just once. It's also important that the data should be appended to the file, not overwritten.

View on GitHub

Load more