Re: Using JavaScript to enumerate a dataset returned to a page.

2023-06-19 Thread Robin Riis
With vanilla js

for(let i = 1; i < myArray.length; i += 1) {
document.log("index: " + i);
document.log(myArray[i] + "\n");
}

Wrote this on my phone so may contain some fault, but a for-loop is
sufficent.

On Mon, Jun 19, 2023, 16:29 Lee Stevens  wrote:

> Helo,
>
> I have a dataset returning to a page.  I need JavaScript to be able to
> process this.
>
> Instead of using:
> {% for item in dataset %}
> {{ item.field1 }}
> {{ item.field2 }}
> {% endfor %}
>
> Is there a *JavaScript* way to read this dataset/variable instead?
>
> Thanks.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/37febb44-36e2-47ca-9eff-7011c4e9b963n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPLZMbPghY%2BCAEW6G3T2qC1w7GM5P0TkCZ_XedtANcmbsSmo7w%40mail.gmail.com.


Demo of CVE-2023-31047 patch

2023-06-19 Thread optimusprime fig
 Hi all, I'm really hoping some may be able to help me with this as I am at
a loss trying to understand the identified vulnerability:
https://nvd.nist.gov/vuln/detail/CVE-2023-31047, how Django was patched to
protect against multiple file uploads bypassing validation and how to
demonstrate the vulnerability pre-patch, then how to demonstrate it post
patch.

To try and understand it further I have created two Django projects, one
with Django 3.1.2 and one with with Django 4.2.2. I have then branched the
two Django projects, as follows, one branch of each version has no
validation in the and one has file extension validation plus full_clean()
in views.py. If anyone is able to have a look at the Github repositories
and give their expert opinion that would be very much appreciated!

Django Version 3.1.2 branch with no validation:
https://github.com/5t00g1t/simplefileupload/blob/view-with-no-validation-in-for-loop/djangofilesupload/filesupload/views.py
Django Version 3.1.2 branch with validation:
https://github.com/5t00g1t/simplefileupload/blob/view-has-try-and-full_clean()-for-validation-in-for-loop/djangofilesupload/filesupload/views.py
Django Version 4.2.2 branch with no validation:
https://github.com/5t00g1t/simplefileuploadnew/blob/view-with-no-validation-in-for-loop/djangofilesupload/filesupload/views.py
Django Version 4.2.2 branch with validation:
https://github.com/5t00g1t/simplefileuploadnew/blob/view-has-try-and-full_clean()-for-validation-in-for-loop/djangofilesupload/filesupload/views.py

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPBNwv%2BEz-EPLQbchNtR%3Do-GACmpVoFa2GjvSGwazNwCTe2UDQ%40mail.gmail.com.


Re: Suggestions for Reducing Spam

2023-06-19 Thread o1bigtenor
On Mon, Jun 19, 2023 at 1:03 PM Gobi Dasu  wrote:

> Great points Abhishek, Paul, and John,
>
> +1 for the separate group with a bit of nuance:
>
> The openai api integration might consider rerouting content to different
> groups rather than blatantly marking a message that someone has taken
> effort to write as "bad".
>
> I think that a lot of the Django developers in this group may be looking
> for roles, and we for one are always looking to hire good Django developers
> and lifelong learners.
>
> However, I think that the protocol has to be made clear:
> - post in this group A if you are hiring django developers (like me)
> - post in this group B if you are seeking a django role
> - post in this group C if you are seeking a solution to a django issue
>
> And finally, kindness and forgiveness to all people should be highly
> encouraged.
>
> snip - - - imo its the repeated offenders who need to just get black
listed.

sorta like - - - once - - - ignore the faux pas
second time - - - please do not do this any more
third time - - - have a good life buddy - - - - except somewhere else!

the sheer number of people asking for jobs likely is killing this site - -
- supposedly
a get help site - - - I for one find that people who can't follow clear
directions tend
to also mix up other kinds of things as well.

HTH

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPpdf58Ph9t-OBuk%2BkhsN8riCrz8%2BJC2x4BSTuBgXARv4vi6vQ%40mail.gmail.com.


Channels SyncConsumers locking up Uvicorn/Websockets

