Wednesday, November 29, 2023

Re: htmx progress indicator problem - might be caching

Not sure if it's related, but you've got a div inside a p element there:
<p><div hx-get="/hx_usr_progress" hx-trigger="every 1s"></div></p>

That'll probably get corrected by the browser to:
<p></p> <div hx-get="/hx_usr_progress" hx-trigger="every 1s"></div> <p></p>

Another thing is, it doesn't look like there's anything linking the submit button click to the initial htmx request, and there's no htmx in the response. Have you tried replicating the progress bar example?
https://htmx.org/examples/progress-bar/


On Tuesday, November 28, 2023 at 2:26:20 AM UTC Mike Dewhirst wrote:
I'm trying but failing to get htmx to deliver a progress indication.

The task is creating records in the database for each item in a list provided by the logged in user.

The view with the submit button collects the list and does the database insertion. I added a "progress" property to the User model as follows ...

class User(AbstractUser):
      def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.progress = ""
    ...
      def set_progress(self, value):
        self.progress = value
      @property
    def get_progress(self):
        return f"{self.progress}"
    ...
    

In the view I update user.progress with the record insertion counter and get_progress returns the correct value in the view itself as proven by print statements. So that part is working.

In the template, I have ...

  <div class="submit-row">
    <input type="submit" value="     {{ btn_label }}      "/>
  </div>
  <p><div hx-get="/hx_usr_progress" hx-trigger="every 1s"></div></p>

... which in theory should fetch progress every second if the htmx docs are correct. See https://htmx.org/docs/#polling

This is the htmx view ...

def hx_usr_progress(request):
    progress = request.user.progress
    print(f"\n{progress} ... {request.user}")
    return HttpResponse(mark_safe(f"<p>... {progress}</p>"))

When the import [Submit] button is clicked, the print statement in hx_usr_progress fires with a blank progress value as per the User.__init__() method AND on the page beneath the Submit button the 3 dots shown above in the last line of the hx_usr_progress() view but nothing further even though the main view is definitely incrementing the count.

That tells me it is being called at least once instead of every second. It should have fired at least 3 or 4 times.

Or if it did perhaps the original response is cached - I don't know.

How can I get this ticking over?

Thanks for any hints.

Cheers

Mike

--
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/020a98ef-4a10-4560-afdd-0a8b065e7235n%40googlegroups.com.

Tuesday, November 28, 2023

Displaying numbers in languages

Hi,

Since Speedy Match was only in English, I displayed numbers in the English format - with commas as thousand separators. For example today it writes:

The total number of active members on the site is 12,221, of which 2,581 members entered the site in the last week.

Now, I translated Speedy Match into other languages, such as French, German, Spanish, Portuguese and Italian. In these languages I still use the same number formatting as in English:

Le nombre total de membres actifs sur le site est 12,221, dont 2,581 membres entrés sur le site au cours de la dernière semaine.

Die Gesamtzahl der aktiven Mitglieder auf der Website beträgt 12,221, von denen 2,581 Mitglieder die Website in der letzten Woche betreten haben.

Is it better to use formats.number_format and display the numbers in each language differently? Or is it OK to keep it this way? I'm specifically asking people who speak languages such as French, German, Spanish, Portuguese, Italian and Dutch. How important it is to change the thousand separators?

Thanks,
Uri.

--
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/CABD5YeEBFAJK_v4er294-GDqLrRFOsiS1bY1rxmdQve3PNXcig%40mail.gmail.com.

Monday, November 27, 2023

htmx progress indicator problem - might be caching

I'm trying but failing to get htmx to deliver a progress indication.

The task is creating records in the database for each item in a list provided by the logged in user.

The view with the submit button collects the list and does the database insertion. I added a "progress" property to the User model as follows ...

class User(AbstractUser):
      def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.progress = ""
    ...
      def set_progress(self, value):
        self.progress = value
      @property
    def get_progress(self):
        return f"{self.progress}"
    ...
    

In the view I update user.progress with the record insertion counter and get_progress returns the correct value in the view itself as proven by print statements. So that part is working.

In the template, I have ...

  <div class="submit-row">
    <input type="submit" value="     {{ btn_label }}      "/>
  </div>
  <p><div hx-get="/hx_usr_progress" hx-trigger="every 1s"></div></p>

... which in theory should fetch progress every second if the htmx docs are correct. See https://htmx.org/docs/#polling

This is the htmx view ...

def hx_usr_progress(request):
    progress = request.user.progress
    print(f"\n{progress} ... {request.user}")
    return HttpResponse(mark_safe(f"<p>... {progress}</p>"))

When the import [Submit] button is clicked, the print statement in hx_usr_progress fires with a blank progress value as per the User.__init__() method AND on the page beneath the Submit button the 3 dots shown above in the last line of the hx_usr_progress() view but nothing further even though the main view is definitely incrementing the count.

