Masthash

#django

RIPmabry
8 hours ago

i’m going to try and switch careers and teach myself #python (and #django ?). any of you friendly #portland folks (or really anyone who sees this) have tips that aren’t a coding boot camp or college? i come from an (outdated) front end #webdev background circa 2005-2015ish if that matters. mainly looking at python for web/app work possibilities. thanks 😊

Peter
13 hours ago

Welcome to my Kingdome 😉
#abendrunde mit dem Napfbefüller vor der "Haustür" 🤣😂🤣

Einen tollen Wochenstart @all
#django
#dogs
#MastodonDogs
#hunderunde
#dogsofmastodon
#Mastodonrudel
#hunde

Trey Hunner 🐍
14 hours ago

Looking for a good third-party #Django package for something specific?

Find a relevant grid on https://djangopackages.org!

For example you could compare packages for storing the change history on your model instances: https://djangopackages.org/grids/g/model-audit/

Or you could look at TONS of packages related to the Django admin interface: https://djangopackages.org/grids/g/admin-interface/

Just be ready to scroll horizontally! ↔️

I've used Django Packages MANY times to discover & compare packages on a specific topic. 💖

#DjangoJune

adamghill
18 hours ago

I'm liking https://django-ninja.rest-framework.com/ so far, but the lack of async auth is a bummer. I was hoping to use the newish async #django ORM methods. But, overall it's been a delight and an easy transition from #fastapi.

https://old.reddit.com/r/django/comments/13zg8uw/django_ninja_architecture/jmtdumm/ mentions my basic approach.

Finally finished migrating my website https://hadi.timachi.com from an old :django: #Django version to a website generated from static :emacs: #OrgMode / #Markdown / #HTML files with photogallery support and served by :python: #FastAPI / #Uvicorn 🙂 . The code can be found at #codeberg https://codeberg.org/haditim/SereServe

Mariusz Felisiak
1 day ago

My May 🧓🏴󠁧󠁢󠁳󠁣󠁴󠁿🍻 #Django Fellow stats 🦄 💚:

Triaged: 5️⃣6️⃣ 🎫
Reviewed/committed: 3️⃣3️⃣ PR
Authored: 1️⃣1️⃣ PR

Trey Hunner 🐍
1 day ago

In Django, I typically make a get_absolute_url method for many of my models.

That method should point to the URL for each model instance. #Django uses that method to make a "View on site" button in the admin interface, but it's also handy in templates, views, and tests.

More info on get_absolute_url in the #Django docs: https://docs.djangoproject.com/en/4.2/ref/models/instances/#get-absolute-url

#DjangoJune

Tim Schilling
2 days ago

Sat morning #Django thought:

Could migrations be improved if we store a hash of the migration file itself in the django_migrations table to help identify when a person changes a migration file after it's been applied?

Peter
2 days ago

#siesta für #django
Warum einfach, wenn's auch kompliziert geht😉
#dogs
#MastodonDogs
#dogsofmastodon
#Mastodonrudel
#hunde

Leonberger schläft auf Balkon unter dem Tisch
Dan Sloan
2 days ago

Well, that’s a wrap for my first #djangoconeurope (and first #python or #Django conf at all).
I’ll write a blog post soon, as I have many thoughts, but the first and biggest thought;

I knew Django has a welcoming and friendly community around it, but something I didn’t know was that this isn’t incidental - it’s not some organic accident of nature. Members work *incredibly* hard to intentionally make sure it remains that way. It shines through in every aspect of a conference like this.

Pinetta
2 days ago

Going through #Codeberg issues to clear up next steps for #Pinetta's technical framework. Much of the work on this side has been hashing out the database schema and setting up a #Django prototype with a custom user model. @amthecoat@mastodon.social worked hard on this and we now have a codebase that runs a very basic site that implements new account creation, log in and log out.

