Tuesday, June 27, 2023

Re: Call for growth and connection

Thanks

On Tue, 27 Jun 2023 at 15:43, Joshua Olatunji <joshuakayode169@gmail.com> wrote:
Connect with like minded developers across Africa, Middle-east and Asia

Connect with dedicated mentors, and mentees 

Make the connection closer to home.


 

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAEL9fCHvwQ3NtEsABt69HU_5gt4TDUfOjbUQkvu%3DqKmB6K_TXw%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CACgi0DeXGfG6-PVOhiNHWpjc6tpHo5UNRyh%3Dxoc6QKLTtPCfEA%40mail.gmail.com.

Sunday, June 25, 2023

Re: Django Deployment.

Yep I would definitely opt for docker in this case, although it should be possible to use apache+mod_wsgi to do it also, just ... a lot more messy than a container if you already use/have docker (which is easy enough to install on win).

Forget IIS for this purpose, it's probably possible but I honestly wouldn't advise going down that rabbit hole.

Regards,
David

On Sat, Jun 24, 2023 at 11:37 PM Steve Liu <nice.lizhi@gmail.com> wrote:
Hey

Maybe you can use Docker for it? 



On Sat, Jun 24, 2023 at 6:44 PM Thomas Mutavi <mathiasthomas17@gmail.com> wrote:
Hello team,

Please recommend an article or a tutorial on Django deployment on windows server 2016 using either IIS or Apache. If you know the whole process you can also share.

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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/8aa3132f-cb70-46fa-bd35-36339330ab88n%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAO_rqR4Huaor0-snXySycb8O64Q_NXaoEQ0t3SKtxCi073picQ%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAE5VhgUo7yZd_x44vEE3YqYXesoLyk2kNfhkz52Bcg3RfRywdA%40mail.gmail.com.

Saturday, June 24, 2023

Django Deployment.

Hello team,

Please recommend an article or a tutorial on Django deployment on windows server 2016 using either IIS or Apache. If you know the whole process you can also share.

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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/8aa3132f-cb70-46fa-bd35-36339330ab88n%40googlegroups.com.

Thursday, June 22, 2023

Re: Can any one help me with this question

Thank you for your reply. 

Annadatha. 

On Thu, Jun 22, 2023, 10:45 PM Praveen Chaudhary <prabinchy1234@gmail.com> wrote:
Hi Annadatha,

I'm glad to hear that upgrading to Oracle 21c worked for you. As for your question about working without migrations in Django, it's certainly possible but it's important to understand the implication and trade-offs.

Django migrations provide a way to manage and apply changes to your database schema over time, allowing for version control and easy deployment of database changes. They help maintain data integrity and make it easier to collaborate with other developers.

However, if you prefer not to use migrations, you can disable them in django by setting the 'MIGRATIIN_MODULES' setting to an empty dictionary in your projects settings.py file:

 MIGRATION_MODULES = {}


By doing this, you'll essentially disable the migration framework, and Django won't generate or apply migrations. Instead, you'll need to manually manage your database schema changes, which can be more error-prone and less convenient, especially in collaborative projects.

Keep in mind the following considerations if you decide to work without migrations:

1. Database schema management: You'll need to manually create, modify, and delete database tables, columns, and other schema elements as needed. This requires careful coordination and communication between developers working on the project.

2. Data integrity: Migrations help ensure data integrity during schema changes by providing a way to define and execute data transformations. Without migrations, you'll need to handle data migrations and transformations manually, which can be challenging and error-prone.

3. Deployment and version control: Migrations provide a structured way to apply schema changes to your database during deployment. Without migrations, you'll need to find alternative approaches for managing database changes in different environments and version controlling those changes.

Ultimately, the decision to use or not use migrations depends on your specific requirements, project complexity, and team collaboration. If you're working on a small, personal project with a simple schema and limited changes, managing the database schema manually might be feasible. However, for larger projects or teams, migrations can provide significant benefits in terms of maintainability, collaboration, and data integrity.

I hope this helps you make an informed decision. Let me know if you have any further questions!

Best regards
Prabin Chaudhary
+977-9840193890
Software Engineer | Youth Innovation Lab

On Thu, 22 Jun 2023, 7:55 pm Annadatha Rao, <annadatha.rao@gmail.com> wrote:
Hi  Prabin,