That tells me it is being called at least once instead of every second. It should have fired at least 3 or 4 times.

Or if it did perhaps the original response is cached - I don't know.

How can I get this ticking over?

Thanks for any hints.

Cheers

Mike

Sunday, November 26, 2023

Re: Project together

I am interested

Phone ( WhatsApp): +234-8071-505-514

On Thu, 23 Nov 2023 at 7:13 PM, Youssef Bachraoui <bachraouiyoussef3@gmail.com> wrote:
Hi developer i search to make a group on WhatsApp to begin a project together anyone interested about that?

--
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/d5244e76-6bd3-4bde-bf31-a72720bee1acn%40googlegroups.com.

Disclaimer
This e-mail is intended solely for the named recipient. The information contained in this message is strictly confidential.
  • If you are not the named recipient, you are hereby notified that any use, dissemination or reproduction of this document and or its content is prohibited and may be deemed unlawful.
  • If you are not the named recipient of this e-mail, please notify the sender by a return e-mail and delete all copies of it from your computer and mail.
Any views expressed in this e-mail are those of the individual sender, except where the sender specifically states them to be those of Landmark University, to whom no liability shall be attached whatsoever.

Thank you

--
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/CAAP9wczbDL6n7qW5WARHwGsR8hbVgwV0K%3DdTGJoBqE3aQc4TWA%40mail.gmail.com.

Saturday, November 25, 2023

Re: Simple Ajax Search

you can try typeahead.js

https://twitter.github.io/typeahead.js/

On Thursday, 23 November 2023 at 15:10:24 UTC raghav bajaj wrote:
You can make an AJAX call using the oninput event of the search input field. Use a GET method to fetch the results from the DB in the AJAX call.

On Thu, Nov 23, 2023 at 6:06 PM lone...@gmail.com <lone...@gmail.com> wrote:
Hello all,

   I am looking for a simple how-to on creating an interactive search on a text field.  As the user types the search results change and the user can click on the search result that they want.  I have installed jquery3 and bootstrap5 in my django project.

Thank you.

--
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...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6bc300c2-1d1f-4e87-90bb-1311e2120c77n%40googlegroups.com.


--
Raghav Bajaj
Cell: +91 7420889933

--
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/d3e27813-ac8d-4a92-b99b-72b4777ba414n%40googlegroups.com.

Thursday, November 23, 2023

Re: Project together

I had just started Django but have being a developer if you don't mind am interested. This is my WhatsApp number: +2347081424159

On Thu, 23 Nov 2023 at 19:13, Youssef Bachraoui <bachraouiyoussef3@gmail.com> wrote:
Hi developer i search to make a group on WhatsApp to begin a project together anyone interested about that?

--
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/d5244e76-6bd3-4bde-bf31-a72720bee1acn%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/CAPSG2fdV-WNbfUV7Wzti0LRHmwugVG5qrBGmKVmxNaXuffsiJw%40mail.gmail.com.

Thursday, November 16, 2023

Re: GeoDjango Hosting

No no please don't go to digital ocean..
 I know many people how have much problems... No dedicated cpu.. no fix ressources... No go...

IKT Service <serviceikt354@gmail.com> schrieb am Do., 16. Nov. 2023, 16:35:
Try digital Ocean 

tor. 16. nov. 2023 kl. 15:17 skrev Ernest Okiya <okiyaearnest@gmail.com>:
Hello. GCP will work best for you. Try it out

On Thu, 16 Nov 2023, 02:46 lone...@gmail.com, <lonesoac0@gmail.com> wrote:
Hello all,

    I am looking for a webhosting service that allows me to install qgis software packages on the webhost.  My preferred hosts are either Ubuntu or Debian.  Anyone know of any good solutions?

Thank you.

--
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/e106b78b-847a-451c-87d2-33bb246185f8n%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/CAM2QfqoPbSUHxtcXQVBjM0-_RffOe2agzb2iY465W0%3DFnQ%3DYPg%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/CAA7BsYgs%3DZk8PfXmwtt0u2mhi7GJ72rztXqH-rHV5rfOP6jP_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/CAKGT9mxYw%2BPoY5CV2kmJmH83%2B8pAAo-3JT2Zid6-ZOJkdzi2GQ%40mail.gmail.com.

Wednesday, November 15, 2023

Re: GeoDjango Hosting

Hello,

Take a VPS when you don't need hugh amount of ressources. We have in germany netcup atarts with 3,25€ with 40 GB ssd and you can install every OS what you want or when you need much more ressources then a root server with dedicate CPU. Starts from around 10€ per month with 4 high end cores, i think 6 gb ram and 80GB ssd.


Netcup is a very good Provider.

Regards

lone...@gmail.com <lonesoac0@gmail.com> schrieb am Do., 16. Nov. 2023, 00:45:
Hello all,

    I am looking for a webhosting service that allows me to install qgis software packages on the webhost.  My preferred hosts are either Ubuntu or Debian.  Anyone know of any good solutions?

