ontowhee
ontowhee
🙌 @coolbootscoder Thank you for the changes! The note clarifies how the values differ at the database and ORM level. I am not sure if the tests were meant for...
To expand on the details of the string match, using the example notebook provided, the following are the ids for the headings: - Cell 1 - H1#Hello → “hello” -...
Thanks for the suggestions! Unique IDs does sound like a better path. I'm not too familiar with how the IDs are generated, but I can look into it later today...
@jo-soft I'm not working on it. Feel free to pick up on the work!
I'm able to reproduce this locally by deleting jquery.min.map from the project and the static root folder, and then running `python manage.py collectstatic --settings djangoproject.settings.prod` and gives the error described...
For commit [8fe1e01](https://github.com/django/djangoproject.com/pull/1813/commits/8fe1e0171ca3c1406ab9d452e5fdc6b1fe841ac5), the overall performance was 110ms.  For commit [2288df6](https://github.com/django/djangoproject.com/pull/1813/commits/2288df6adf8fa22b47fc48f0ae9adf0760e5aae0), using the subquery seems to be worse for TracTicketMetric. It took 186ms...
> The difference between 110 and 186ms doesn't seem so bad to me, but I would like to know your opinion too. It doesn't seem too bad to me either....
I was playing around to understand the queries better. Here's another [approach](https://github.com/ontowhee/djangoproject.com/compare/fix-1806-dashboard-n-plus-1-query...ontowhee:djangoproject.com:fix-1806-alternate-query-datum?expand=1) that queries on the Datum model. It uses `.distinct()` and `.order_by()` to get the latest measurement for each...
I've resolved the merge conflict, squashed the commits, and added Baptiste as the co-author! The failing test is making an external api call, and looks like several other PRs are...
This might not be a bug. There is a similar [question posted on stackexchange](https://unix.stackexchange.com/questions/252419/unexpected-sort-order-in-en-us-utf-8-locale/252426) and a good explanation about how unicode uses weights in its sorting algorithm. This allows names...