Thank you, it worked when I upgraded db to 21c (oracle), thank you for your help. Small question, can I work without migrations, some have I hate migrations being a legacy programmer from (Cobol days). I value your opinion.

Thank you,
ANNADATHA.

On Sun, Jun 18, 2023 at 9:19 PM Praveen Chaudhary <prabinchy1234@gmail.com> wrote:

Yes, Django migrations can work with Oracle 11.2 using the python-oracle database driver. However, it's important to note that the python-oracle package is not an official Oracle-provided driver. The official driver is called cx_Oracle, which is widely used for connecting Django to Oracle databases.

Here's an example of how Django migrations can work with Oracle 11.2 using cx_Oracle:

1. Install the cx_Oracle package using pip:
     pip install cx_Oracle
2.Update your Django project's settings.py file to include the Oracle database configuration:
     DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.oracle',
        'NAME': 'your_database_name',
        'USER': 'your_username',
        'PASSWORD': 'your_password',
        'HOST': 'your_host',
        'PORT': 'your_port',
    }
}

Replace the 'your_database_name', 'your_username', 'your_password', 'your_host', and 'your_port' with the appropriate values for your Oracle database.

3.Define your Django models in the models.py file.
4.Generate and apply the migrations using Django's makemigrations and migrate commands:

These commands will generate the necessary SQL statements based on your models and apply them to the Oracle database.

Please note that the example assumes you have already set up Oracle 11.2 and have the necessary Oracle client software installed on your machine.

It's also important to ensure that your version of Django is compatible with Oracle 11.2. Refer to the Django documentation and the documentation of the cx_Oracle package for any specific requirements or considerations when working with Oracle databases.

Remember to replace 'your_database_name', 'your_username', 'your_password', 'your_host', and 'your_port' with the appropriate values for your Oracle database configuration.

Prabin Chaudhary
+977-9840193890
Software Engineer | Youth Innovation Lab


On Sun, 18 Jun 2023 at 21:15, Annadatha Rao <annadatha.rao@gmail.com> wrote:
Dear All,

Do DJANGO migrations work with Oracle 11.2 with python-oracle db driver, please show me an example if works.

Thank you for your support,
Annadatha.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFtPNJw9wQgAo2jCFEs6undCf9FZ_oqww9kZWKLLaJAMGyoNaA%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAN9B8Z3itg0bvV8wzoNoAkJiF9FVZ%3DAP2Z2aLxRreYxVVki1_w%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFtPNJwWEh%2BrqVMLemRdMi0__UGp2ZJg-%2B6Ee2K-U%2B8VJvgKcw%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAN9B8Z1-keenYxaAzefuLu6QKurEOfvRL0cebONegMmJMMDOFA%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFtPNJx2Jj7xhhy%2BbYHJGqDoOFrmNgvzfSBUZ%3DTFb23h_H6zOQ%40mail.gmail.com.

Re: Can any one help me with this question

Hi  Prabin,

Thank you, it worked when I upgraded db to 21c (oracle), thank you for your help. Small question, can I work without migrations, some have I hate migrations being a legacy programmer from (Cobol days). I value your opinion.

Thank you,
ANNADATHA.

On Sun, Jun 18, 2023 at 9:19 PM Praveen Chaudhary <prabinchy1234@gmail.com> wrote:

Yes, Django migrations can work with Oracle 11.2 using the python-oracle database driver. However, it's important to note that the python-oracle package is not an official Oracle-provided driver. The official driver is called cx_Oracle, which is widely used for connecting Django to Oracle databases.

Here's an example of how Django migrations can work with Oracle 11.2 using cx_Oracle:

1. Install the cx_Oracle package using pip:
     pip install cx_Oracle
2.Update your Django project's settings.py file to include the Oracle database configuration:
     DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.oracle',
        'NAME': 'your_database_name',
        'USER': 'your_username',
        'PASSWORD': 'your_password',
        'HOST': 'your_host',
        'PORT': 'your_port',
    }
}

Replace the 'your_database_name', 'your_username', 'your_password', 'your_host', and 'your_port' with the appropriate values for your Oracle database.

3.Define your Django models in the models.py file.
4.Generate and apply the migrations using Django's makemigrations and migrate commands:

These commands will generate the necessary SQL statements based on your models and apply them to the Oracle database.