Thank you.

--
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/e106b78b-847a-451c-87d2-33bb246185f8n%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/CAKGT9mybG5XddUJWPMFSgZ755M499HqTDhUEjOOQDiaB18AubA%40mail.gmail.com.

Re: GeoDjango Hosting

create account with https://osphosting.com

On Thu, Nov 16, 2023 at 2:46 AM lone...@gmail.com <lonesoac0@gmail.com> wrote:
Hello all,

    I am looking for a webhosting service that allows me to install qgis software packages on the webhost.  My preferred hosts are either Ubuntu or Debian.  Anyone know of any good solutions?

Thank you.

--
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/e106b78b-847a-451c-87d2-33bb246185f8n%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/CACng%3DehDPGcg%2BV%3DaLt5WZNj96nPMU4VexTwEB4tAtt12QvUa%2BQ%40mail.gmail.com.

Re: GeoDjango Hosting

Hello. GCP will work best for you. Try it out

On Thu, 16 Nov 2023, 02:46 lone...@gmail.com, <lonesoac0@gmail.com> wrote:
Hello all,

    I am looking for a webhosting service that allows me to install qgis software packages on the webhost.  My preferred hosts are either Ubuntu or Debian.  Anyone know of any good solutions?

Thank you.

--
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/e106b78b-847a-451c-87d2-33bb246185f8n%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/CAM2QfqoPbSUHxtcXQVBjM0-_RffOe2agzb2iY465W0%3DFnQ%3DYPg%40mail.gmail.com.

GeoDjango Hosting

Hello all,

    I am looking for a webhosting service that allows me to install qgis software packages on the webhost.  My preferred hosts are either Ubuntu or Debian.  Anyone know of any good solutions?

Thank you.

--
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/e106b78b-847a-451c-87d2-33bb246185f8n%40googlegroups.com.

Friday, October 27, 2023

How to fix deadlocks with tests?

I'm experiencing deadlocks in my production application occasionally. I'm
using MySQL. Some of these deadlocks are due to insufficient indexing,
and I'd like to fix this with some test-driven development.

How can I write tests that exercise the application concurrently, and
could be used to replicate the deadlocks and then fix them? I use
pytest-django and I use MySQL in my tests; there's a lot of raw SQL and
even some views and stored procedures (😱) in this application and some
of those may be culprits too of course.

I suppose my main question is "how to test bugs that occur due to
concurrency?"

-Josh

--
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/874jicca6t.fsf%40jgardner.tech.

Thursday, October 26, 2023

Re: Dynamic creation of pages

it is possible to share the repo url?

On Wednesday, 25 October 2023 at 18:25:45 UTC+1 Raymond N wrote:
Am working on a website using django and i want to create a dropdown list on the navigation bar such that when i add a title in the admin its added here.

This title should also automatically be a link to a page populated with data attached to that specific title

Does anyone know how i can do this??

Thanks, 
Raymond

--
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/ef9eb3f9-b078-4e2c-a91f-750b699694c9n%40googlegroups.com.

Wednesday, October 25, 2023

Re: Dynamic creation of pages

Give the same statement to ChatGPT and it will give you a very good explanation of this problem.
I did it before with ChatGPT 

On Wed, Oct 25, 2023, 10:25 PM Raymond N <raymondklyn007@gmail.com> wrote:
Am working on a website using django and i want to create a dropdown list on the navigation bar such that when i add a title in the admin its added here.

This title should also automatically be a link to a page populated with data attached to that specific title

Does anyone know how i can do this??

Thanks, 
Raymond

--
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/CAJpDcBRHUKy9V_g-n_o5cd71LKqUPAEfjJxD041%3DEqeaRPmqyA%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/CA%2BEU9cf22-kv3UC%3DBGM0-9fuf_AbJ1RdWEViOhqcNQkmN6hN8w%40mail.gmail.com.

Re: Management command scheduling options

-----BEGIN PGP SIGNATURE-----

wsB5BAABCAAjFiEE/NCg7Xf1UydoVFgpGvW31BqCOLMFAmU5w04FAwAAAAAACgkQGvW31BqCOLMw
Pwf+JWBiojxgNM7lXez5jSto2fuUWuFwkA2VtmWDicidm4S+QtCwVQpQpoYU2V8ZlPhf7SMuKlhw
bztXbxkbP8Jv9x4e+K2B8tXDO8pS9MgVuCZXt2aCG/+hDFThfBa9bqFZ7V8JEq/i1lQ5kfKQAjPX
9sMaz5jMfXEotZklkxm5BQfPWxKZw1uBW5P90QXlEeXpVbWITBPNczEmaDJy/Ajq/30hxoZdXif4
OnZK/DycCXu13H/uivNIgetMOD+KBwjfvsCIFGfMGWFHUokpRjk9hC6XpxS2kpeSytxo8n9X963w
jSKErzQ8JwQemYc9SzzUGXeMjY+QpqLV0IRMs0WTbg==
=sEQT
-----END PGP SIGNATURE-----
On 25/10/2023 11:49 pm, Adam Stein wrote:
On Wed, 2023-10-25 at 08:24 -0400, Larry Martell wrote:
On Wed, Oct 25, 2023 at 5:35 AM Mike Dewhirst <miked@dewhirst.com.au> wrote:

Ahmedrufai

I looked at APScheduler and like Celery it is too much of a sledgehammer for my tiny problem.

I ended up using cron to launch the command each day. It works perfectly.

My task now is to find a way to automate establishment of that crontab entry when the project is migrated to a new server.

How are new servers deployed? How many new servers will be deployed?
If it's a one off thing you are doing manually, you just have to
remember to do it. If there are many, then you should use a tool like
terraform or octopus, or something similar and have that do it.


I use django-crontab myself for cron jobs. That way, I can add or update easily during deployment. Maybe you can make use of that so you can keep everything in your project.

This looks excellent, Adam. Thanks. I'll report back in due course.

Mike



--   
Adam (adam@csh.rit.edu)    
--
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/6433ead4bf666e3ef52ac742df731e0cf7c66743.camel%40csh.rit.edu.


--   Signed email is an absolute defence against phishing. This email has  been signed with my private key. If you import my public key you can  automatically decrypt my signature and be sure it came from me. Your  email software can handle signing.  

Re: Management command scheduling options

-----BEGIN PGP SIGNATURE-----

wsB5BAABCAAjFiEE/NCg7Xf1UydoVFgpGvW31BqCOLMFAmU5woAFAwAAAAAACgkQGvW31BqCOLN6
cQgAixdkq5k1MsxH5Mm5lfSnRZsVmKfqQBBAc+LtUWiBqOfqFlKLAJVSWwpVpobDQi4hMUyGZ75G
DlIzLcuLdOO1R3jzBNhmbln8uWTyHRyQD4GMJpTKFZDO9ySNVFVT9BzXz1OZI6MVrDizsZpE4d6q
wtWB5c++rGAVGStJJRBmzeCySP5gnYSS55RbeL6vBgr4lVh0RW6bdCIx7eEz7yMjSznei7G6/yxH
vREpGhwZ8m5rPdsA+441b2F93gpk0Zf6B8v0JFUv/mthhbk7B/xTS4ALqr78JWwfV375rncZTOJE
i69ba6DlEwhQ49uKYtxkK5v7J9vapWyJe1BdwUrHRQ==
=/gNC
-----END PGP SIGNATURE-----
On 25/10/2023 11:24 pm, Larry Martell wrote:
On Wed, Oct 25, 2023 at 5:35 AM Mike Dewhirst <miked@dewhirst.com.au> wrote:  
  Ahmedrufai    I looked at APScheduler and like Celery it is too much of a sledgehammer for my tiny problem.    I ended up using cron to launch the command each day. It works perfectly.    My task now is to find a way to automate establishment of that crontab entry when the project is migrated to a new server.  
  How are new servers deployed? How many new servers will be deployed?  If it's a one off thing you are doing manually, you just have to  remember to do it.

It is a one-off but I'm assuming it will be someone else needing to do it rather than me.

 If there are many, then you should use a tool like  terraform or octopus, or something similar and have that do it.    


--   Signed email is an absolute defence against phishing. This email has  been signed with my private key. If you import my public key you can  automatically decrypt my signature and be sure it came from me. Your  email software can handle signing.  

Dynamic creation of pages

Am working on a website using django and i want to create a dropdown list on the navigation bar such that when i add a title in the admin its added here.

This title should also automatically be a link to a page populated with data attached to that specific title

Does anyone know how i can do this??

Thanks, 
Raymond

--
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/CAJpDcBRHUKy9V_g-n_o5cd71LKqUPAEfjJxD041%3DEqeaRPmqyA%40mail.gmail.com.

Re: Hire remote Python codeer

I am highly interested in this position. I have been looking for an opportunity like this. With my coding experience since 2012, I deem myself fit for this position. I have been unemployed for quite some time but have been coding and working on projects. My strongest language is C, Python, and Java.

As for the salary range, I am pretty ok with it.

Attached is my resume and cover letter for your reference. I look forward to hearing from you.

Regards,
Emmanuel Uwaifo

On Tue, 24 Oct 2023, 17:29 许三高, <xusangao9896@gmail.com> wrote:
Hire remote Python codeer

We are currently looking for a talented and experienced remote Python programmer to join our team. If you have at least three years of work experience, the ability to independently develop front-end and back-end solutions, strong familiarity with MongoDB, the ability to write automation scripts, and proficiency in Linux system maintenance, then we want to hear from you .