Feel like checking it out? Pull the feature/user-model branch of the prototype repo and follow the steps in the README! (Make sure you have
#Python 3.11 installed.)

https://codeberg.org/pinetta/proto-pinetta/src/branch/feature/user-model

Peter
2 days ago

@sardegna yepp macht #django auch öfter

Markus Holtermann
3 days ago

Ahhhh. #Django signals.

A screenshot from Sentry's performance tab showing around 50 Django signal invocations for the "update_dimension_fields" signal, while no dimension fields are in use.
Trey Hunner 🐍
3 days ago

Note that this doesn't work in tests by default because #Django's DEBUG setting is set to False when testing and connection.queries is only populated when DEBUG is set to True.

If you're checking query counts in tests, use assertNumQueries or pytest-django's django_assert_num_queries.

https://docs.djangoproject.com/en/4.2/topics/testing/tools/#django.test.TransactionTestCase.assertNumQueries

https://pytest-django.readthedocs.io/en/latest/helpers.html#django-assert-num-queries

Robin Kipp
3 days ago

Spent today working on a #Python and #Django project, but solely using #Visual Studio Code on Mac with VoiceOver as my IDE for the first time. Quite pleased with how it all went overall, with this being an #Electron app there definitely are some instances where VO focus will jump around unexpectedly, there also seems to be a sporadic issue of text no longer showing on my Braille display in the editor after navigating quickly. Still need to learn more of the bells and whistles that this beast has to offer, 2 of my favorite features so far are definitely audio cues and launch profiles, code completion suggestions also seem to be at a whole new level compared to what I’ve seen in other IDEs. #VSCode #Accessibility

Trey Hunner 🐍
3 days ago

Want to see the latest SQL query #Django ran?

>>> from django.db import connection
>>> print(connection.queries[-1]['sql'])
SELECT "users_user"."id", "users_user"."password", "users_user"."email", "users_user"."is_staff" FROM "users_user"

We can see how many queries we've run (within the current process):

>>> len(connection.queries)
3

And the time each query took to run:

>>> [q['time'] for q in connection.queries]
['0.004', '0.514', '0.148']

Each query has 'sql' & 'time' keys.

#DjangoJune

Mariusz Felisiak
3 days ago

Please give a warm welcome to Nina Menezes 🤗 Django contributor :django: 💚 no. 2400! 📢 Welcome aboard ⛵ #django #djangoconeurope

https://github.com/django/django/commit/27fed08e5ff597c813de25b6e89dc300a1f4231b

Juanjo Salvador
3 days ago

The Dinoseto has a child! I can't avoid #DjangoConEurope next year at Vigo. I just want to go to visit this.

And also because I really love #django community <3

Timo Zimmermann
3 days ago

I just moved 19 models (700 LOC) to a new app, ran migrations on 25GB data and the only thing I had to fix was a seed file referencing the old app. 1600 LOC total changed.

If you’d have told me I’d do a refactor like this at 9am while having my second coffee twenty years ago I’d have laught, sobbed and then prepared for a week of painfully fixing random bugs.

#django is boring. And that’s a good thing. Also kudos PyCharm, „refactor - move file“ actually works :)

kariscodes
3 days ago

The MVT pattern, which is used in #django , is an adaptable web development pattern that can be used to create applications that are both high-quality and user-friendly. I recommend learning about the MVT pattern if you are new to web development using Django. It is a great starting point for creating web applications.

#webdevelopment #pythonprogramming #django #html

Joseph Kariuki
3 days ago

The MVT pattern, which is used in #django , is an adaptable web development pattern that can be used to create applications that are both high-quality and user-friendly. I recommend learning about the MVT pattern if you are new to web development using Django. It is a great starting point for creating web applications.

#webdevelopment #pythonprogramming #django #html

MVT in Django Web framework
Description of  MVT in Django
Illustration of the MVT location in a Django project
Florimond Manca (en)
3 days ago

The same applies to web development stacks.

#HTML is good actually. So, yay for a backend language with template based #HTML generation, with controlled sprinkles of #JavaScript here and there. #Turbo #Stimulus

(I also find #Symfony better designed and somehow with more batteries included to allow this kind of simplicity than, say #Django, so again, maybe that’s why.)

markwalker
3 days ago

I've written some thoughts on #django settings, inspired by this week, because it's so rare to see people sticking with a single settings file.

https://markw.co.uk/single-settings/django-simple-settings/

Trey Hunner 🐍
4 days ago

I plan to post something Django-related every day this month, using the hashtag #DjangoJune.

If you have a #Django tip, discussion, or idea of your own to share, feel free to tag it with #DjangoJune too.

Mariusz Felisiak
4 days ago

Bye bye Edinburgh 👋🏴󠁧󠁢󠁳󠁣󠁴󠁿 Many thanks to all organizers and attendees for wonderful Django Con 🦄 💚 and #sprints 🌟🏆 #djangoconeurope #django

Mike (Multiverse of Badness)
4 days ago

Gonna leverage pymemcache for rate limiting in my #python #fediverse program

Every day I'm having to implement new packages I've never leveraged before writing the #JenkWerx web #framework - trying to stick to the "big bois" and not go obscure

..and sure, using #django or #flask woulda been easier (my friends remind me if that constantly) but it's been a learning experience to get under the hood a bit more for sure!

Luis Natera
4 days ago

What are your takes on #FastAPI as an alternative to #Django ? I’ve been working with both and my preference is still with Django. Anyone in the other side?

DarkeSword
4 days ago

#Introduction

Hey all! Been hanging out here for a while so I figured I’d intro myself.

I’m Shariq, better known as DarkeSword. By day I’m a #python / #django developer working at a major university. By night I’m an arranger/producer who’s been a longtime member of the #vgm / #gamemusic scene. You may have heard my stuff on #ocremix. I’ve been playing video games since the early NES days and writing music since high school.

Glad to be here. :)

Craig Anderson
5 days ago

I’m Craig. I was born in the Kulin nation (Melbourne), Australia, but live in #Glasgow because I love it, I can afford it, and warm weather is overrated.

I’m a straight mediocre white guy, who lucked into the privilege which comes with that. I’m trying to use that privilege to help folk who have less of it.

I work as a freelance web product developer using #Django.

Outside of this I like to get nerdy about #coffee and #beer. Still follow #WesternBulldogs in #AFL.

#introduction

Paolo Melchiorre
5 days ago

Mark Smith is giving the closing session of the DjangoCon Europe 2023 in Edinburgh with all the organizers and volunteers 🏴󠁧󠁢󠁳󠁣󠁴󠁿🦄🚀

#DjangoCon #DjangoConEurope #Django #Conference #Edinburgh #Scotland #volunteers

CC @djangoconeurope @judy2k

Mark Smith is giving the closing session of the DjangoCon Europe 2023 in Edinburgh with all the organizers and volunteers
Python Weekly
5 days ago

I have published the slides of the talk I gave on Monday at DjangoCon Europe 2023 in Edinburgh 🦄🏴󠁧󠁢󠁳󠁣󠁴󠁿🇪🇺

On my site you will also find other information related to the talk 👇
https://www.paulox.net/2023/05/29/djangocon-europe-2023/

#DjangoConEU #DjangoConEuroppe #DjangoCon #Django

CC @djangoconeurope

Paolo Melchiorre
5 days ago

Tom Dyson is presenting the talk "Use SQLite in production" at the DjangoCon Europe 2023 in Edinburgh 🏴󠁧󠁢󠁳󠁣󠁴󠁿🇪🇺🇬🇧

#DjangoConEuroppe #DjangoCon #Django #WomenInTech #GenderBiases

CC @djangoconeurope @wagtail @tomdyson

https://pretalx.com/djangocon-europe-2023/talk/J98ZTN/

Tom Dyson on the stage of the DjangoCon Europe 2023
Paolo Melchiorre
5 days ago

Ester Beltrami is presenting the talk "Gender Bias in Tech: Examining Evolution & Persistence of Stereotypes" at the DjangoCon Europe 2023 in Edinburgh 🏴󠁧󠁢󠁳󠁣󠁴󠁿🇪🇺🇮🇹

#DjangoConEuroppe #DjangoCon #Django #WomenInTech #GenderBiases

CC @djangoconeurope @pycon @strawberry @wagtail @ester

https://pretalx.com/djangocon-europe-2023/talk/EBHVBD/

Ester Beltrami on the stage of the DjangoCon Europe 2023
Peter
5 days ago

#mittagsrunde mit dem Napfbefüller
Viel zu heiß fürs Laufen
Aber ich kann mich ja abkühlen

Euch noch nen tollen Tag
#django
#dogs
#MastodonDogs
#hunderunde
#dogsofmastodon
#Mastodonrudel
#hunde
#Wewelsburg

Paolo Melchiorre
5 days ago

David Smith is presenting the talk "Good form: How Django’s form rendering improved during the 4.x series" at the DjangoCon Europe 2023 in Edinburgh 🏴󠁧󠁢󠁳󠁣󠁴󠁿🦄🚀

#DjangoConEuroppe #DjangoCon #Django #Form #accessibility

CC @djangoconeurope @davidsmith

https://pretalx.com/djangocon-europe-2023/talk/MEYRMW/

David Smith on the stage of the DjangoCon Europe 2023
Mariusz Felisiak
5 days ago

David Smith 🌠 @davidsmith is giving a talk about new goodies in Django Forms 🧱 on DjangoCon Europe 🏴󠁧󠁢󠁳󠁣󠁴󠁿 exciting 🥳 #djangoconeurope #django

David Smith giving a talk about Django forms on the Django Con Europe
Paolo Melchiorre
5 days ago

Laurent Tramoy is holding the workshop "Mastering the Django ORM with PostgreSQL" at DjangoCon Europe 2023 in Edinburgh 🦄🏴󠁧󠁢󠁳󠁣󠁴󠁿🇪🇺

#DjangoCon #DjangoConEU #DjangoConEurope #Django #ORM #Postgres #PostgreSQL

CC @djangoconeurope

https://pretalx.com/djangocon-europe-2023/talk/DK3XET/

Laurent Tramoy holding a workshop at DjangoCon Europe 2023
Paolo Melchiorre
5 days ago

Nicolas Noé is presenting the talk "Django for life (sciences)" at the DjangoCon Europe 2023 in Edinburgh 🏴󠁧󠁢󠁳󠁣󠁴󠁿🦄🚀

#DjangoConEuroppe #DjangoCon #Django #Sciences

CC @djangoconeurope

https://pretalx.com/djangocon-europe-2023/talk/YN987S/

Nicolas Noé on the stage of the DjangoCon Europe 2023

Mark Smith is welcoming people to the third day of the DjangoCon Europe 2023 in Edinburgh 🏴󠁧󠁢󠁳󠁣󠁴󠁿🦄🚀

#DjangoCon #DjangoConEurope #Django #conference #edinburgh #scotland

CC @djangoconeurope @judy2k

Mark Smith on the stage of the DjangoCon Europe 2023
Paolo Melchiorre
6 days ago

Karen Jex is presenting the talk "Tuning PostgreSQL to work even better" at the DjangoCon Europe 2023 in Edinburgh 🏴󠁧󠁢󠁳󠁣󠁴󠁿🦄🚀

#DjangoConEuroppe #DjangoCon #Django #Postgres #PostgreSQL

CC @djangoconeurope

https://pretalx.com/djangocon-europe-2023/talk/BT7XGG/

Karen Jex on the stage of the DjangoCon Europe 2023
Paolo Melchiorre
6 days ago

Carlton Gibson is presenting the talk "Yak-shaving to Where the Puck is Going to Be" at the DjangoCon Europe 2023 in Edinburgh 🏴󠁧󠁢󠁳󠁣󠁴󠁿🦄🚀

#DjangoConEuroppe #DjangoCon #Django #LocalityBehaviour #Neapolitan #ClassBasedView

CC @djangoconeurope @carlton

https://pretalx.com/djangocon-europe-2023/talk/P9M8BL/

Carlton Gibson on the stage of the DjangoCon Europe 2023
Mariusz Felisiak
6 days ago

@carlton Carlton Gibson 🌟 giving Yak 🐂 shaving talk at DjangoCon Europe 📢 🏴󠁧󠁢󠁳󠁣󠁴󠁿 #djangoconeurope #Django

Carlton Gibson on the stage giving a talk

Tim Bell is presenting the talk "Do the holes in Swiss cheese leak abstractions?" at the DjangoCon Europe 2023 in Edinburgh 🏴󠁧󠁢󠁳󠁣󠁴󠁿🦄🚀

#DjangoConEuroppe #DjangoCon #Django #abstractions

CC @djangoconeurope @timb07

https://pretalx.com/djangocon-europe-2023/talk/9K73YH/

Tim Bell on the stage of the DjangoCon Europe 2023
Paolo Melchiorre
6 days ago

Raphael Michel is presenting the talk "Building and scaling a live event platform with django-channels" at the DjangoCon Europe 2023 in Edinburgh 🏴󠁧󠁢󠁳󠁣󠁴󠁿🦄🚀

#DjangoConEuroppe #DjangoCon #Django #Channels #Websockets

CC @djangoconeurope @rami

https://pretalx.com/djangocon-europe-2023/talk/MYWHXB/

Raphael Michel on the stage of the DjangoCon Europe 2023

Mark Smith is welcoming people to the second day of the DjangoCon Europe 2023 in Edinburgh 🏴󠁧󠁢󠁳󠁣󠁴󠁿🦄🚀

#DjangoCon #DjangoConEurope #Django #conference #edinburgh #scotland

CC @djangoconeurope @judy2k

Mark Smith on the stage of the DjangoCon Europe 2023
Trey Hunner 🐍
1 week ago

I'm planning to share #Django-related tips and ideas every day in June.

If you're interested in sharing or following along, I'd love for you to join me with the hashtag #DjangoJune.

What would you like to see during #DjangoJune?

Joseph Kariuki
1 week ago

You should concentrate on a few essential ideas as a beginning studying Django in order to establish a strong foundation. It's crucial to remember that learning Django entails building projects. You will be able to practice these ideas and become proficient in Django development by following tutorials, reviewing the official documentation, and working on small projects. 😀
#webdevelopment #django #pythonprogramming #backenddevelopment

Dan Sloan
2 weeks ago

Ok, I’m excited for (my first) #djangocon next week … but I am not excited for this… 25 hours of travel.
Still, I’ll be spending 2.5 months in Europe to make it feel more worthwhile. Also avoiding the rest of Melbourne winter which I am quite literally allergic to. I will remind myself of this frequently while in transit. 😬
#django #travel #djangoconeurope

Itinerary summary showing “Melbourne to London” with a duration of “25 hr 15”
sephi
2 weeks ago

Prochain #Django meetup le vendredi 2 juin avec une présentation surprise! 🤓 Infos et inscription sur l’événement Meetup: https://www.meetup.com/django-suisse-romande/events/293718314/

#lausanne #web #programming

Mariusz Felisiak
2 weeks ago

We have 4 new Django contributors 🎉 🤩 A warm welcome to Arthur, Andrii, Mohit, and gtleee 🎁 🤗 It was a good day 🧘 💚 #django #opensource

GentlemanFinnGPT
2 weeks ago

🚨 ADVARSEL! Du kan risikere at blive min kollega 🚨

Hvis du kan noget med #React og/eller #Django og leder efter noget (nyt) at rive i, så har vi lige slået 3 stillinger op som hhv.

Frontend-udvikler: https://www.ofir.dk/jobs/frontend-udvikler-ofir-as-gladsaxe-2238246/
Backend-udvikler: https://www.ofir.dk/jobs/backend-udvikler-ofir-as-gladsaxe-2238239/
Tech lead: https://www.ofir.dk/jobs/tech-lead-ofir-as-gladsaxe-2238232/

Hyggelig arbejdsplads, søde kollegaer (altså alle de andre).

Husk at et jobopslag er en ønskeliste, ikke en facitliste, fra arbejdsgivers side. Og husk at sige du fandt opslaget via Fediverset :)

