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 return

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 vuln

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 > effo

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 se

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 develop

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 > "Dja

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

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

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

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

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

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

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 >

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

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 c

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'

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 S

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 Group

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 beca