HackerTrans
TopNewTrendsCommentsPastAskShowJobs

pauloxnet

no profile record

Submissions

Pelican 4.12 Released

getpelican.com
2 points·by pauloxnet·3 месяца назад·0 comments

Django ORM Standalone⁽¹⁾: Querying an existing database

paulox.net
2 points·by pauloxnet·4 месяца назад·0 comments

Django ORM Standalone⁽¹⁾: Querying an existing database

paulox.net
1 points·by pauloxnet·5 месяцев назад·0 comments

Django security releases issued: 6.0.2, 5.2.11, and 4.2.28

djangoproject.com
2 points·by pauloxnet·5 месяцев назад·0 comments

[untitled]

1 points·by pauloxnet·6 месяцев назад·0 comments

EktuPy

kushaldas.in
2 points·by pauloxnet·6 месяцев назад·0 comments

Looking Back at Python Pescara 2025

paulox.net
1 points·by pauloxnet·6 месяцев назад·0 comments

Django on the Med: A Contributor Sprint Retrospective

paulox.net
4 points·by pauloxnet·7 месяцев назад·1 comments

AI and Gnome Shell Extensions

blogs.gnome.org
1 points·by pauloxnet·7 месяцев назад·0 comments

How to Use UUIDv7 in Python, Django and PostgreSQL

paulox.net
12 points·by pauloxnet·8 месяцев назад·7 comments

Install PostgreSQL 18 on Ubuntu 25.10

paulox.net
1 points·by pauloxnet·9 месяцев назад·0 comments

Free-Threaded Python on GitHub Actions

hugovk.dev
1 points·by pauloxnet·9 месяцев назад·0 comments

Django Forever · Applied Cartography

jmduke.com
9 points·by pauloxnet·9 месяцев назад·0 comments

My Django on the Med 2025

paulox.net
2 points·by pauloxnet·9 месяцев назад·0 comments

Django: One ORM to rule all databases

paulox.net
65 points·by pauloxnet·9 месяцев назад·82 comments

My DjangoCon US 2025

paulox.net
3 points·by pauloxnet·9 месяцев назад·1 comments

comments

pauloxnet
·7 месяцев назад·discuss
A personal retrospective on organizing a small, standalone Django contributor sprint.

This is a follow-up written three months later, reflecting on what worked, what didn’t, and what kind of value emerged beyond pull requests and GitHub activity.

It’s about keeping things small, human-scale, and focused on being together, rather than optimizing for conference-style output.
pauloxnet
·8 месяцев назад·discuss
Thanks for pointing this out and for sharing the link.
pauloxnet
·8 месяцев назад·discuss
I’ve just updated the article with several clarifications and an additional section based on the feedback received yesterday. Thanks to everyone who contributed suggestions!
pauloxnet
·8 месяцев назад·discuss
Thanks for the comment. In the article I actually show both approaches: Python 3.14’s uuid.uuid7() first, mostly for completeness, and then the recommended one where PostgreSQL 18 generates the UUIDv7 itself using the native uuidv7() function. The DB-side version is already the default path I suggest for anything beyond a simple local setup.

Regarding the timestamp, a dedicated column generated by the database from uuid_extract_timestamp() can be very practical in Django. It is written at insert time by PostgreSQL, defined declaratively in the model with GeneratedField, and handled entirely by the ORM without relying on triggers. It also makes filtering, ordering or using the Django admin faster and simpler, since querying on a proper datetime field avoids extra annotations or computation on the UUID expression.

If you have a reference for UUIDv7 support in MSSQL I’d really appreciate it, ideally from the official documentation. I’m also curious to know from which version it is available and whether the current Django MSSQL backend exposes it already.
pauloxnet
·9 месяцев назад·discuss
I’ve added a list of DjangoCon US 2025 recap articles at the end of my post — but I’m sure I’ve missed some! If you’ve written or seen other recaps, please share the links so I can add them.

I’d also love your feedback on my article