Tim Schilling
2 weeks ago

I'm pretty convinced #Django would be well served with an advanced migrations tutorial. I think a hands on walk through of the concepts of each layer in respect to your data model combined with forays into real world problems would uplift newer devs.

Kicking out this big javascript component and replacing it with a #django and #htmx view feels better and better. Need to create a video of the resulting component someday next week.

Peter
2 weeks ago

Hilferuf an all Fellnasen Besitzer mit großen Hunde
#django kann ich das gerade nicht zumuten
Blutspender gesucht Dringend
Bitte, bitte boosten oder direkt Kontakt aufnehmen bei Telefonnummer im Bild

#blutspende
#dogs
#MastodonDogs
#dogsofmastodon
#Mastodonrudel
#hunde

adamghill
2 weeks ago

I've still been working on `Unicorn`, but it's been a while since there was a new release. But, there are lots of fixes in 0.51.1 to make building interactive Django websites even more magical! ✨

- PyPI: https://pypi.org/project/django-unicorn/
- Changelog: https://www.django-unicorn.com/docs/changelog/#v0-51-0
GitHub: https://github.com/adamghill/django-unicorn

🦄

#django #python #html #javascript #ajax

Python Weekly
2 weeks ago

Kicking out a complex JavaScript component from a project and replacing it with a way easier to manage combination of HTML, HTMX and Tailwind feels so good. It is already way faster then before, and with some extra caching in the #django backend it will be even faster.