Please note that the example assumes you have already set up Oracle 11.2 and have the necessary Oracle client software installed on your machine.

It's also important to ensure that your version of Django is compatible with Oracle 11.2. Refer to the Django documentation and the documentation of the cx_Oracle package for any specific requirements or considerations when working with Oracle databases.

Remember to replace 'your_database_name', 'your_username', 'your_password', 'your_host', and 'your_port' with the appropriate values for your Oracle database configuration.

Prabin Chaudhary
+977-9840193890
Software Engineer | Youth Innovation Lab


On Sun, 18 Jun 2023 at 21:15, Annadatha Rao <annadatha.rao@gmail.com> wrote:
Dear All,

Do DJANGO migrations work with Oracle 11.2 with python-oracle db driver, please show me an example if works.

Thank you for your support,
Annadatha.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFtPNJw9wQgAo2jCFEs6undCf9FZ_oqww9kZWKLLaJAMGyoNaA%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAN9B8Z3itg0bvV8wzoNoAkJiF9FVZ%3DAP2Z2aLxRreYxVVki1_w%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFtPNJwWEh%2BrqVMLemRdMi0__UGp2ZJg-%2B6Ee2K-U%2B8VJvgKcw%40mail.gmail.com.

Tuesday, June 20, 2023

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

So it is sounding more and more like I can't just send in a JSON object and then use JSON.parse to loop through the data.  Maybe I am missing something on the django side.  

Parsing on the JavaScript side is easy, but am I creating the variable {{dataset}} in the original message incorrectly?
On Monday, June 19, 2023 at 9:30:15 AM UTC-5 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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/1e0b39bd-ab66-47c7-845a-3b6795fddb9en%40googlegroups.com.

Monday, June 19, 2023

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

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 <lee@stevensnet.com> 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+unsubscribe@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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAPLZMbPghY%2BCAEW6G3T2qC1w7GM5P0TkCZ_XedtANcmbsSmo7w%40mail.gmail.com.

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

I assume you're referring to the standard called dataset. If so, take a look here:

https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset#examples


On June 18, 2023 12:08:26 PM CDT, Lee Stevens <lee@stevensnet.com> 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.

Re: Suggestions for Reducing Spam

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,
Stanford CS · Northwestern HCI


On Sun, Jun 18, 2023 at 11:45 AM John Ayodele <ayodelejohn40@gmail.com> wrote:
Wow!
The idea is totally beautiful.

I go for your idea.

On Sun, Jun 18, 2023 at 5:14 PM Paul Kudla <paul@scom.ca> 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 <http://www.scom.ca>
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 paul@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+unsubscribe@googlegroups.com
> <mailto:django-users+unsubscribe@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2B3kJUaoGRXy47q6wUFyYtn4u3YO1rm1gZJR4rYNcEXizxEnOg%40mail.gmail.com <https://groups.google.com/d/msgid/django-users/CA%2B3kJUaoGRXy47q6wUFyYtn4u3YO1rm1gZJR4rYNcEXizxEnOg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>
> --
> This message has been scanned for viruses and
> dangerous content by *MailScanner* <http://www.mailscanner.info/>, and is
> believed to be clean.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/57363a7d-547a-b3f6-ca90-79db4aaa9272%40scom.ca.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAP7pJ3iCDfMToxWWm8h_NgsPJ8piVFwAZdS9Q99Dp7F5%3DwxB%3DQ%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAMk8evmfhaVzDhaY_AzY2ZJofDt0jVCGtbHPYy9TKa1JA%2B5%3DUQ%40mail.gmail.com.

Re: associate Developers for Google

Hey I'm interested!


On Sat, Jun 17, 2023, 7:42 PM Ashish Rawat <ashuandashishrawat@gmail.com> wrote:
Yes i am looking 

On Sat, Jun 17, 2023, 7:39 PM Lucifer Black <luciferblack06@gmail.com> wrote:
Is there anyone that wants a job at google developer at home looking for three people


--
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+unsubscribe@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+unsubscribe@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+unsubscribe@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.

Sunday, June 18, 2023

Using JavaScript to enumerate a dataset returned to a page.

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+unsubscribe@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: Suggestions for Reducing Spam

Wow!
The idea is totally beautiful.

I go for your idea.

