| Commit message (Collapse) | Author | Age | Lines |
| | |
|
| |\ |
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| | |
You would think I would be able to spell GitHub correctly at this point.
I've fixed the typos on this page and altered some of the spacing to
provide something nicer to glance over.
|
| | |
| |
| |
| |
| |
| |
| |
| | |
This changes external links to open in a new tab. It also adds
`rel="noopener"` for some bonus security and performance gains.
This commit only effects files that are within the scope of this PR.
It does not do this against other pages.
|
| | |
| |
| |
| |
| |
| |
| | |
I now mention the correct theme which is "Think Inside the Box"
Additionally, this corrects the link to the icon for Advent of Code.
It was using an old link which is no longer correct.
|
| | |
| |
| |
| |
| | |
Removes the sidebar block for ongoing code jams from the main code jam
events page.
|
| | |
| |
| |
| |
| |
| | |
This commit adds in the information about the winners of the code jam.
Additionally, it adds in Code Jam 8 as a prior event in the sidebar.
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Re-ordered and updated the events listed on the main events page.
We're no longer participating in Hacktoberfest, so that was removed.
Game jams was moved to the bottom as we have not hosted one and will not
for the forseeable future.
PyWeek was moved above Advent of Code because AoC is one of the
last events we do in the year so it didn't make sense to have
PyWeek below it.
This also updated the Events Calendar on the sidebar to be accurate for
2021.
|
| | | |
|
| |/ |
|
| |
|
|
| |
Fixes breaking tests
|
| |
|
| |
In accordance with a poll in #dev-contrib, King Arthur becomes the 6th repository featured on the Python Discord homepage.
|
| | |
|
| | |
|
| | |
|
| |\ |
|
| | |
| |
| |
| | |
Not having this timeout could cause a worker to hang indefinitely
|
| | |
| |
| |
| | |
Co-Authored-By: jchristgit <[email protected]>
|
| | | |
|
| |/ |
|
| |
|
|
|
| |
In most cases this won't need to be specified,
so it makes more sense to move it out of the way
|
| | |
|
| |
|
| |
Co-authored-by: Matteo Bertucci <[email protected]>
|
| | |
|
| | |
|
| | |
|
| | |
|
| |\ |
|
| | |\ |
|
| | | | |
|
| | |/
| |
| |
| |
| |
| | |
Fixes a local link that points to a non-existent resource.
Signed-off-by: Hassan Abouelela <[email protected]>
|
| | |
| |
| |
| | |
replit recently updated branding to replit.com, so we now reflect that in our site too.
|
| | | |
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
These changes mainly aim to prevent multiple concurrent requests from
deadlocking the table due to the lazy evaluation imposed by `objects.all()`,
and introduce some quality of life changes whilst doing so.
To prevent unwanted locks, the following is done:
- Instead of evaluating the first item of `objects.all()` only in order to
determine when the table was most recently updated, we query for the least
recent updated entry and use that instead. As we use `.first()`, the model
instance is loaded directly.
The following quality of life changes are introduced:
- Instead of manual "update or create" logic for repositories retrieved from
the API, use Django's `update_or_create` instead.
- Instead of manual bulk creation of entries on initial data retrieve, Django's
`bulk_create` method is used instead.
- To allow for local testing of this endpoint without having to manually set up
GitHub REST authorization, anonymous GitHub access is used when no
`GITHUB_TOKEN` is configured.
|
| | |
|
| | |
|
| | |
|
| |\ |
|
| | |
| |
| |
| |
| |
| | |
Adds Textual, the TUI framework that uses Rich as its renderer to as an
allowed library. It's still under active development though and is not
stable.
|
| | |
| |
| |
| |
| | |
The dates and times on the main event page have been updated to
reflect the changes.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| |
| | |
HTML <pre> tag is adding indention also to result, so I had to remove these.
|