Dan Jacob
2 weeks ago

And got something working (simple chatrooms app):

https://github.com/danjac/dissonance

It uses the HTMX SSE extension to handle events generated using PostgreSQL LISTEN/NOTIFY.

The result is a bit hacky but it works...while I had to deal with the usual head-scratching over async, it's much simpler than the usual channels/redis setup.

#django #htmx #postgresql

Dan Jacob
3 weeks ago

This looks delightfully simple: hooking up SSE events with #django StreamingHttpResponse and #PostgreSQL LISTEN/NOTIFY

https://valberg.dk/django-sse-postgresql-listen-notify.html

Now that you’ve all found 4.2’s async streaming support, can someone port this blog post to #django please? Ta! 🦄

https://medium.com/airbnb-engineering/improving-performance-with-http-streaming-ba9e72c66408

Benjamin Balder Bach
3 weeks ago

Very awesome 🕶️ @valberg wrote up a super blog post about using the new StreamingHttpResponse in #Django 4.2, combined with async psycopg3 and #postgresql's "LISTEN/NOTIFY" to have async real time events!

This feels like the start of something big!

https://valberg.dk/django-sse-postgresql-listen-notify.html

CC: @carlton

Trey Piepmeier
3 weeks ago

Still getting things polished up. Fine tuning the (super easy to use!) installation script and good stuff like that. Sign up for the newsletter to know when it's ready to try!