2023-06-19 Thread Tim Nelson
We have had the occasional case where it appears a given SyncConsumer
hangs. These seem to starve Channels of ASGI threads, eventually breaking
all clients that are trying to send or connect.

Is there any way to build in a timeout, meaning if a SyncConsumer doesn't
finish its request in (say) 5 seconds to interrupt it?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK09zoo3%2B0yjFiappMDEtZk99PNAO6aU7mUO9zVhSaNVondYEw%40mail.gmail.com.


Re: Suggestions for Reducing Spam

2023-06-19 Thread Gobi Dasu
Great points Abhishek, Paul, and John,

+1 for the separate group with a bit of nuance:

The openai api integration might consider rerouting content to different
groups rather than blatantly marking a message that someone has taken
effort to write as "bad".

I think that a lot of the Django developers in this group may be looking
for roles, and we for one are always looking to hire good Django developers
and lifelong learners.

However, I think that the protocol has to be made clear:
- post in this group A if you are hiring django developers (like me)
- post in this group B if you are seeking a django role
- post in this group C if you are seeking a solution to a django issue

The only problem is that there are borderline cases. Sometimes people are
facing a django issue, like recently I have heard about templates being
slow, even though Django does optimize template loading. Someone facing
that might try to debug it themselves seeking just informational help
(which is what I did) but in other cases, they might be open to working
with a developer from this group on an hourly basis (which is the kind of
thing I have done with developers before).

Hence it's important to consider the nuances, as we might lose people from
the community if we make things too difficult. At the same time, the
content quality and protocols should be clear.

And finally, kindness and forgiveness to all people should be highly
encouraged.

Regards,
Gobi Dasu  ·
ldtalentwork.com
Stanford CS · Northwestern HCI
Calendar  · Demo
 · PM Service
 · Join our
Investors 


On Sun, Jun 18, 2023 at 11:45 AM John Ayodele 
wrote:

> Wow!
> The idea is totally beautiful.
>
> I go for your idea.
>
> On Sun, Jun 18, 2023 at 5:14 PM Paul Kudla  wrote:
>
>>
>> a django jobs posting group would probably be best
>>
>> i admit i have used this group for looking for professional help etc but
>> always move off to the side if someone respond's
>>
>> i too have seen recently google looking for programmers etc which has
>> nothing to do with this group ??
>>
>> fyi
>>
>>
>>
>> Happy Sunday !!!
>> Thanks - paul
>>
>> Paul Kudla
>>
>>
>> Scom.ca Internet Services 
>> 004-1009 Byron Street South
>> Whitby, Ontario - Canada
>> L1N 4S3
>>
>> Toronto 416.642.7266
>> Main 1.866.411.7266
>> Fax 1.888.892.7266
>> Email p...@scom.ca
>>
>> On 6/18/2023 12:04 PM, Abhishek Choudhury wrote:
>> > Hi Django User Group Admins,
>> >
>> > I hope this email finds you well.
>> >
>> > I'm writing this to discuss the recent influx of spam emails in our
>> > group. As we know, this group is a great resource for Django developers
>> > to learn, share, and collaborate. However, in the past few months,
>> we've
>> > seen an increase in emails that are unrelated to Django, such as job
>> > postings and promotional materials.
>> >
>> > I understand that some people may want to use the group to post job
>> > listings, but I believe that these emails are disruptive and detract
>> > from the purpose of the group. I've also noticed that some people are
>> > responding to these emails, which only encourages more spam.
>> >
>> > I've been thinking about ways to address this issue, and I have a few
>> > ideas. One idea is to create a separate Google group for job postings.
>> > This would allow people who are looking for jobs to connect with each
>> > other, while keeping the Django_users group focused on Django-related
>> > content.
>> >
>> > Another idea is to develop a Zapier + OpenAI plugin that can detect the
>> > type of email (sentiment analysis) and then mark it as spam or
>> > non-Django related, add automated reply and mute it. This would help to
>> > automatically filter out spam emails, so that they don't clutter up our
>> > group's inbox.
>> >
>> > I'm not sure which of these ideas is the best solution, but I wanted to
>> > get your thoughts on the matter. What do you think about the recent
>> > influx of spam emails in our group? Do you have any suggestions for how
>> > we can address this issue?
>> >
>> > I'm happy to help in any way I can. Please let me know if you have any
>> > questions.
>> >
>> > Thank you for your time.
>> >
>> > With kind regards,
>> > Abhishek Choudhury
>> >
>> > --
>> > You received this message because you are subscribed to the Google
>> > Groups "Django users" group.
>> > To unsubscribe from this group and stop receiving emails from it, send
>> > an email to django-users+unsubscr...@googlegroups.com
>> > .
>> > To view this discussion on the web visit
>> >
>> https://groups.google.com/d/msgid/django-users/CA%2B3kJUaoGRXy47q6wUFyYtn4u3YO1rm1gZJR4rYNcEXizxEnOg%40mail.gmail.com
>> <
>> 