On Sun, Jun 18, 2023 at 5:14 PM Paul Kudla <paul@scom.ca> 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 <http://www.scom.ca>
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 paul@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+unsubscribe@googlegroups.com
> <mailto:django-users+unsubscribe@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2B3kJUaoGRXy47q6wUFyYtn4u3YO1rm1gZJR4rYNcEXizxEnOg%40mail.gmail.com <https://groups.google.com/d/msgid/django-users/CA%2B3kJUaoGRXy47q6wUFyYtn4u3YO1rm1gZJR4rYNcEXizxEnOg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>
> --
> This message has been scanned for viruses and
> dangerous content by *MailScanner* <http://www.mailscanner.info/>, and is
> believed to be clean.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/57363a7d-547a-b3f6-ca90-79db4aaa9272%40scom.ca.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAP7pJ3iCDfMToxWWm8h_NgsPJ8piVFwAZdS9Q99Dp7F5%3DwxB%3DQ%40mail.gmail.com.

Re: Suggestions for Reducing Spam

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 <http://www.scom.ca>
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 paul@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+unsubscribe@googlegroups.com
> <mailto:django-users+unsubscribe@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2B3kJUaoGRXy47q6wUFyYtn4u3YO1rm1gZJR4rYNcEXizxEnOg%40mail.gmail.com <https://groups.google.com/d/msgid/django-users/CA%2B3kJUaoGRXy47q6wUFyYtn4u3YO1rm1gZJR4rYNcEXizxEnOg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>
> --
> This message has been scanned for viruses and
> dangerous content by *MailScanner* <http://www.mailscanner.info/>, and is
> believed to be clean.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/57363a7d-547a-b3f6-ca90-79db4aaa9272%40scom.ca.

Re: Can any one help me with this question

Thank you very much praveen, I will try and let you know. 

Annadatja




On Sun, Jun 18, 2023, 9:19 PM Praveen Chaudhary <prabinchy1234@gmail.com> wrote:

Yes, Django migrations can work with Oracle 11.2 using the python-oracle database driver. However, it's important to note that the python-oracle package is not an official Oracle-provided driver. The official driver is called cx_Oracle, which is widely used for connecting Django to Oracle databases.

Here's an example of how Django migrations can work with Oracle 11.2 using cx_Oracle:

1. Install the cx_Oracle package using pip:
     pip install cx_Oracle
2.Update your Django project's settings.py file to include the Oracle database configuration:
     DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.oracle',
        'NAME': 'your_database_name',
        'USER': 'your_username',
        'PASSWORD': 'your_password',
        'HOST': 'your_host',
        'PORT': 'your_port',
    }
}

Replace the 'your_database_name', 'your_username', 'your_password', 'your_host', and 'your_port' with the appropriate values for your Oracle database.

3.Define your Django models in the models.py file.
4.Generate and apply the migrations using Django's makemigrations and migrate commands:

These commands will generate the necessary SQL statements based on your models and apply them to the Oracle database.

Please note that the example assumes you have already set up Oracle 11.2 and have the necessary Oracle client software installed on your machine.

It's also important to ensure that your version of Django is compatible with Oracle 11.2. Refer to the Django documentation and the documentation of the cx_Oracle package for any specific requirements or considerations when working with Oracle databases.

Remember to replace 'your_database_name', 'your_username', 'your_password', 'your_host', and 'your_port' with the appropriate values for your Oracle database configuration.

Prabin Chaudhary
+977-9840193890
Software Engineer | Youth Innovation Lab


On Sun, 18 Jun 2023 at 21:15, Annadatha Rao <annadatha.rao@gmail.com> wrote:
Dear All,

Do DJANGO migrations work with Oracle 11.2 with python-oracle db driver, please show me an example if works.

Thank you for your support,
Annadatha.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFtPNJw9wQgAo2jCFEs6undCf9FZ_oqww9kZWKLLaJAMGyoNaA%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAN9B8Z3itg0bvV8wzoNoAkJiF9FVZ%3DAP2Z2aLxRreYxVVki1_w%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFtPNJzEptw-pUkaDnkfzdew4%2BMicfibfCx4e10rCpZNZ%3D%2BYXw%40mail.gmail.com.

RE: Looking for a Learning Buddy

Hey

 

 

Sent from Mail for Windows

 

From: Jeman Kumar
Sent: Sunday, June 18, 2023 10:36 AM
To: django-users@googlegroups.com
Subject: Re: Looking for a Learning Buddy

 

