All authentication errors from djoser and and simplejwt, how can get them?
We're working on our product and now we need to show these authentication errors to our users (and since our product is bilingual, we may go through some translations and stuff.
I searched a lot and most of the results were dedicated to how to resolve the auth error and not a well-crafted list of those errors. Is there any list of django, djoser and simplejwt errors?
Thanks.
/r/django
https://redd.it/105kqh9
We're working on our product and now we need to show these authentication errors to our users (and since our product is bilingual, we may go through some translations and stuff.
I searched a lot and most of the results were dedicated to how to resolve the auth error and not a well-crafted list of those errors. Is there any list of django, djoser and simplejwt errors?
Thanks.
/r/django
https://redd.it/105kqh9
reddit
All authentication errors from djoser and and simplejwt, how can...
We're working on our product and now we need to show these authentication errors to our users (and since our product is bilingual, we may go...
Djnago chess app, won’t update page ws/game/room_code not found. Do i need another packages then websocket, channels-redis for this?
/r/django
https://redd.it/106fgqb
/r/django
https://redd.it/106fgqb
Search-as-you-type in Django/Django Rest Framework, how would you implement it?
I'm currently exploring a lower level stuff (sockets etc.) as I assume the best way would be to send a request with the `Connection: keep-alive` header and reuse that connection instead of opening and closing one for each character, however it looks like that's not so simple as there is no support for the `Keep-Alive` header in Gunicorn (at least for sync workers). Another idea is to use Django-Channels and WebSocket (although it doesn't make sense as my app won't be listening/waiting for anything other than a single response), is there any good resource about this problem (Keep-Alive, setting async workers, using async workers for a specific endpoint etc.) in relation to Django/Gunicorn?
I also have a different question, how would that look like (let's say I'm going with WebSocket) on a single CPU VPS what's going on when let's say 80 users wants to use my app at the same time, I guess it is Django-Channels (Daphne) responsibility to open as many sockets as it needs and if there are too many they will just process requests/responses very slowly, but what about memory, how much does it consumes and does it just crashes if there are too many
/r/djangolearning
https://redd.it/10636ad
I'm currently exploring a lower level stuff (sockets etc.) as I assume the best way would be to send a request with the `Connection: keep-alive` header and reuse that connection instead of opening and closing one for each character, however it looks like that's not so simple as there is no support for the `Keep-Alive` header in Gunicorn (at least for sync workers). Another idea is to use Django-Channels and WebSocket (although it doesn't make sense as my app won't be listening/waiting for anything other than a single response), is there any good resource about this problem (Keep-Alive, setting async workers, using async workers for a specific endpoint etc.) in relation to Django/Gunicorn?
I also have a different question, how would that look like (let's say I'm going with WebSocket) on a single CPU VPS what's going on when let's say 80 users wants to use my app at the same time, I guess it is Django-Channels (Daphne) responsibility to open as many sockets as it needs and if there are too many they will just process requests/responses very slowly, but what about memory, how much does it consumes and does it just crashes if there are too many
/r/djangolearning
https://redd.it/10636ad
reddit
Search-as-you-type in Django/Django Rest Framework, how would you...
I'm currently exploring a lower level stuff (sockets etc.) as I assume the best way would be to send a request with the \`Connection: keep-alive\`...
Django SASS not updating custom bootstrap (development env)
I'm using django-compressor and django-libsass and have setup a scss file in mysite/static/theme/mytheme.scss
Inside the file I'm changing the primary colour to red for testing.
I'm using Wagtail so it's a multiple site but in my base.html I've added
````
{% compress css %}
<link rel="stylesheet" type="text/x-scss" href="{% static 'theme/' %}{{ current_site.site_name }}.scss" />
{% endcompress %}
````
It used to refresh automatically when I made any changes in mytheme.scss and everything used to work fine but it stopped working and I have a feeling it's when I ran collectstatic.
If I delete the static folder in the root directory it just generated the same CSS file in static/CACHE/css, the css file in there has old CSS in there that isn't updating.
I've tried:
python manage.py collectstatic --clear
python manage.py runserver --nostatic
python manage.py collectstatic --noinput --clear
python manage.py collectstatic --noinput --clear --no-post-process
I've also tried to collectstatic again in hopes it'll collect the changes but it doesn't.
I'm pretty new to this but hopefully that all makes sense.
/r/djangolearning
https://redd.it/1068r88
I'm using django-compressor and django-libsass and have setup a scss file in mysite/static/theme/mytheme.scss
Inside the file I'm changing the primary colour to red for testing.
I'm using Wagtail so it's a multiple site but in my base.html I've added
````
{% compress css %}
<link rel="stylesheet" type="text/x-scss" href="{% static 'theme/' %}{{ current_site.site_name }}.scss" />
{% endcompress %}
````
It used to refresh automatically when I made any changes in mytheme.scss and everything used to work fine but it stopped working and I have a feeling it's when I ran collectstatic.
If I delete the static folder in the root directory it just generated the same CSS file in static/CACHE/css, the css file in there has old CSS in there that isn't updating.
I've tried:
python manage.py collectstatic --clear
python manage.py runserver --nostatic
python manage.py collectstatic --noinput --clear
python manage.py collectstatic --noinput --clear --no-post-process
I've also tried to collectstatic again in hopes it'll collect the changes but it doesn't.
I'm pretty new to this but hopefully that all makes sense.
/r/djangolearning
https://redd.it/1068r88
Reddit
Django SASS not updating custom bootstrap (development env)
4 votes and 2 comments so far on Reddit
This media is not supported in your browser
VIEW IN TELEGRAM
i built the ultimate django rest authentication system including all features and more ... with all validation , also registeration with a code verfication via email and also authentication via email and facebook , if anybody need it just dm me
https://redd.it/105t6ko
@pythondaily
https://redd.it/105t6ko
@pythondaily
Cargo Shipping(export/import)
Hello good morning.i have this project i'm developing and its about exporting and importing like usps/dhl/ups. i have a feature that i want to add but i'm having an issue combining how it will work.
what i want is that i wan after a user to be able to track the list of items in their order like when a user has taken the items to be sent to another country, a shipping record should be created with tarcking number on it, and once a user clicks on that record on their dashboard, it should display all the items on that shipping on another page. and how can one add multiple items to an order using django forms. thats the issue i have and need clarity on. i'm using mvt.
/r/djangolearning
https://redd.it/104r44w
Hello good morning.i have this project i'm developing and its about exporting and importing like usps/dhl/ups. i have a feature that i want to add but i'm having an issue combining how it will work.
what i want is that i wan after a user to be able to track the list of items in their order like when a user has taken the items to be sent to another country, a shipping record should be created with tarcking number on it, and once a user clicks on that record on their dashboard, it should display all the items on that shipping on another page. and how can one add multiple items to an order using django forms. thats the issue i have and need clarity on. i'm using mvt.
/r/djangolearning
https://redd.it/104r44w
reddit
Cargo Shipping(export/import)
Hello good morning.i have this project i'm developing and its about exporting and importing like usps/dhl/ups. i have a feature that i want to add...
A question about mqtt
I used apps.py in one of my applications to spawn a worker that connects to mqtt broker and offload messages to a channel layer. Is this a good approach? It works and everything, I just want to know if it has hidden issues. Check my reply if you want more information.
/r/djangolearning
https://redd.it/104db85
I used apps.py in one of my applications to spawn a worker that connects to mqtt broker and offload messages to a channel layer. Is this a good approach? It works and everything, I just want to know if it has hidden issues. Check my reply if you want more information.
/r/djangolearning
https://redd.it/104db85
reddit
A question about mqtt
I used apps.py in one of my applications to spawn a worker that connects to mqtt broker and offload messages to a channel layer. Is this a good...
Sunday Daily Thread: What's everyone working on this week?
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share.
/r/Python
https://redd.it/1063vg5
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share.
/r/Python
https://redd.it/1063vg5
reddit
Sunday Daily Thread: What's everyone working on this week?
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your...
I created my own discord bot, which has multiple functions including AI(OpenAI API)!
Hi Not much really, I just made a discord bot that has multiple functions and can be fun for small discord servers and stuff(please self host lmao, the replit server is using the free tier and can't handle too many requests).
The features include:
1. chat with you, and answer all your questions.
2. allows you to create custom embeds.
3. allows you to create ascii art from your text.
4. can show the location of the iss.
5. show server member count(Commented out in code, cuz its pretty useless).
6. Show discord server information.
7. can digitally fake punch you.
8. can digitally fake kick you.
9. can digitally fake ban you.
10. do advanced level math, trigonometry & quadratic functions.
​
The source code here available here: https://replit.com/@SapphireKR/Robob-MK-II#main.py
if you would like to show support for my work, you can watch my youtube video demonstrating my bot here: https://www.youtube.com/watch?v=ybRPwztyOEs
and also sub to my channel if you can I guess ¯\\_(ツ)_/¯
​
Also don't forget, if you want to use the bot you will have to host it yourself on replit, since the current replit server I'm using is in the free tier and can't handle that many requests
and of course please generate your own api keys(forking won't take my api keys just
/r/Python
https://redd.it/106grra
Hi Not much really, I just made a discord bot that has multiple functions and can be fun for small discord servers and stuff(please self host lmao, the replit server is using the free tier and can't handle too many requests).
The features include:
1. chat with you, and answer all your questions.
2. allows you to create custom embeds.
3. allows you to create ascii art from your text.
4. can show the location of the iss.
5. show server member count(Commented out in code, cuz its pretty useless).
6. Show discord server information.
7. can digitally fake punch you.
8. can digitally fake kick you.
9. can digitally fake ban you.
10. do advanced level math, trigonometry & quadratic functions.
​
The source code here available here: https://replit.com/@SapphireKR/Robob-MK-II#main.py
if you would like to show support for my work, you can watch my youtube video demonstrating my bot here: https://www.youtube.com/watch?v=ybRPwztyOEs
and also sub to my channel if you can I guess ¯\\_(ツ)_/¯
​
Also don't forget, if you want to use the bot you will have to host it yourself on replit, since the current replit server I'm using is in the free tier and can't handle that many requests
and of course please generate your own api keys(forking won't take my api keys just
/r/Python
https://redd.it/106grra
replit
Robob MK II
Just code for my discord bot, hosted aswell.
Optimizing our longest nightly job — a story of sessions, complexity, and toilets #SQLAlchemy #Performance
https://medium.com/alan/blog-post-optimizing-our-longest-nightly-job-a-story-of-sessions-complexity-and-toilets-750ef4dfaa51
/r/Python
https://redd.it/106fxa6
https://medium.com/alan/blog-post-optimizing-our-longest-nightly-job-a-story-of-sessions-complexity-and-toilets-750ef4dfaa51
/r/Python
https://redd.it/106fxa6
Medium
Optimizing our longest nightly job — a story of sessions, complexity, and toilets
Last year, James (the founding father of the Alan claim engine) shared some details about how the engine works, its requirements and…
SteamGiftBot: Automation of taking part in various distributions.
https://github.com/PalmaLuv/SteamGiftBot
/r/Python
https://redd.it/106hzx0
https://github.com/PalmaLuv/SteamGiftBot
/r/Python
https://redd.it/106hzx0
GitHub
GitHub - PalmaLuv/SteamGiftBot: Software to automate YOUR actions on SteamGift site, turn it on and enjoy it.
Software to automate YOUR actions on SteamGift site, turn it on and enjoy it. - PalmaLuv/SteamGiftBot
Why are Notifications so much work to do in Django?
Notifications seems like a basic requirement that most apps need. I know base Django is supposed to be cleaner/unopinionated but there isn't even a complete package for something this fundamental. For example, Django itself offers little in the way of authentication too but, the AllAuth package takes care of it. Whereas, notifications seems neglected. Plus, other frameworks do address this e.g. https://laravel.com/docs/9.x/notifications .
My team and I have just put dozens of man hours into building a notifications Django app for our Django project. It consists of a Notification model (heavily inspired by this https://github.com/django-notifications/django-notifications) and we've added ways to send notifications, manage which models & which events create notifications and ways for users to manage their preferences.
While django-notifications is a great start and quite popular (1.5k stars) it even says "Sending email to users has not been integrated into this library. So for now you need to implement it if needed". So it's planned but still incomplete. It also offers nothing in the way of controlling which of your models create notifications nor for which event/verb and includes nothing regarding user preferences.
Sorry for the rant, its just what I am wondering is, am I missing something? I guess I
/r/django
https://redd.it/106ll8m
Notifications seems like a basic requirement that most apps need. I know base Django is supposed to be cleaner/unopinionated but there isn't even a complete package for something this fundamental. For example, Django itself offers little in the way of authentication too but, the AllAuth package takes care of it. Whereas, notifications seems neglected. Plus, other frameworks do address this e.g. https://laravel.com/docs/9.x/notifications .
My team and I have just put dozens of man hours into building a notifications Django app for our Django project. It consists of a Notification model (heavily inspired by this https://github.com/django-notifications/django-notifications) and we've added ways to send notifications, manage which models & which events create notifications and ways for users to manage their preferences.
While django-notifications is a great start and quite popular (1.5k stars) it even says "Sending email to users has not been integrated into this library. So for now you need to implement it if needed". So it's planned but still incomplete. It also offers nothing in the way of controlling which of your models create notifications nor for which event/verb and includes nothing regarding user preferences.
Sorry for the rant, its just what I am wondering is, am I missing something? I guess I
/r/django
https://redd.it/106ll8m
Laravel
Notifications - Laravel 12.x - The PHP Framework For Web Artisans
Laravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
This media is not supported in your browser
VIEW IN TELEGRAM
[P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3
/r/MachineLearning
https://redd.it/106q6m9
/r/MachineLearning
https://redd.it/106q6m9
R Rethinking with Retrieval: Faithful Large Language Model Inference - Hangfeng He 2022 - Better performance than Self-consistency!
Paper: https://arxiv.org/abs/2301.00303v1
Abstract:
>Despite the success of large language models (LLMs) in various natural language processing (NLP) tasks, the stored knowledge in these models may inevitably be incomplete, out-of-date, or incorrect. This motivates the need to utilize external knowledge to assist LLMs. Unfortunately, current methods for incorporating external knowledge often require additional training or fine-tuning, which can be costly and may not be feasible for LLMs. To address this issue, we propose a novel post-processing approach, rethinking with retrieval (RR), which retrieves relevant external knowledge based on the decomposed reasoning steps obtained from the chain-of-thought (CoT) prompting. This lightweight approach does not require additional training or fine-tuning and is not limited by the input length of LLMs. We evaluate the effectiveness of RR through extensive experiments with GPT-3 on three complex reasoning tasks: commonsense reasoning, temporal reasoning, and tabular reasoning. Our results show that RR can produce more faithful explanations and improve the performance of LLMs.
https://preview.redd.it/to09kna1jtaa1.jpg?width=640&format=pjpg&auto=webp&s=8dcb8f39aeeed4881e0c32b16e93b4cf0a0cdd7a
https://preview.redd.it/98eucra1jtaa1.jpg?width=1232&format=pjpg&auto=webp&s=67bfa55977883d871f8e2c7a7bcec896dc77d3ab
https://preview.redd.it/cbhq1ra1jtaa1.jpg?width=835&format=pjpg&auto=webp&s=f8ce2233198a9dee80694f69f95051dab59bf009
https://preview.redd.it/ggoowsa1jtaa1.jpg?width=1356&format=pjpg&auto=webp&s=2614cabac91267ba9a8128188f43521074a9567b
/r/MachineLearning
https://redd.it/106ittu
Paper: https://arxiv.org/abs/2301.00303v1
Abstract:
>Despite the success of large language models (LLMs) in various natural language processing (NLP) tasks, the stored knowledge in these models may inevitably be incomplete, out-of-date, or incorrect. This motivates the need to utilize external knowledge to assist LLMs. Unfortunately, current methods for incorporating external knowledge often require additional training or fine-tuning, which can be costly and may not be feasible for LLMs. To address this issue, we propose a novel post-processing approach, rethinking with retrieval (RR), which retrieves relevant external knowledge based on the decomposed reasoning steps obtained from the chain-of-thought (CoT) prompting. This lightweight approach does not require additional training or fine-tuning and is not limited by the input length of LLMs. We evaluate the effectiveness of RR through extensive experiments with GPT-3 on three complex reasoning tasks: commonsense reasoning, temporal reasoning, and tabular reasoning. Our results show that RR can produce more faithful explanations and improve the performance of LLMs.
https://preview.redd.it/to09kna1jtaa1.jpg?width=640&format=pjpg&auto=webp&s=8dcb8f39aeeed4881e0c32b16e93b4cf0a0cdd7a
https://preview.redd.it/98eucra1jtaa1.jpg?width=1232&format=pjpg&auto=webp&s=67bfa55977883d871f8e2c7a7bcec896dc77d3ab
https://preview.redd.it/cbhq1ra1jtaa1.jpg?width=835&format=pjpg&auto=webp&s=f8ce2233198a9dee80694f69f95051dab59bf009
https://preview.redd.it/ggoowsa1jtaa1.jpg?width=1356&format=pjpg&auto=webp&s=2614cabac91267ba9a8128188f43521074a9567b
/r/MachineLearning
https://redd.it/106ittu
D What is the most complete reference on the history of neural networks?
I'm looking for a comprehensive reference on the history of neural networks that covers all significant papers in the field, from the early days up to the current deep learning era, and provides information on their main contributions and inspirations. It would be helpful to have information on how the understanding and perspectives of the research community on neural networks have evolved over time as well.
Do you know of any good references like that?
/r/MachineLearning
https://redd.it/106ixxx
I'm looking for a comprehensive reference on the history of neural networks that covers all significant papers in the field, from the early days up to the current deep learning era, and provides information on their main contributions and inspirations. It would be helpful to have information on how the understanding and perspectives of the research community on neural networks have evolved over time as well.
Do you know of any good references like that?
/r/MachineLearning
https://redd.it/106ixxx
reddit
[D] What is the most complete reference on the history of neural...
I'm looking for a comprehensive reference on the history of neural networks that covers all significant papers in the field, from the early days...
R Greg Yang's work on a rigorous mathematical theory for neural networks
Greg Yang is a mathematician and AI researcher at Microsoft Research who for the past several years has done incredibly original theoretical work in the understanding of large artificial neural networks. His work currently spans the following five papers:
Tensor Programs I: Wide Feedforward or Recurrent Neural Networks of Any Architecture are Gaussian Processes: https://arxiv.org/abs/1910.12478
Tensor Programs II: Neural Tangent Kernel for Any Architecture: https://arxiv.org/abs/2006.14548
Tensor Programs III: Neural Matrix Laws: https://arxiv.org/abs/2009.10685
Tensor Programs IV: Feature Learning in Infinite-Width Neural Networks: https://proceedings.mlr.press/v139/yang21c.html
Tensor Programs V: Tuning Large Neural Networks via Zero-Shot Hyperparameter Transfer: https://arxiv.org/abs/2203.03466
In our whiteboard conversation, we get a sample of Greg's work, which goes under the name "Tensor Programs". The route chosen to compress Tensor Programs into the scope of a conversational video is to place its main concepts under the umbrella of one larger, central, and time-tested idea: that of taking a large N limit. This occurs most famously in the Law of Large Numbers and the Central Limit Theorem, which then play a fundamental role in the branch of mathematics known as Random Matrix Theory (RMT). We review this foundational material and then show how Tensor Programs (TP) generalizes this classical work,
/r/MachineLearning
https://redd.it/105v7el
Greg Yang is a mathematician and AI researcher at Microsoft Research who for the past several years has done incredibly original theoretical work in the understanding of large artificial neural networks. His work currently spans the following five papers:
Tensor Programs I: Wide Feedforward or Recurrent Neural Networks of Any Architecture are Gaussian Processes: https://arxiv.org/abs/1910.12478
Tensor Programs II: Neural Tangent Kernel for Any Architecture: https://arxiv.org/abs/2006.14548
Tensor Programs III: Neural Matrix Laws: https://arxiv.org/abs/2009.10685
Tensor Programs IV: Feature Learning in Infinite-Width Neural Networks: https://proceedings.mlr.press/v139/yang21c.html
Tensor Programs V: Tuning Large Neural Networks via Zero-Shot Hyperparameter Transfer: https://arxiv.org/abs/2203.03466
In our whiteboard conversation, we get a sample of Greg's work, which goes under the name "Tensor Programs". The route chosen to compress Tensor Programs into the scope of a conversational video is to place its main concepts under the umbrella of one larger, central, and time-tested idea: that of taking a large N limit. This occurs most famously in the Law of Large Numbers and the Central Limit Theorem, which then play a fundamental role in the branch of mathematics known as Random Matrix Theory (RMT). We review this foundational material and then show how Tensor Programs (TP) generalizes this classical work,
/r/MachineLearning
https://redd.it/105v7el
PMLR
Tensor Programs IV: Feature Learning in Infinite-Width Neural Networks
As its width tends to infinity, a deep neural network’s behavior under gradient descent can become simplified and predictable (e.g. given by the Neural Tange...
P searchthearxiv.com: Semantic search across more than 250,000 ML papers on arXiv
I just launched searchthearxiv.com, a simple semantic search engine over virtually all ML papers published on arXiv since 2012. The site uses OpenAI's `text-embedding-ada-002` model to match the embedding of your query against each of the paper embeddings, retrieving the ones with the highest cosine similarity. It also allows you to insert an arXiv link to find similar papers.
This was mostly meant as a fun side project. However, if people find it useful, I'm happy to maintain it and keep the database up-to-date. I'd love to know what you think! ❤️
/r/MachineLearning
https://redd.it/106hxgk
I just launched searchthearxiv.com, a simple semantic search engine over virtually all ML papers published on arXiv since 2012. The site uses OpenAI's `text-embedding-ada-002` model to match the embedding of your query against each of the paper embeddings, retrieving the ones with the highest cosine similarity. It also allows you to insert an arXiv link to find similar papers.
This was mostly meant as a fun side project. However, if people find it useful, I'm happy to maintain it and keep the database up-to-date. I'd love to know what you think! ❤️
/r/MachineLearning
https://redd.it/106hxgk
Searchthearxiv
search the arXiv
A simple semantic search engine for ML papers on arXiv
how can i prevent the display of few views for a particular user ? in Flask-Admin
​
Model Views for User named Admin
​
Model Views for User named Preethi
​
From the image you can see that for both the users (Admin and Preethi) the following ModelViews are visible or displayed : Home, Car, Profile, Username, usertest.
I want to prevent the user named Preethi from being able to see the ModelViews Profile and Username.
I want the user named Preethi to only see the ModelViews: Home,Car,usertest.
how do I implement that. I tried user based access and if statements to create these models based on the roles or username, but the model views are created at the program run and not when the form is submitted or when the post request gets fulfilled. Please help me with this.
/r/flask
https://redd.it/106uayl
​
Model Views for User named Admin
​
Model Views for User named Preethi
​
From the image you can see that for both the users (Admin and Preethi) the following ModelViews are visible or displayed : Home, Car, Profile, Username, usertest.
I want to prevent the user named Preethi from being able to see the ModelViews Profile and Username.
I want the user named Preethi to only see the ModelViews: Home,Car,usertest.
how do I implement that. I tried user based access and if statements to create these models based on the roles or username, but the model views are created at the program run and not when the form is submitted or when the post request gets fulfilled. Please help me with this.
/r/flask
https://redd.it/106uayl
Seeking suggestions in order to implement two features to complete my django final year project
1. Live onsite group discussion (kinda live chatroom)
2. Ai based movie recommendation system
So Im about 6 months into Django development.
Currently doing my final year web project. And I was instructed to add these two features on my user based rating recommendation website.
Im totally clueless and paranoid right now.
I just need to know. From where should I start? Any resources that you guys can suggest? I just need to know the correct approach & things I need to learn.
Thank you so much.
/r/django
https://redd.it/106jwca
1. Live onsite group discussion (kinda live chatroom)
2. Ai based movie recommendation system
So Im about 6 months into Django development.
Currently doing my final year web project. And I was instructed to add these two features on my user based rating recommendation website.
Im totally clueless and paranoid right now.
I just need to know. From where should I start? Any resources that you guys can suggest? I just need to know the correct approach & things I need to learn.
Thank you so much.
/r/django
https://redd.it/106jwca
reddit
Seeking suggestions in order to implement two features to complete...
1. Live onsite group discussion (kinda live chatroom) 2. Ai based movie recommendation system So Im about 6 months into Django development....