Require:

At least three years of Python programming experience.
Proficient in developing front-end and back-end solutions independently.
Very familiar with MongoDB database administration.
Ability to write automation scripts to streamline processes.
Proficient in Linux system maintenance and troubleshooting.
Have experience in developing web development frameworks flask and django
salary:

Salary range: $1000-$1500 per month.
Starting salary: $1,000 per month.
The probation period is three months, and the salary can be adjusted based on work performance.
Maximum monthly salary is capped at $1,500 based on development skills and performance ratings.

--
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/ec504c58-3352-4ade-a59c-876038dd94fan%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/CADXqmSY26UfTSUcpr3ZBmF2SugQvXEZm_aX6xE-mVd5kCC%2BEag%40mail.gmail.com.

Re: Management command scheduling options

On Wed, 2023-10-25 at 08:24 -0400, Larry Martell wrote:
On Wed, Oct 25, 2023 at 5:35 AM Mike Dewhirst <miked@dewhirst.com.au> wrote:

Ahmedrufai

I looked at APScheduler and like Celery it is too much of a sledgehammer for my tiny problem.

I ended up using cron to launch the command each day. It works perfectly.

My task now is to find a way to automate establishment of that crontab entry when the project is migrated to a new server.

How are new servers deployed? How many new servers will be deployed?
If it's a one off thing you are doing manually, you just have to
remember to do it. If there are many, then you should use a tool like
terraform or octopus, or something similar and have that do it.


I use django-crontab myself for cron jobs. That way, I can add or update easily during deployment. Maybe you can make use of that so you can keep everything in your project.

-- 
Adam (adam@csh.rit.edu)    

Re: Management command scheduling options

Ahmedrufai

I looked at APScheduler and like Celery it is too much of a sledgehammer for my tiny problem. 

I ended up using cron to launch the command each day. It works perfectly.

My task now is to find a way to automate establishment of that crontab entry when the project is migrated to a new server.

Cheers

Mike




--
(Unsigned mail from my phone)



-------- Original message --------
From: Ahmedrufai Otuoze <otuozeahmedrufai@gmail.com>
Date: 24/10/23 00:11 (GMT+10:00)
To: django-users@googlegroups.com
Subject: Re: Management command scheduling options

Hi Mike,

I've implemented something similar to what you mentioned lately. I used this Python package called APScheduler to schedule and run database intensive queries behind the scene and then cache the result for my users to fetch from making their experience super fast.

The APScheduler can be configured to run at any interval daily, weekly, monthly or any customized interval you require. It's a game changer and a quick win for Windows based OS as they don't support the use of Celery or any other Linux based schedulers without WSL.

Do let me know if you're interested in my implementation, I'm open to show you.

Regards 

On Mon, Oct 23, 2023, 11:09 AM Mike Dewhirst <miked@dewhirst.com.au> wrote:
Django docs suggest cron or Windows scheduler for running management commands.

I would like instead to build an internal Django based scheduler - because after migrating to a new server, setting up the new cron task will be forgotten.

Is there a daily (approximately) event in a Django project I can hook into and test the date?

The task is somewhat database intensive and needs to run quarterly for some users, monthly for most and weekly for others depending on their preferences.

Ideas anyone?

Thanks

Mike

--   Signed email is an absolute defence against phishing. This email has  been signed with my private key. If you import my public key you can  automatically decrypt my signature and be sure it came from me. Your  email software can handle signing.  

--
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/7b29b24b-64f0-4f93-9a43-5d8f5e242b57%40dewhirst.com.au.

--
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/CAA50JbfV1VXkpeoXLEcsOp2j0WeXM5dfKH9BbQKLAeipnOhvsQ%40mail.gmail.com.

Tuesday, October 24, 2023

Re: Hiring Django Developer with Front-end skills

I'm interested in this position.

On Tue, 24 Oct 2023 at 02:30, Gabriel Molocea <gabimolocea@gmail.com> wrote:
Looking to hire a fullstack developer for an ongoing project. The project is a crowdsourcing platform running on django 3.


Rate: 20-22$/hour

Send me your CV/linkedin, and we can schedule an intro meeting.

--
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/eece51b3-ce51-40db-9b44-fa42baa7bf10n%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/CAJNd6v9GSbP4N8KRfpHf4E6zGTFp-dd9zgFJtJZaXfepXqT1eA%40mail.gmail.com.

Re: Hiring Django Developer with Front-end skills

I am interested in this position and will be glad to have this opportunity, below are my details



On Wed, Oct 25, 2023, 2:03 AM Hafiza Nafeesa Asif <nafeesa03350@gmail.com> wrote:
I am interested in this position 

On Tue, 24 Oct 2023, 1:59 am Gabriel Molocea, <gabimolocea@gmail.com> wrote:
Looking to hire a fullstack developer for an ongoing project. The project is a crowdsourcing platform running on django 3.