did you learn math for machine learning?

 

On Sat, 17 Jun, 2023, 3:30 am John Ayodele, <ayodelejohn40@gmail.com> 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+unsubscribe@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+unsubscribe@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.

 

Saturday, June 17, 2023

Re: Freelance Django and Python work

I'm interested.
I have two years experience with pyhton and Django.
Solid knowledge of HTML5, CSS3 AND JAVASCRIPT.

Le mar. 13 juin 2023, 11:30, אורי <uri@speedy.net> a écrit :
Hi,

I'm looking for a programmer to hire as a freelancer for Django and Python work.

- Experience with Python and Django
- Experience with open source
- Committed to the Django repository on GitHub - an advantage
- Committed to other open-source projects in Python - an advantage
- Experience with Stack Overflow -  an advantage
- BSc or BA in computers or science (math, physics) -  an advantage
- Knowledge of HTML, CSS, and JavaScript - an advantage
- Can issue receipts

I need about 5 hours per month on average. Some months I might need up to 15 hours per month. Some months I might not need anything. The work is remote. My project is open source. I can give you a free license to PyCharm. My website is at https://en.speedy.net/ and https://github.com/speedy-net/speedy-net

To apply please send one email to jobs+jango-freelancer@speedy.net, with your name, your email address, where you live, your experience, how many commits you committed to Django, how many commits you committed to other open source projects, a link to your profile on LinkedIn, a link to your profile on GitHub, a link to your profile on Stack Overflow, your diploma if you have any, how much you charge per hour and in which currency (I prefer USD or Euro), and if you can issue receipts. If you don't have a profile on one of the above websites please mention this too.

Thanks,
Uri Rodberg, Speedy Net.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CABD5YeHjQyFa75Mgq7nzcJ6AoX-WDeu75OOPfa2OngG2VTMaDQ%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAEsEyq_KWsSGZgpEusN9R%3D-MwArsz4ywVN1%3Dh%2BboC%3DZy2-7F3g%40mail.gmail.com.

Re: Freelance Django and Python work

Yes 
Bhaarat 

On Sun, 18 Jun, 2023, 6:06 am Vairamuthu Puvanachandran, <vai.puvan@gmail.com> wrote:
Are you working from home?
Vai

On Thu, Jun 15, 2023, 6:28 AM Francis F. Massaquoi, Jr. <ffmassaquoijr@gmail.com> wrote:
Hi, 

I am interested in the Django and Python Developer freelancing role, I am a Python Developer with great experience working Django, Flask, FastApi and other advance frameworks. Based on my experience I believed I am be a great candidate for this role. 

I remain available, if there are any additional information needed. 

Regards. 

Francis F. Massaquoi Jr. 
On Tuesday, June 13, 2023 at 11:30:40 AM UTC אורי wrote:
Hi,

I'm looking for a programmer to hire as a freelancer for Django and Python work.

- Experience with Python and Django
- Experience with open source
- Committed to the Django repository on GitHub - an advantage
- Committed to other open-source projects in Python - an advantage
- Experience with Stack Overflow -  an advantage
- BSc or BA in computers or science (math, physics) -  an advantage
- Knowledge of HTML, CSS, and JavaScript - an advantage
- Can issue receipts

I need about 5 hours per month on average. Some months I might need up to 15 hours per month. Some months I might not need anything. The work is remote. My project is open source. I can give you a free license to PyCharm. My website is at https://en.speedy.net/ and https://github.com/speedy-net/speedy-net

To apply please send one email to jobs+jango...@speedy.net, with your name, your email address, where you live, your experience, how many commits you committed to Django, how many commits you committed to other open source projects, a link to your profile on LinkedIn, a link to your profile on GitHub, a link to your profile on Stack Overflow, your diploma if you have any, how much you charge per hour and in which currency (I prefer USD or Euro), and if you can issue receipts. If you don't have a profile on one of the above websites please mention this too.

Thanks,
Uri Rodberg, Speedy Net.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6228db4a-936d-43de-8bb2-173ade7b48f2n%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAAJ%2B9rH_jcPuGBDtL6J99bPNpUrapVSqsoh826-_MTOUhcr-Kw%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJEtCgQe6%3DJzyNoPorQXNzN-2sPBzbpvb7fNTmMacstJTSp1ew%40mail.gmail.com.