https://blaze.horse

https://buttondown.email/blaze.horse

#Django #ShamleessSelfPromotion

Trey Piepmeier
3 weeks ago

Getting ready to share my new project with the world. Do you know anybody who would be into this?

https://blaze.horse/

#Django #ProgressiveEnhancement

I've just released django-schema-graph v3! 🎉

It now has an improved graph-editor, better support for proxy-models, and fewer bugs...hopefully.

You can find it at https://github.com/meshy/django-schema-graph

#django #python #opensource

Python Weekly
3 weeks ago
Claire Giordano ✨
3 weeks ago

Mixed among my other toots, I plan to share 1 video/day from Citus Con: An Event for Postgres, for the next 37 days! 📺 Why? Because I was on the talk selection team & know how great these talks are. 💥

The 1st is from @simon, one of 2 keynote speakers, about "Big opportunities in small data"

Simon is the creator of Datasette & co-creator of #django. His talk has demos & ideas about things PostgreSQL could do in the future with small data

https://aka.ms/cituscon-simonw-2023

#PostgreSQL #CitusCon #data

Mariusz Felisiak
3 weeks ago

Thanks to Lily Foote @lilyf 🎁 🎆 for a humongous effort working on database defaults in Django 5.0! 🎉 18 years after the ticket was created 🧓 Django 5.0 supports database defaults 🌟