Rate: 20-22$/hour

Send me your CV/linkedin, and we can schedule an intro meeting.

--
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/eece51b3-ce51-40db-9b44-fa42baa7bf10n%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/CAO5ZLjWWd4RnHBQ-dEGpXNEL0o9kin5fGUuZAJoRV8w-Fg1hHA%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/CALXwe2t9Kf8LaJK5nf3boS%3DqHaKyGt5FkQzyiTuNjBjdpu44-Q%40mail.gmail.com.

Re: Hire remote Python codeer

I am a python programmer with morethan 5 years experience. Looking forward to hear from you.thank you

On Tue, Oct 24, 2023, 17:30 许三高 <xusangao9896@gmail.com> wrote:
Hire remote Python codeer

We are currently looking for a talented and experienced remote Python programmer to join our team. If you have at least three years of work experience, the ability to independently develop front-end and back-end solutions, strong familiarity with MongoDB, the ability to write automation scripts, and proficiency in Linux system maintenance, then we want to hear from you .

Require:

At least three years of Python programming experience.
Proficient in developing front-end and back-end solutions independently.
Very familiar with MongoDB database administration.
Ability to write automation scripts to streamline processes.
Proficient in Linux system maintenance and troubleshooting.
Have experience in developing web development frameworks flask and django
salary:

Salary range: $1000-$1500 per month.
Starting salary: $1,000 per month.
The probation period is three months, and the salary can be adjusted based on work performance.
Maximum monthly salary is capped at $1,500 based on development skills and performance ratings.

--
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/ec504c58-3352-4ade-a59c-876038dd94fan%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/CAO2Ykc6Fr42C1Aq5b6UUzh0EuEY1vahRMwgLXZcxO6KZ8pxgPg%40mail.gmail.com.

Re: Hire remote Python codeer

I am interested, however, I am more like 360k per year. I can do entry work as well.

On Tue, Oct 24, 2023 at 11:29 AM 许三高 <xusangao9896@gmail.com> wrote:
Hire remote Python codeer

We are currently looking for a talented and experienced remote Python programmer to join our team. If you have at least three years of work experience, the ability to independently develop front-end and back-end solutions, strong familiarity with MongoDB, the ability to write automation scripts, and proficiency in Linux system maintenance, then we want to hear from you .

Require:

At least three years of Python programming experience.
Proficient in developing front-end and back-end solutions independently.
Very familiar with MongoDB database administration.
Ability to write automation scripts to streamline processes.
Proficient in Linux system maintenance and troubleshooting.
Have experience in developing web development frameworks flask and django
salary:

Salary range: $1000-$1500 per month.
Starting salary: $1,000 per month.
The probation period is three months, and the salary can be adjusted based on work performance.
Maximum monthly salary is capped at $1,500 based on development skills and performance ratings.

--
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/ec504c58-3352-4ade-a59c-876038dd94fan%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/CAHXGZtqNRPUj%3DMjUTbwtr-Awsv070SK%3DTT0c45huhg92QA%2BZLg%40mail.gmail.com.

Re: Hiring Django Developer with Front-end skills


On Tue, 24 Oct 2023, 2:29 am Gabriel Molocea, <gabimolocea@gmail.com> wrote:
Looking to hire a fullstack developer for an ongoing project. The project is a crowdsourcing platform running on django 3.


Rate: 20-22$/hour

Send me your CV/linkedin, and we can schedule an intro meeting.

--
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/eece51b3-ce51-40db-9b44-fa42baa7bf10n%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/CAAr4ktQw6z8ric15GBfCWdSp%2BJKhxUy%2BPFVGdturO03uX-1TKA%40mail.gmail.com.

Re: Hiring Django Developer with Front-end skills

Please find my resume attached

On Tue, 24 Oct, 2023, 2:30 am Gabriel Molocea, <gabimolocea@gmail.com> wrote:
Looking to hire a fullstack developer for an ongoing project. The project is a crowdsourcing platform running on django 3.


Rate: 20-22$/hour

Send me your CV/linkedin, and we can schedule an intro meeting.

--
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/eece51b3-ce51-40db-9b44-fa42baa7bf10n%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/CAK8W62nCcJKQfEJz7QPwmzqaGFYbFVktDQE1W69Rdk%2B_y06HSw%40mail.gmail.com.

Re: Hiring Django Developer with Front-end skills

Here's my resume, I'm interested. 

On Tue, Oct 24, 2023, 10:00 PM Yardley Estiverne <fyardlest1@gmail.com> wrote:
I am really interested, here is my LinkedIn: https://www.linkedin.com/in/fyardlest/

Best Regards,
Yardley L F Estiverne
On Tuesday, October 24, 2023 at 8:30:45 AM UTC-4 Gabriel Molocea wrote:
https://www.linkedin.com/jobs/view/3745361545 Please apply here

