Re: Reg: internship

2025-01-17 Thread Anirudh choudhary
1. You guys Should Use https://letsencrypt.org/ to encrypt your connection from HTTP -> HTTPS. 2. Improve your website UI. Guys Don't Fall for this type of unpaid internship and focus purely on learning skills. Thanks On Thu, Jan 16, 2025 at 8:39 PM Emmanuel Uwaifo wrote: > You're so correct.

Re: Urgent help

2021-02-25 Thread Anirudh choudhary
Hello everyone So The possible Solution Could be for python: arr = for i in arr: if i % 10 == 3: print(i) for java int[] arr = new int[10]; // Suppose you have 10 element in your array if you want dynamic array use ArrayList for(int i : arr){ if(i % 10 == 3){ System.

Looking For Internship

2020-08-25 Thread Anirudh choudhary
Hello Everyone I am Anirudh Malik BTech Mechatronics 4th Year Student. I am Currently Looking For an internship in Good Company as a remote intern or developer. I have attached my resume I have Worked With Technology like Django, React Js, Reach FrameWork, AJax, Electron js, HTML5, and css3 an

Re: Site not Secure only on Google Chrome

2020-07-26 Thread Anirudh choudhary
t with Django! > > On Jul 26, 2020, at 11:07 AM, Anirudh choudhary < > anirudhchoudary...@gmail.com> wrote: > > Hello everyone > > I hosted my app on Heroku. when is try to access > www.apnaganna.herokuapp.com it show me secure but when I try to access > https://www.apn

Site not Secure only on Google Chrome

2020-07-26 Thread Anirudh choudhary
Hello everyone I hosted my app on Heroku. when is try to access www.apnaganna.herokuapp.com it show me secure but when I try to access https://www.apnaganna.com on google chrome it shows me not secure. but on any other browser like Opera, Mozilla, IE it is showing me unsecured only in google chrom

Django app to PWA

2020-07-21 Thread Anirudh choudhary
Hello everyone can anyone share me the link how to make your webpage to Progressive web app i have tried django-pwa and other package Thankyou -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Secure Way to send token to javascript

2020-07-21 Thread Anirudh choudhary
Hello everyone I am Making a website on which I am extracting the data from API using ajax request. To Secure my API I use restframe.authtoken.when I am using inline javascript in base.html. I am passing my Token as context data to HTML file and using it but now I put my javascript in static stora

Re: Login and Registration

2020-07-19 Thread Anirudh choudhary
You can simply do it by manipulating the context data like context = { 'form_login':loginform, 'form_signup' :signupform } Thanks On Sun, 19 Jul, 2020, 11:10 PM Exactly musty, wrote: > Read the doc or follow MDN tutorial > > -- > You received this message because you are subscribed to the

Basic security check

2020-07-05 Thread Anirudh choudhary
Hello everyone I have deployed a website on heroku https://apnaganna.herokuapp.com/ What should be my next step to see that my website data is secured. How to stop unauthorised request to view your django rest api urls Thanks 😊 -- You received this message because you are subscribed to the Goo

how to make docker image of your django app

2020-06-17 Thread Anirudh choudhary
I Want to make make a docker image of my Django app using PostgreSQL and unicorn. but I can't find any good tutorial for reference please share my link to if you know any good tutorial My Dockerfile now is like FROM python:3.6 ENV PYTHONUNBUFFERED 1 RUN mkdir /app WORKDIR /app COPY requirements.tx

Connecting gcp cloud SQL instance with django project

2020-05-25 Thread Anirudh choudhary
Hello I am trying to connect gcp SQL instance with my django project I am connecting it as DATABASES = { 'default':env.db() } I am following this guide https://codelabs.developers.google.com/codelabs/cloud-run-django/index.html?index=..%2F..index#0 It is showing me error that no

Re: required help to save SECRET_KEY and Third party Private API key

2020-05-19 Thread Anirudh choudhary
my key thankyou On Tue, May 19, 2020 at 10:54 AM Akshat Zala wrote: > You can refer the link below: > > 1. https://cloud.google.com/community/tutorials/secrets-manager-python > > On Tuesday, 19 May 2020 10:26:17 UTC+5:30, Anirudh choudhary wrote: >> >> Hello ev

required help to save SECRET_KEY and Third party Private API key