Re: Freelance Django and Python work

As a current backend engineer, yes, I am also interested in this position. Please do keep me updated with any information better position. 

On Sat, Jun 17, 2023, 5:36 PM Vairamuthu Puvanachandran <vai.puvan@gmail.com> wrote:
Are you working from home?
Vai

On Thu, Jun 15, 2023, 6:28 AM Francis F. Massaquoi, Jr. <ffmassaquoijr@gmail.com> wrote:
Hi, 

I am interested in the Django and Python Developer freelancing role, I am a Python Developer with great experience working Django, Flask, FastApi and other advance frameworks. Based on my experience I believed I am be a great candidate for this role. 

I remain available, if there are any additional information needed. 

Regards. 

Francis F. Massaquoi Jr. 
On Tuesday, June 13, 2023 at 11:30:40 AM UTC אורי wrote:
Hi,

I'm looking for a programmer to hire as a freelancer for Django and Python work.

- Experience with Python and Django
- Experience with open source
- Committed to the Django repository on GitHub - an advantage
- Committed to other open-source projects in Python - an advantage
- Experience with Stack Overflow -  an advantage
- BSc or BA in computers or science (math, physics) -  an advantage
- Knowledge of HTML, CSS, and JavaScript - an advantage
- Can issue receipts

I need about 5 hours per month on average. Some months I might need up to 15 hours per month. Some months I might not need anything. The work is remote. My project is open source. I can give you a free license to PyCharm. My website is at https://en.speedy.net/ and https://github.com/speedy-net/speedy-net

To apply please send one email to jobs+jango...@speedy.net, with your name, your email address, where you live, your experience, how many commits you committed to Django, how many commits you committed to other open source projects, a link to your profile on LinkedIn, a link to your profile on GitHub, a link to your profile on Stack Overflow, your diploma if you have any, how much you charge per hour and in which currency (I prefer USD or Euro), and if you can issue receipts. If you don't have a profile on one of the above websites please mention this too.

Thanks,
Uri Rodberg, Speedy Net.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6228db4a-936d-43de-8bb2-173ade7b48f2n%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAAJ%2B9rH_jcPuGBDtL6J99bPNpUrapVSqsoh826-_MTOUhcr-Kw%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHghHZcfX0jusTX1ceoUB2Mm8hY%3D5X-rFPZK%2B%2B-SzwWqhbpGnQ%40mail.gmail.com.

Re: Freelance Django and Python work

Are you working from home?
Vai

On Thu, Jun 15, 2023, 6:28 AM Francis F. Massaquoi, Jr. <ffmassaquoijr@gmail.com> wrote:
Hi, 

I am interested in the Django and Python Developer freelancing role, I am a Python Developer with great experience working Django, Flask, FastApi and other advance frameworks. Based on my experience I believed I am be a great candidate for this role. 

I remain available, if there are any additional information needed. 

Regards. 

Francis F. Massaquoi Jr. 
On Tuesday, June 13, 2023 at 11:30:40 AM UTC אורי wrote:
Hi,

I'm looking for a programmer to hire as a freelancer for Django and Python work.

- Experience with Python and Django
- Experience with open source
- Committed to the Django repository on GitHub - an advantage
- Committed to other open-source projects in Python - an advantage
- Experience with Stack Overflow -  an advantage
- BSc or BA in computers or science (math, physics) -  an advantage
- Knowledge of HTML, CSS, and JavaScript - an advantage
- Can issue receipts

I need about 5 hours per month on average. Some months I might need up to 15 hours per month. Some months I might not need anything. The work is remote. My project is open source. I can give you a free license to PyCharm. My website is at https://en.speedy.net/ and https://github.com/speedy-net/speedy-net

To apply please send one email to jobs+jango...@speedy.net, with your name, your email address, where you live, your experience, how many commits you committed to Django, how many commits you committed to other open source projects, a link to your profile on LinkedIn, a link to your profile on GitHub, a link to your profile on Stack Overflow, your diploma if you have any, how much you charge per hour and in which currency (I prefer USD or Euro), and if you can issue receipts. If you don't have a profile on one of the above websites please mention this too.

Thanks,
Uri Rodberg, Speedy Net.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6228db4a-936d-43de-8bb2-173ade7b48f2n%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAAJ%2B9rH_jcPuGBDtL6J99bPNpUrapVSqsoh826-_MTOUhcr-Kw%40mail.gmail.com.