.. and we still have 4 months to the Django 5.0 feature freeze 🔥

#django #python #opensource

https://github.com/django/django/commit/7414704e88d73dafbcfbb85f9bc54cb6111439d3

Matthias K
4 weeks ago

The #Django Software Foundation meeting minutes are now available as a RSS feed! Lovely.

https://www.djangoproject.com/rss/foundation/minutes/

pretix
4 weeks ago

Jobs! Jobs! Jobs!

Wir suchen:

a) eine Servicetechnikerin Hardware 🔧 (w/m/d/-) in unserem Büro in #Heidelberg

Details: https://pretix.eu/about/de/job/service

b) eine Sofwareentwicklerin 💻 (m/w/d/-) für
#Django Projekte – remote!

Details: https://pretix.eu/about/de/job/software

Also wenn ihr da jemanden kennt, dann sagt doch mal Bescheid 😉

#jobs #fedijobs #django #vacancy #remote

Das Bild enthält Teile des Toot-Textes nochmal in sehr groß. Weil Toots mit Bilder mehr Aufmerksamkeit generieren, oder so ähnlich. ;)

Got my @djangoconeurope t-shirt, and my **unopened** LRB Vol45 No9 ready for the reading group. 🥰

I think I'm ready to go! 💃

Will I be seeing you in Edinburgh? 🏴󠁧󠁢󠁳󠁣󠁴󠁿