2020-05-18 Thread Anirudh choudhary
Hello everyone I am hosting my website on google cloud platform on Ubuntu VM instance. I cannot find a way to set the environment variable in the machine Like when I type on my local machine os.environ.get("SECRET_KEY") it give me the key but when I type the same command on VM instance it shows m

Re: hosting django app on app engine

2020-04-22 Thread Anirudh choudhary
VenkataSivaRamiReddy, < vennavenkat...@gmail.com> wrote: > Hi can you share any reference link. I am looking for deploy my djanago > application but I don't know how to deploy > > On Wed, Apr 22, 2020, 18:44 Anirudh choudhary < > anirudhchoudary...@gmail.com> wrote: > >

hosting django app on app engine

2020-04-22 Thread Anirudh choudhary
hi to all! I am hosting my blogging app on google app engine in a standard environment. the website deploys successfully. but when I try to go to any other URL like anirudhmalik.in to anirudhmalik/blog/list/ it shows me 500 server error on the server side I am using PostgreSQL instance and the logs

Can't find the .sql file when config the MySQL as backend server

2020-04-02 Thread Anirudh choudhary
-- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d

Re: Looking for internship

2019-12-22 Thread Anirudh choudhary
Bhai kya copy paste kar diya kya On Sun, 22 Dec, 2019, 2:24 PM Deepak Singh, wrote: > Hello all > > I am looking for internship in Delhi or pune. I am currently in final year > of engineering from computer science. I am ready to work as part time , > full time, home based. > > Thankyou > > -- >

Looking for internship

2019-12-10 Thread Anirudh choudhary
Hello all I am looking for internship in Delhi or pune. I am currently in 6 sem of engineering mechatronics in ADYPU. I am ready to work as part time , full time, home based. Thankyou -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscrib

Re: Can we make 1 function to check the objects need update and update them

2018-08-29 Thread Anirudh choudhary
I have read it already and the best I found from the documentation is the signals but signals only save when save command is given and it is manually On Thursday, August 30, 2018 at 12:19:17 PM UTC+5:30, Mikhailo Keda wrote: > > Check Django documentation https://docs.djangoproject.com/en/2.1/ >

Re: Help with mi first hello world please problems with urls

2018-08-29 Thread Anirudh choudhary
if you understand English then use include() in your mysite.urls.py which is in from django.urls import include On Wednesday, August 22, 2018 at 10:31:19 PM UTC+5:30, Dario Coronel wrote: > > El problema que tengo es el siguiente soy un novato recien conociendo el > mundo de python y django esta

Re: Base Views error importing articles.models

2018-08-29 Thread Anirudh choudhary
this error means that the module articles is not in the articels and file name models. you may be getting this error because of spelling On Monday, August 27, 2018 at 7:05:43 PM UTC+5:30, Sandy Leon wrote: > > Hello everyone, > > I am trying to add another simple 'home' page to my website which

Can we make 1 function to check the objects need update and update them

2018-08-29 Thread Anirudh choudhary
I am Writing the program which will collect all the content and display it and I want this to be robust but i am not able to find in documentation related this -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

User is not working as foreign Key after the Custom model

2018-08-15 Thread Anirudh choudhary
I have try every thing like (settings.AUTH_USER_MODEL and get_user-model() , User importing from accounts app but when i create hero i always get User as None) #this is my hero app models file from django.db import models from django.conf import settings from accounts.models import User from dja

Re: Help

2018-07-08 Thread Anirudh choudhary
> > HI Umar kambala Indentation means if we consider a case to use a if loop then i can be written like if(condition): do this else: else do this if you getting this error it may you have used the wrong syntax Thank You -- You received this message because you are subscr

Reverse for 'single' with keyword arguments '{'slug': 'sdas'}' not found. 1 pattern(s) tried: ['groups\\/posts\\/in\\/(?P[0-9]+)$']

2018-07-08 Thread Anirudh choudhary
hi I to all the to all who sees this male I am trying one project in which everything is good but when I call something from using slug I got this error Here are my models.py,HTML and HTML while in which I am calling and urls.py in groups directories /*

Re: help

2018-07-06 Thread Anirudh choudhary
Add on_delete = models.CASCADE EVERY WHERE YOU ARE USING FOREIGN KEY On Fri, 6 Jul 2018, 4:43 p.m. Umar Kambala, wrote: > please this the error i got when i run python manage.py makemigrations > > File > "C:\Users\Admin\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django\core\ma