On Tuesday, October 24, 2023 at 2:19:37 PM UTC+3 Habeeb Lasisi wrote:
I'm interested... https://linkedin.com/in/habeeb-lasisi

On Mon, Oct 23, 2023 at 9:59 PM Gabriel Molocea <gabim...@gmail.com> wrote:
>
> Looking to hire a fullstack developer for an ongoing project. The project is a crowdsourcing platform running on django 3.
>
> Current app: https://app.zignative.com , I want to add new features, fix bugs and to change the UI to be like this: https://www.figma.com/file/fzLCaCw8FL4rZHrkJ8FZnP/Zignative-V2?type=design&node-id=0%3A1&mode=design&t=WumamG5ko45UFwGW-1
>
> Rate: 20-22$/hour
>
> Send me your CV/linkedin, and we can schedule an intro meeting.
>
> --
> 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...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/eece51b3-ce51-40db-9b44-fa42baa7bf10n%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/c54e2e69-6c4b-411a-9dc2-568baa39bb92n%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/CAADw1swM3AY5JgUYXhqhg66UKa8gzXuG%3D-6F81_U91b6-fhcJQ%40mail.gmail.com.

Re: Hiring Django Developer with Front-end skills

I am really interested, here is my LinkedIn: https://www.linkedin.com/in/fyardlest/

Best Regards,
Yardley L F Estiverne
On Tuesday, October 24, 2023 at 8:30:45 AM UTC-4 Gabriel Molocea wrote:
https://www.linkedin.com/jobs/view/3745361545 Please apply here

On Tuesday, October 24, 2023 at 2:19:37 PM UTC+3 Habeeb Lasisi wrote:
I'm interested... https://linkedin.com/in/habeeb-lasisi

On Mon, Oct 23, 2023 at 9:59 PM Gabriel Molocea <gabim...@gmail.com> wrote:
>
> Looking to hire a fullstack developer for an ongoing project. The project is a crowdsourcing platform running on django 3.
>
> Current app: https://app.zignative.com , I want to add new features, fix bugs and to change the UI to be like this: https://www.figma.com/file/fzLCaCw8FL4rZHrkJ8FZnP/Zignative-V2?type=design&node-id=0%3A1&mode=design&t=WumamG5ko45UFwGW-1
>
> Rate: 20-22$/hour
>
> Send me your CV/linkedin, and we can schedule an intro meeting.
>
> --
> 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...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/eece51b3-ce51-40db-9b44-fa42baa7bf10n%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/c54e2e69-6c4b-411a-9dc2-568baa39bb92n%40googlegroups.com.

Re: Hiring Django Developer with Front-end skills

Bonjour
Vous parlez français
Je suis intéressé
Merci 

Le mar. 24 oct. 2023 à 12:31, Gabriel Molocea <gabimolocea@gmail.com> a écrit :
https://www.linkedin.com/jobs/view/3745361545 Please apply here

On Tuesday, October 24, 2023 at 2:19:37 PM UTC+3 Habeeb Lasisi wrote:
I'm interested... https://linkedin.com/in/habeeb-lasisi

On Mon, Oct 23, 2023 at 9:59 PM Gabriel Molocea <gabim...@gmail.com> wrote:
>
> Looking to hire a fullstack developer for an ongoing project. The project is a crowdsourcing platform running on django 3.
>
> Current app: https://app.zignative.com , I want to add new features, fix bugs and to change the UI to be like this: https://www.figma.com/file/fzLCaCw8FL4rZHrkJ8FZnP/Zignative-V2?type=design&node-id=0%3A1&mode=design&t=WumamG5ko45UFwGW-1
>
> Rate: 20-22$/hour
>
> Send me your CV/linkedin, and we can schedule an intro meeting.
>
> --
> 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...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/eece51b3-ce51-40db-9b44-fa42baa7bf10n%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/58c70e2f-27e9-48fb-bfc3-33cac9dce490n%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/CAFyWy%3DC%3DsmfbCa7TC%3DYwfhr8xY50oq6VkmDtyDaDnaKLGgbgAg%40mail.gmail.com.

Re: Hiring Django Developer with Front-end skills



On Tue, Oct 24, 2023 at 1:30 PM Gabriel Molocea <gabimolocea@gmail.com> wrote:
https://www.linkedin.com/jobs/view/3745361545 Please apply here

On Tuesday, October 24, 2023 at 2:19:37 PM UTC+3 Habeeb Lasisi wrote:
I'm interested... https://linkedin.com/in/habeeb-lasisi