Re: Freelance Django and Python work

Yes, i am interested in this position

On Tue, Jun 13, 2023, 4:59 PM אורי <uri@speedy.net> wrote:
Hi,

I'm looking for a programmer to hire as a freelancer for Django and Python work.

- Experience with Python and Django
- Experience with open source
- Committed to the Django repository on GitHub - an advantage
- Committed to other open-source projects in Python - an advantage
- Experience with Stack Overflow -  an advantage
- BSc or BA in computers or science (math, physics) -  an advantage
- Knowledge of HTML, CSS, and JavaScript - an advantage
- Can issue receipts

I need about 5 hours per month on average. Some months I might need up to 15 hours per month. Some months I might not need anything. The work is remote. My project is open source. I can give you a free license to PyCharm. My website is at https://en.speedy.net/ and https://github.com/speedy-net/speedy-net

To apply please send one email to jobs+jango-freelancer@speedy.net, with your name, your email address, where you live, your experience, how many commits you committed to Django, how many commits you committed to other open source projects, a link to your profile on LinkedIn, a link to your profile on GitHub, a link to your profile on Stack Overflow, your diploma if you have any, how much you charge per hour and in which currency (I prefer USD or Euro), and if you can issue receipts. If you don't have a profile on one of the above websites please mention this too.

Thanks,
Uri Rodberg, Speedy Net.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CABD5YeHjQyFa75Mgq7nzcJ6AoX-WDeu75OOPfa2OngG2VTMaDQ%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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJf3DrJZFucXdtH8nD7Ko%3DgttXp1_Nyeyptoq0tW6u98OvHWhQ%40mail.gmail.com.

Friday, June 16, 2023

Re: Looking for a Learning Buddy

Hi John. For ML and python you'd probably get more responses from the Pytorch community.

Good luck.

On Jun 16, 2023, at 16:00, John Ayodele <ayodelejohn40@gmail.com> 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

Thursday, June 15, 2023

Re: Freelance Django and Python work

Hi, 

I am interested in the Django and Python Developer freelancing role, I am a Python Developer with great experience working Django, Flask, FastApi and other advance frameworks. Based on my experience I believed I am be a great candidate for this role. 

I remain available, if there are any additional information needed. 

Regards. 

Francis F. Massaquoi Jr. 
On Tuesday, June 13, 2023 at 11:30:40 AM UTC אורי wrote:
Hi,

I'm looking for a programmer to hire as a freelancer for Django and Python work.

- Experience with Python and Django
- Experience with open source
- Committed to the Django repository on GitHub - an advantage
- Committed to other open-source projects in Python - an advantage
- Experience with Stack Overflow -  an advantage
- BSc or BA in computers or science (math, physics) -  an advantage
- Knowledge of HTML, CSS, and JavaScript - an advantage
- Can issue receipts

I need about 5 hours per month on average. Some months I might need up to 15 hours per month. Some months I might not need anything. The work is remote. My project is open source. I can give you a free license to PyCharm. My website is at https://en.speedy.net/ and https://github.com/speedy-net/speedy-net

To apply please send one email to jobs+jango...@speedy.net, with your name, your email address, where you live, your experience, how many commits you committed to Django, how many commits you committed to other open source projects, a link to your profile on LinkedIn, a link to your profile on GitHub, a link to your profile on Stack Overflow, your diploma if you have any, how much you charge per hour and in which currency (I prefer USD or Euro), and if you can issue receipts. If you don't have a profile on one of the above websites please mention this too.

Thanks,
Uri Rodberg, Speedy Net.

--
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6228db4a-936d-43de-8bb2-173ade7b48f2n%40googlegroups.com.

Re: Newtwork Marketing System

Hi Everyone!
So I want to know how to implement a binary tree to a web app.
This is how the app works:

—  Person A opens an account
—  Person A refers to people
— Person B invests,
— Person A get 10% of Person B's investment 
So it goes on iteratively.

Please note, nothing here in your description needs (or begs) to be a binary tree.

Have a referred field in the person table, which points to the PK of the person that referred them.

Then you just do a filter on that persons referred field PK to find out who referred them.

Yes, a binary tree is suppose to be one of the faster searches for certain types of data…But as described I'm not sure it's a good fit.

- Benjamin