Re: associate Developers for Google

2023-06-19 Thread Daniel Joseph
Yes I'm in

On Sat, Jun 17, 2023, 3:09 PM Lucifer Black 
wrote:

> Is there anyone that wants a job at google developer at home looking for
> three people
>
>
> Get Outlook for Android 
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/DB9P193MB15964FB814BFEBE1A8A33AEFF45BA%40DB9P193MB1596.EURP193.PROD.OUTLOOK.COM
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMHD5ZR%3DRjSdh2Q1RitWhberF_gicEfFPZWV9xSD7FBxAGkURQ%40mail.gmail.com.


Re: Looking for a Learning Buddy

2023-06-19 Thread Innoncencia Kakan
Hi John, am interested too

On Sat, 17 Jun 2023, 01:00 John Ayodele,  wrote:

> Hi! It's John.
>
> I am currently looking for a learning buddy, for Machine Learning.
> I have little experience in Django and I code in Python.
>
> The learning buddy would have one-on-one meetings with me so we can share
> ideas and learn together.
> It is really going to be a fun experience.
> The reason I am looking for a learning buddy is because I find it more fun
> learning with people rather than just being self-taught alone.
> I will be going to university later this year or next year.
> 
> If this sounds like you, please do not hesitate to contact me.
> 
>
> Thanks.
> John Ayodele
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMg9qjFPgy-uPQ%3DgHF-dzswSePxzSu-EpEi0SWzg6zmY5cU3CQ%40mail.gmail.com.


Re: A Welcome Message

2023-06-19 Thread Gobi Dasu
Welcome Pratik! Would love to learn more about your Django development
experience.

Regards,
Gobi Dasu  ·
ldtalentwork.com
Stanford CS · Northwestern HCI
Calendar  · Demo
 · PM Service
 · Join our
Investors 


On Sat, Jun 17, 2023 at 7:51 AM John Ayodele 
wrote:

> Hello everyone, lets welcome our new guy, Pratik!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAP7pJ3gC78t6AxEbcWM65mVV5_NiSV%3DJ4jHuFVvqSLCOaorqBg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMk8evmHOBeyWXWKoQvmXNuwAkP-w%2BOqcq8ognVYAx%2Bk7MzpKg%40mail.gmail.com.


Re: associate Developers for Google

2023-06-19 Thread Basith
Hey I'm interested!


On Sat, Jun 17, 2023, 7:42 PM Ashish Rawat 
wrote:

> Yes i am looking
>
> On Sat, Jun 17, 2023, 7:39 PM Lucifer Black 
> wrote:
>
>> Is there anyone that wants a job at google developer at home looking for
>> three people
>>
>>
>> Get Outlook for Android 
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/DB9P193MB15964FB814BFEBE1A8A33AEFF45BA%40DB9P193MB1596.EURP193.PROD.OUTLOOK.COM
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJf3DrLj%3Dxn46MV34VGRw%3DHx1d9WMSv8i%2Bi%2BvacSDPOswFYaMw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAADw1sx6F8%3DJvZXtD2d0NcL0X8CwCyPuVdjt4Xc%3Dseq%3Dt-7m4w%40mail.gmail.com.


Re: Looking for a Learning Buddy

2023-06-19 Thread Patient makanga
Daniel,

This is a good idea, I am learning Python, don't have experience in Django
but I would like to do some projects to get me in, so I am with you.

Please let me know if it is okay with you.


Best regards




On Mon, 19 Jun 2023 at 16:30, Daniel Joseph 
wrote:

> Hi I' am Daniel and I think it a great idea, I myself will be going to the
> university this year. I am good in web development and python programming
> and a little knowledge on AI/ML using Python and will like to be your
> learning partner
>
> On Fri, Jun 16, 2023, 11:00 PM John Ayodele 
> wrote:
>
>> Hi! It's John.
>>
>> I am currently looking for a learning buddy, for Machine Learning.
>> I have little experience in Django and I code in Python.
>>
>> The learning buddy would have one-on-one meetings with me so we can share
>> ideas and learn together.
>> It is really going to be a fun experience.
>> The reason I am looking for a learning buddy is because I find it more
>> fun learning with people rather than just being self-taught alone.
>> I will be going to university later this year or next year.
>> 
>> If this sounds like you, please do not hesitate to contact me.
>> 
>>
>> Thanks.
>> John Ayodele
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMHD5ZS302u21rmcEjrh-cBf977cqD4wp4N2WxnzSazGeNm-sg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAC8VzwUs1gRP7UGUe%2BScBir1SGo-9wir7722S-g6Ut6MC0sEgQ%40mail.gmail.com.


Re: Looking for a Learning Buddy

2023-06-19 Thread Daviyaun Talbot
Hey guys, I'm in university and I have experience in python. i'm interested in learning ML too. If you create a zoom group-chat i'd like to join. Send me an email if you'd like to study together. On Jun 19, 2023, at 11:44 AM, Alessandro Madruga Correia  wrote:I’m interested too and seems like more people How about in this case create a separate group with meetings in zoom?Em sex., 16 de jun. de 2023 às 19:00, John Ayodele  escreveu:Hi! It's John.I am currently looking for a learning buddy, for Machine Learning.I have little experience in Django and I code in Python.The learning buddy would have one-on-one meetings with me so we can share ideas and learn together.It is really going to be a fun experience.The reason I am looking for a learning buddy is because I find it more fun learning with people rather than just being self-taught alone.I will be going to university later this year or next year.If this sounds like you, please do not hesitate to contact me. Thanks.John Ayodele