On Mon, Oct 23, 2023 at 9:59 PM Gabriel Molocea <gabim...@gmail.com> wrote:
>
> Looking to hire a fullstack developer for an ongoing project. The project is a crowdsourcing platform running on django 3.
>
> Current app: https://app.zignative.com , I want to add new features, fix bugs and to change the UI to be like this: https://www.figma.com/file/fzLCaCw8FL4rZHrkJ8FZnP/Zignative-V2?type=design&node-id=0%3A1&mode=design&t=WumamG5ko45UFwGW-1
>
> Rate: 20-22$/hour
>
> Send me your CV/linkedin, and we can schedule an intro meeting.
>
> --
> 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...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/eece51b3-ce51-40db-9b44-fa42baa7bf10n%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/58c70e2f-27e9-48fb-bfc3-33cac9dce490n%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/CACF1NJytdSecppLWcPCuwBQYA7NWBeSABLpjNZBvPzWZJyyXkA%40mail.gmail.com.

Form does not import current data from data base

Dear community,
this looks like a django bug to me:
1. (see first image)
By api query I confirm that the last object of class List has the value "Startwert_neu2" in its field a, which was expected.
2. (see second image)
The form "MyForm1_2_3_4" is instantiated using exactly the same command ("List.objects.last().a") to build formchoices3 which enter the corresponding choicefield furtherdown in "MyForm1_2_3_4" (not shown in the image)
3. While running the app my print out (to find the problem) states, that formchoices3 does not contain the expected data "Startwert_neu2" but "mCP purity", which is old data from older objects. So the rendered Form also contains the old data.
To complete the information I also added snippets of views (fourth image) and models (fifth image).
Is this a known issue? 
Thanks in advance,
Stefan

DB-Query.jpgForm.jpgprint out while running.jpgsnippet from views.jpgsnippet from models.jpg

--
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/085fcd6d-13aa-422b-86f9-1e15c2549ac8n%40googlegroups.com.

Re: Hiring Django Developer with Front-end skills

The Subject: Fullstack Developer Application for Crowdsourcing Platform Project

Dear,

I am writing to express my strong interest in the Fullstack Developer position for your ongoing crowdsourcing platform project running on Django. With a passion for web development and a proven track record in creating dynamic and user-friendly applications, I believe I can make a significant contribution to your project.

Here's why I'm an ideal candidate:

**Technical Expertise:**
- I have a deep understanding of Django and have successfully built and maintained several web applications using the framework.
- My proficiency extends to front-end technologies such as HTML, CSS, JavaScript, and popular JavaScript frameworks like React.
- I am experienced in working with databases, APIs, and integrating third-party services to create a seamless user experience.

**Crowdsourcing Experience:**
- I have worked on similar crowdsourcing projects before, which has given me valuable insights into the unique challenges and requirements of such platforms.
- I understand the importance of user engagement, data management, and the scalability of crowdsourcing applications.

**Collaborative Approach:**
- I am a team player who can effectively collaborate with designers, project managers, and other developers to ensure the project's success.
- I am committed to writing clean, maintainable code and following best practices in software development.

**Problem-Solving Skills:**
- I am adept at identifying and solving technical challenges, making me capable of providing innovative solutions when needed.

I would welcome the opportunity to discuss how my skills and experience align with your project's goals and to learn more about the specific requirements of your crowdsourcing platform. I am excited about the prospect of contributing to your project's success and delivering a high-quality application.

Thank you for considering my application. I have attached my LinkedIn profile link
would be happy to provide references upon request. Please feel free to reach out to me at WhatsApp +923459262764 to schedule an interview or discuss any further details.

Sincerely,
Engr. Raja Ghalib

On Tue, 24 Oct 2023, 2:00 am Gabriel Molocea, <gabimolocea@gmail.com> wrote:
Looking to hire a fullstack developer for an ongoing project. The project is a crowdsourcing platform running on django 3.


Rate: 20-22$/hour

Send me your CV/linkedin, and we can schedule an intro meeting.

--
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/eece51b3-ce51-40db-9b44-fa42baa7bf10n%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/CAFODQHeSuJb8%2BnQbXRs0C9T-QdfXZR_yurnqGoHeZiUW7%3DdqyQ%40mail.gmail.com.

Monday, October 23, 2023

Hire remote Python codeer

Hire remote Python codeer

We are currently looking for a talented and experienced remote Python programmer to join our team. If you have at least three years of work experience, the ability to independently develop front-end and back-end solutions, strong familiarity with MongoDB, the ability to write automation scripts, and proficiency in Linux system maintenance, then we want to hear from you .

Require:

At least three years of Python programming experience.
Proficient in developing front-end and back-end solutions independently.
Very familiar with MongoDB database administration.
Ability to write automation scripts to streamline processes.
Proficient in Linux system maintenance and troubleshooting.
Have experience in developing web development frameworks flask and django
salary:

Salary range: $1000-$1500 per month.
Starting salary: $1,000 per month.
The probation period is three months, and the salary can be adjusted based on work performance.
Maximum monthly salary is capped at $1,500 based on development skills and performance ratings.
telegram: https://t.me/easychat3

--
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/ec504c58-3352-4ade-a59c-876038dd94fan%40googlegroups.com.