#django #LRB

My DjangoCon Europe 2023 t-shirt and The London Review of Books Vol45 No9, still in its wrapper.
Mariusz Felisiak
4 weeks ago

My shiny DjangoCon Europe 2023 t-shirt just arrived 🎁 exactly on my birthday 🎂🥳 coincidence? I don't think so 😉 now I'm ready 🎉🏴󠁧󠁢󠁳󠁣󠁴󠁿 @djangoconeurope #django #swag #conference

DjangoCon EU 2023 t-shirt
Will Vincent
4 weeks ago

Is there a canonical list of Django consulting agencies out there? I'd like to highlight Django-focused shops that are engaged in the community.

Off the top of my head:
- RevSys
- Lincoln Loop
- Six Feet Up
- Caktus Group
- Torchbox
- Vinta Software
- CodeRed
- JBS Solutions
- Swah Softweb Solutions
- Oddbird
- Netlandish

Apologies in advance as I'm sure I am missing others. Help me out Fosstodon! #django

Martin De Wulf
4 weeks ago

Oh, nice, there will be a first Djangocon in Africa in November.

https://www.djangoproject.com/weblog/2023/may/10/announcing-djangocon-africa-2023/

This is quite precisely at the intersection of some of my interests and of Bluesquare, where I am CTO.

#django #djangocon #africa