-- 
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%40mail.gmail.com.
--   ,= ,-_-. =.   [] Alessandro Madruga Correia ((_/)o o(\_))  [http://counter.li.org]       Debian User# 342751    `-'(. .)`-'    "O fanatismo é a única forma de força de vontade        \_/        acessível aos fracos." (Friedrich Nietzsche)



-- 
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAOofabcBeChjWqdRi0JhZP6E1RqSWM3NGd2COmOC2rJwTCirMg%40mail.gmail.com.




-- 
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/F8817A8D-B17C-49E1-9FCC-731D35D1A97C%40gmail.com.


Re: Looking for a Learning Buddy

2023-06-19 Thread Alessandro Madruga Correia
I’m interested too and seems like more people

How about in this case create a separate group with meetings in zoom?

Em sex., 16 de jun. de 2023 às 19:00, John Ayodele 
escreveu:

> Hi! It's John.
>
> I am currently looking for a learning buddy, for Machine Learning.
> I have little experience in Django and I code in Python.
>
> The learning buddy would have one-on-one meetings with me so we can share
> ideas and learn together.
> It is really going to be a fun experience.
> The reason I am looking for a learning buddy is because I find it more fun
> learning with people rather than just being self-taught alone.
> I will be going to university later this year or next year.
> 
> If this sounds like you, please do not hesitate to contact me.
> 
>
> Thanks.
> John Ayodele
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%40mail.gmail.com
> 
> .
>
-- 
  ,= ,-_-. =.   [] Alessandro Madruga Correia
 ((_/)o o(\_))  [http://counter.li.org]   Debian User# 342751
   `-'(. .)`-'"O fanatismo é a única forma de força de vontade
   \_/acessível aos fracos." (Friedrich Nietzsche)

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOofabcBeChjWqdRi0JhZP6E1RqSWM3NGd2COmOC2rJwTCirMg%40mail.gmail.com.


Re: associate Developers for Google

2023-06-19 Thread Ganush K
I'm interested

On Sat, Jun 17, 2023, 7:39 PM Lucifer Black 
wrote:

> Is there anyone that wants a job at google developer at home looking for
> three people
>
>
> Get Outlook for Android 
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/DB9P193MB15964FB814BFEBE1A8A33AEFF45BA%40DB9P193MB1596.EURP193.PROD.OUTLOOK.COM
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2B1zq-XvP5fDb4xpqMWq9CjMSespF%2B6mRd9prETBq8MZshqjQw%40mail.gmail.com.


Re: Using JavaScript to enumerate a dataset returned to a page.

2023-06-19 Thread ALBERT ASHABA AHEEBWA
Explore using Alpine js. Still learning these bits myself so, I don't have
much detail. But Alpine is what you looking for.



Best Regards,

Albert Ashaba Aheebwa
+256 781 435857

On Mon, 19 Jun 2023, 17:30 Lee Stevens,  wrote:

> Helo,
>
> I have a dataset returning to a page.  I need JavaScript to be able to
> process this.
>
> Instead of using:
> {% for item in dataset %}
> {{ item.field1 }}
> {{ item.field2 }}
> {% endfor %}
>
> Is there a *JavaScript* way to read this dataset/variable instead?
>
> Thanks.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/37febb44-36e2-47ca-9eff-7011c4e9b963n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAAQecPeEUJG-K2B-8kDyv5uBW4uVK%3DZv7soGw4kSvgWBBs2yWw%40mail.gmail.com.


RE: Looking for a Learning Buddy

2023-06-19 Thread tino
Hey   Sent from Mail for Windows From: Jeman KumarSent: Sunday, June 18, 2023 10:36 AMTo: django-users@googlegroups.comSubject: Re: Looking for a Learning Buddy did you learn math for machine learning? On Sat, 17 Jun, 2023, 3:30 am John Ayodele,  wrote:Hi! It's John. I am currently looking for a learning buddy, for Machine Learning.I have little experience in Django and I code in Python. The learning buddy would have one-on-one meetings with me so we can share ideas and learn together.It is really going to be a fun experience.The reason I am looking for a learning buddy is because I find it more fun learning with people rather than just being self-taught alone.I will be going to university later this year or next year.If this sounds like you, please do not hesitate to contact me.  Thanks.John Ayodele-- You received this message because you are subscribed to the Google Groups "Django users" group.To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%40mail.gmail.com.-- You received this message because you are subscribed to the Google Groups "Django users" group.To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CALmE1TvMBEOov%3DCeG3TtiFfHDB8T6h9zD%3D_2NOyg%3DbG5OruodA%40mail.gmail.com. 



-- 
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/2FB29BA9-0858-4DC4-B51E-0E63B41B2609%40hxcore.ol.


Re: Looking for a Learning Buddy

2023-06-19 Thread Daniel Joseph
Hi I' am Daniel and I think it a great idea, I myself will be going to the
university this year. I am good in web development and python programming
and a little knowledge on AI/ML using Python and will like to be your
learning partner

On Fri, Jun 16, 2023, 11:00 PM John Ayodele  wrote:

> Hi! It's John.
>
> I am currently looking for a learning buddy, for Machine Learning.
> I have little experience in Django and I code in Python.
>
> The learning buddy would have one-on-one meetings with me so we can share
> ideas and learn together.
> It is really going to be a fun experience.
> The reason I am looking for a learning buddy is because I find it more fun
> learning with people rather than just being self-taught alone.
> I will be going to university later this year or next year.
> 
> If this sounds like you, please do not hesitate to contact me.
> 
>
> Thanks.
> John Ayodele
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMHD5ZS302u21rmcEjrh-cBf977cqD4wp4N2WxnzSazGeNm-sg%40mail.gmail.com.


Re: Looking for a Learning Buddy

2023-06-19 Thread Kevin Anand
I would be interested too!

On Sun, Jun 18, 2023, 9:36 AM John Ayodele  wrote:

> I have some basic knowledge from high school.
> But if I get stuck, I'll go online and find solutions.
>
> On Sun, Jun 18, 2023 at 3:36 PM Jeman Kumar 
> wrote:
>
>> did you learn math for machine learning?
>>
>> On Sat, 17 Jun, 2023, 3:30 am John Ayodele, 
>> wrote:
>>
>>> Hi! It's John.
>>>
>>> I am currently looking for a learning buddy, for Machine Learning.
>>> I have little experience in Django and I code in Python.
>>>
>>> The learning buddy would have one-on-one meetings with me so we can
>>> share ideas and learn together.
>>> It is really going to be a fun experience.
>>> The reason I am looking for a learning buddy is because I find it more
>>> fun learning with people rather than just being self-taught alone.
>>> I will be going to university later this year or next year.
>>> 
>>> If this sounds like you, please do not hesitate to contact me.
>>> 
>>>
>>> Thanks.
>>> John Ayodele
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CALmE1TvMBEOov%3DCeG3TtiFfHDB8T6h9zD%3D_2NOyg%3DbG5OruodA%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAP7pJ3ihN7Er22k%2Be7qO1cghAM%2BeMJp%3DLP4XgUYsp4knup5TYw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHghHZcKCPPSEvO5aT5nKb5pTEHvJ__60%3D8%3De1z-3FFi-pwFOw%40mail.gmail.com.


Re: associate Developers for Google

2023-06-19 Thread Alphousseyni Mane
I'm interested!

Le sam. 17 juin 2023 à 14:09, Lucifer Black  a
écrit :

> Is there anyone that wants a job at google developer at home looking for
> three people
>
>
> Get Outlook for Android 
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/DB9P193MB15964FB814BFEBE1A8A33AEFF45BA%40DB9P193MB1596.EURP193.PROD.OUTLOOK.COM
> 
> .
>


-- 

Big up everybody

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANbGF0HPgEjDQjcfdLUtwhb7r%3DAfPtiGcRu_zLJKK3BqNYzKeQ%40mail.gmail.com.


Using JavaScript to enumerate a dataset returned to a page.

2023-06-19 Thread Lee Stevens
Helo,

I have a dataset returning to a page.  I need JavaScript to be able to 
process this.

Instead of using:
{% for item in dataset %}
{{ item.field1 }}
{{ item.field2 }}
{% endfor %}

Is there a *JavaScript* way to read this dataset/variable instead?

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/37febb44-36e2-47ca-9eff-7011c4e9b963n%40googlegroups.com.


Re: uwsgi

2023-06-19 Thread Alec Delaney
Yes

On Mon, Jun 19, 2023, 2:26 AM Nakamatte Norah 
wrote:

> good morning my name is Norah . This is first time to use Django and
> develope a system l need help can you . Please help to accomplish this task
>
> On Sun, Jun 4, 2023, 11:14 PM Larry Martell 
> wrote:
>
>> I normally deploy my django apps using nginx and uwsgi. I recently
>> found that the uwsgi mailing list is defunct, and I read this on the
>> uwsgi github page:
>>
>> Note: The project is in maintenance mode (only bugfixes and updates
>> for new languages apis). Do not expect quick answers on github issues.
>>
>> Are folks still deploying new apps with uwsgi, or have people switched
>> to Gunicorn or something else?
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CACwCsY4h8Jc4_Cd7Vf2w-8ExjfUnu0W2i-GknCuxOznk6V_V3A%40mail.gmail.com
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMEfT%2BQD8h8LOo27vb%2BSQYh-OuT-X3LgTvgD5Ff3VT2BfnEeNw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFGN%3DGjg3OKNK_51Tewc5vWc%2Bzec7Gfz2L7NPSJfTzwKUtsX9g%40mail.gmail.com.


Re: uwsgi

2023-06-19 Thread Nakamatte Norah
good morning my name is Norah . This is first time to use Django and
develope a system l need help can you . Please help to accomplish this task

On Sun, Jun 4, 2023, 11:14 PM Larry Martell  wrote:

> I normally deploy my django apps using nginx and uwsgi. I recently
> found that the uwsgi mailing list is defunct, and I read this on the
> uwsgi github page:
>
> Note: The project is in maintenance mode (only bugfixes and updates
> for new languages apis). Do not expect quick answers on github issues.
>
> Are folks still deploying new apps with uwsgi, or have people switched
> to Gunicorn or something else?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACwCsY4h8Jc4_Cd7Vf2w-8ExjfUnu0W2i-GknCuxOznk6V_V3A%40mail.gmail.com
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMEfT%2BQD8h8LOo27vb%2BSQYh-OuT-X3LgTvgD5Ff3VT2BfnEeNw%40mail.gmail.com.