Re: f-strings again.

2020-07-21 Thread laym...@gmail.com
Hi folks, I personally like to use f-strings wherever it makes sense, so +1. I agree with Mariusz. I think we should only allow %-formatting and f-strings from now on. And yes, bulk updates should not be done. Aside from making unnecessary noise, there's always a risk in doing that kind of thin

Set up autolinks on Django's GitHub repositories

2020-08-02 Thread laym...@gmail.com
Hi folks, I came across this feature on GitHub today: https://docs.github.com/en/github/administering-a-repository/configuring-autolinks-to-reference-external-resources In short, it adds autolinks to external resources (e.g. our issue tracker) by referencing them using a prefix in GitHub comment

Re: Set up autolinks on Django's GitHub repositories

2020-08-03 Thread laym...@gmail.com
briefer. > But if this is done, the contribution documentation needs to be updated as > well. > > /Markus > > On Mon, Aug 3, 2020, at 8:06 AM, laym...@gmail.com wrote: > > Hi folks, > > > > I came across this feature on GitHub today: > > > htt

Should django-admin allow specifying hidden directories for --template?

2020-10-01 Thread laym...@gmail.com
Hi everyone, I've been playing around with the --template option for django-admin startproject lately, and I noticed that it ignores hidden directories

Re: Should django-admin allow specifying hidden directories for --template?

2020-10-01 Thread laym...@gmail.com
Hi René, Thanks for the feedback! From my observations, Django does not ignore hidden *files*, it only ignores hidden *directories*. So, the files that you listed should work fine. As for the built-in exclusion list, I'm not sure if we should add that. I think ignoring .git by default is fine,

Re: Participation in GSOC 2021

2020-12-29 Thread laym...@gmail.com
Hi Nishith and Sanju, This is a common question on this mailing list. I believe you can find similar threads with the "gsoc" keyword and find other students who are also looking to participate in GSoC. To start, I'd suggest reading the Contributing Guide https://docs.djangoproject.com/en/3.1/in

Re: Should django-admin allow specifying hidden directories for --template?

2021-01-01 Thread laym...@gmail.com
, > > On 01.10.20 15:56, laym...@gmail.com wrote: > > Thanks for the feedback! From my observations, Django does not ignore > > hidden /files/, > > it only ignores hidden /directories/. So, the files that you listed > > should work fine. > > Ah, my bad, sorry. >

Re: Feature Request: Provide an option to disable static files caching during development

2021-09-27 Thread laym...@gmail.com
I'm +1 on this. In my experience teaching Django at university, this always confuses students: "why are my changes not reflected in the browser?" Having static files caching disabled when DEBUG=True would be very useful. Thanks for bringing this up! Sage On Monday, 27 September 2021 at 20:17:

Re: Add warning or prohibit module level queries?

2021-09-27 Thread laym...@gmail.com
+1, I've had people raising issues that were caused by this. They were using a query to provide a model field's default value. On Sunday, 26 September 2021 at 02:06:21 UTC+7 Adam Johnson wrote: > I noticed I've continued to encounter this problem in code review > relatively frequently, so I mad