Re: Help on Creating a Superuser account on render.

2024-04-11 Thread ALINDA Fortunate
Thanks so much for your assistance indeed the issue was I had failed to
visualise my data on railway since I am using an external database. A
friend helped understand that and now I am able to access my admin panel.

Thanks everyone.

On Wed, 10 Apr 2024, 19:59 Luis Zárate,  wrote:

> Maybe something like
>
> python manage.py shell -c "from django.contrib.auth.hashers import
> make_password;from django.contrib.auth.models import User; admin =
> User(username='username', email='exam...@example.com',
> password=make_password('password'),
> is_superuser=True,is_staff=True);admin.save()"
>
>
>
> El dom, 7 abr 2024 a las 2:13, ALINDA Fortunate (<
> alindafortuna...@gmail.com>) escribió:
>
>> It's my external database is postgres on railway.
>>
>> Let me try your opinion and I see.
>>
>> On Sat, 6 Apr 2024, 20:33 Aniket Raj Singh, 
>> wrote:
>>
>>> So you have used render to host your application, you might have
>>> connected an external database (postgreSQL or any other) you might have
>>> used the environment setup to set the database up with the postgreSQL
>>> hosted either on render itself or on a different server, just connect the
>>> database with your application on your local host and create a super user
>>> since the database is same on the render's server's application the
>>> superuser will be same as the superuser you created on the local server
>>> thus you can access the admin panel
>>>
>>>
>>> On Saturday 6 April, 2024 at 9:58:00 pm UTC+5:30 ALINDA Fortunate wrote:
>>>
>>>> Hello I have successfully a django project on render but i have failed
>>>> to access the admin panel
>>>>
>>>> Any idea on how to create a superuser account on a free tier of render
>>>>
>>>> Below is my build.sh file
>>>> #!/usr/bin/env bash
>>>> # Exit on error
>>>> set -o errexit
>>>>
>>>>
>>>>
>>>> # Modify this line as needed for your package manager (pip, poetry,
>>>> etc.)
>>>> pip install -r requirements.txt
>>>>
>>>> # Convert static asset files
>>>> python manage.py collectstatic --no-input
>>>>
>>>> # Apply any outstanding database migrations
>>>> python manage.py migrate
>>>>
>>>> if [[ $CREATE_SUPERUSER ]];
>>>> then
>>>>   python world_champ_2022/manage.py createsuperuser --no-input
>>>> fi
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> ALINDA Fortunate
>>>> Graduate Of Computer Science
>>>> Gulu University
>>>> Passionate about Software Development in Python
>>>> If you can't explain it simply, you don't understand it well enough.
>>>> alindafo...@gmail.com.
>>>> +256 774339676 <+256%20774%20339676> / +256 702910041
>>>> <+256%20702%20910041>
>>>> Kagadi.
>>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/9dabff6a-7f5a-4d30-a097-a128f68a6feen%40googlegroups.com
>>> <https://groups.google.com/d/msgid/django-users/9dabff6a-7f5a-4d30-a097-a128f68a6feen%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAPifpCsa%2BrmS3OWiycH_309ROvMcazv2Z_E76UcZiZKEb%3D3YPg%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAPifpCsa%2BrmS3OWiycH_309ROvMcazv2Z_E76UcZiZKEb%3D3YPg%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
>
>
> --
> "La utopía sirve para caminar" Fernando Birri
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAG%2B5VyOcJ%2BeL3dTgVHfgW1tjH5p6-qHUzKq83t3z8xK7iNFGdQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAG%2B5VyOcJ%2BeL3dTgVHfgW1tjH5p6-qHUzKq83t3z8xK7iNFGdQ%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

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


Re: Help on Creating a Superuser account on render.

2024-04-07 Thread ALINDA Fortunate
It's my external database is postgres on railway.

Let me try your opinion and I see.

On Sat, 6 Apr 2024, 20:33 Aniket Raj Singh, 
wrote:

> So you have used render to host your application, you might have connected
> an external database (postgreSQL or any other) you might have used the
> environment setup to set the database up with the postgreSQL hosted either
> on render itself or on a different server, just connect the database with
> your application on your local host and create a super user since the
> database is same on the render's server's application the superuser will be
> same as the superuser you created on the local server thus you can access
> the admin panel
>
>
> On Saturday 6 April, 2024 at 9:58:00 pm UTC+5:30 ALINDA Fortunate wrote:
>
>> Hello I have successfully a django project on render but i have failed to
>> access the admin panel
>>
>> Any idea on how to create a superuser account on a free tier of render
>>
>> Below is my build.sh file
>> #!/usr/bin/env bash
>> # Exit on error
>> set -o errexit
>>
>>
>>
>> # Modify this line as needed for your package manager (pip, poetry, etc.)
>> pip install -r requirements.txt
>>
>> # Convert static asset files
>> python manage.py collectstatic --no-input
>>
>> # Apply any outstanding database migrations
>> python manage.py migrate
>>
>> if [[ $CREATE_SUPERUSER ]];
>> then
>>   python world_champ_2022/manage.py createsuperuser --no-input
>> fi
>>
>>
>>
>>
>>
>>
>> --
>> ALINDA Fortunate
>> Graduate Of Computer Science
>> Gulu University
>> Passionate about Software Development in Python
>> If you can't explain it simply, you don't understand it well enough.
>> alindafo...@gmail.com.
>> +256 774339676 <+256%20774%20339676> / +256 702910041
>> <+256%20702%20910041>
>> Kagadi.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/9dabff6a-7f5a-4d30-a097-a128f68a6feen%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/9dabff6a-7f5a-4d30-a097-a128f68a6feen%40googlegroups.com?utm_medium=email_source=footer>
> .
>

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


Help on Creating a Superuser account on render.

2024-04-06 Thread ALINDA Fortunate
Hello I have successfully a django project on render but i have failed to
access the admin panel

Any idea on how to create a superuser account on a free tier of render

Below is my build.sh file
#!/usr/bin/env bash
# Exit on error
set -o errexit



# Modify this line as needed for your package manager (pip, poetry, etc.)
pip install -r requirements.txt

# Convert static asset files
python manage.py collectstatic --no-input

# Apply any outstanding database migrations
python manage.py migrate

if [[ $CREATE_SUPERUSER ]];
then
  python world_champ_2022/manage.py createsuperuser --no-input
fi






-- 
ALINDA Fortunate
Graduate Of Computer Science
Gulu University
Passionate about Software Development in Python
If you can't explain it simply, you don't understand it well enough.
alindafortuna...@gmail.com .
+256 774339676 / +256 702910041
Kagadi.

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


Re: Challenge hosting a django project on render

2024-04-05 Thread ALINDA Fortunate
Thanks so much everyone it was rectified indeed the issue was with
migrations.

On Fri, 5 Apr 2024, 15:58 Franky Bonanno,  wrote:

> Makemigrations then migrate
>
> Il ven 5 apr 2024, 10:24 Luciano Martins (luxu)  ha
> scritto:
>
>> Did you run the migrations?
>>
>> Em quinta-feira, 4 de abril de 2024 às 12:43:02 UTC-3, ALINDA Fortunate
>> escreveu:
>>
>>> Hello team I am finding challenges in hosting my project on render it
>>> shows the webservice is live and it brings this error any help
>>>
>>> Error during template rendering
>>>
>>> In template /opt/render/project/src/templates/home.html, error at line
>>> *9*
>>> relation "pages_landingpage" does not exist LINE 1: ...velopment",
>>> "pages_landingpage"."philosophy" FROM "pages_lan... ^
>>> 1 
>>> 2 {% extends "_base.html" %}
>>> 3 {% load static %}
>>> 4
>>> 5 {% block title %}Home{% endblock title %}
>>> 6
>>> 7 {% block content %}
>>> 8 
>>> 9 {% for landingpage in homepage_list %}
>>> 10 
>>> 11 {{landingpage.title}}
>>> 12 
>>> 13
>>> 14 {% if user.is_authenticated %}
>>> 15 Hi {{ user.email }}! Your most welcome.
>>> 16 {% else %}
>>> 17 You are not logged in
>>> 18 Log In
>>> 19 {% endif %}
>>>
>>> But locally its running well
>>>
>>> ALINDA Fortunate
>>> Graduate Of Computer Science
>>> Gulu University
>>> Passionate about Software Development in Python
>>> If you can't explain it simply, you don't understand it well enough.
>>> alindafo...@gmail.com.
>>> +256 774339676 <+256%20774%20339676> / +256 702910041
>>> <+256%20702%20910041>
>>> Kagadi.
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/e2f1866e-70c2-4cf3-a9cb-af9f2eb7ddc1n%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/e2f1866e-70c2-4cf3-a9cb-af9f2eb7ddc1n%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAD0KF_K6iV8dWd-JE1a84zyDwYVPKvQXxPWJQ5Ec31YTTLra1A%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAD0KF_K6iV8dWd-JE1a84zyDwYVPKvQXxPWJQ5Ec31YTTLra1A%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

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


Challenge hosting a django project on render

2024-04-04 Thread ALINDA Fortunate
Hello team I am finding challenges in hosting my project on render it shows
the webservice is live and it brings this error any help

Error during template rendering

In template /opt/render/project/src/templates/home.html, error at line *9*
relation "pages_landingpage" does not exist LINE 1: ...velopment",
"pages_landingpage"."philosophy" FROM "pages_lan... ^
1 
2 {% extends "_base.html" %}
3 {% load static %}
4
5 {% block title %}Home{% endblock title %}
6
7 {% block content %}
8 
9 {% for landingpage in homepage_list %}
10 
11 {{landingpage.title}}
12 
13
14 {% if user.is_authenticated %}
15 Hi {{ user.email }}! Your most welcome.
16 {% else %}
17 You are not logged in
18 Log In
19 {% endif %}

But locally its running well

ALINDA Fortunate
Graduate Of Computer Science
Gulu University
Passionate about Software Development in Python
If you can't explain it simply, you don't understand it well enough.
alindafortuna...@gmail.com .
+256 774339676 / +256 702910041
Kagadi.

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


Re: Help on Django_allauth Login Page

2024-03-08 Thread ALINDA Fortunate
Thank you for your response, okay let me try it

On Fri, Mar 8, 2024 at 5:48 PM Muhammad Juwaini Abdul Rahman <
juwa...@gmail.com> wrote:

> It's part of LoginForm in django_allauth:
> https://github.com/pennersr/django-allauth/blob/main/allauth/account/forms.py#L146
>
> You can subclass LoginForm and omit that part.
>
> On Fri, 8 Mar 2024 at 22:34, ALINDA Fortunate 
> wrote:
>
>> Hello colleagues, I have the following code for my login page using
>> django_allauth but it outputs the *forgot password?* link. How do I edit
>> this?
>>
>> 
>> {% extends "_base.html" %}
>>
>> {%load crispy_forms_tags%}
>>
>> {% block title %}Log In{% endblock title %}
>> {% block content %}
>> Log In
>> {% csrf_token%}
>> {{form | crispy}}
>>
>> Log In
>>
>> 
>> {% endblock content %}
>>
>>
>> And the output has f*orgot** password? link.* How do I remove it or
>> style it?
>>
>> Below is the output.
>>
>>
>> [image: image.png]
>>
>> --
>> ALINDA Fortunate
>> Graduate Of Computer Science
>> Gulu University
>> Passionate about Software Development in Python
>> If you can't explain it simply, you don't understand it well enough.
>> alindafortuna...@gmail.com .
>> +256 774339676 / +256 702910041
>> Kagadi.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAPifpCtpktOM0dRwGceOd2jP5xGRso6xwey7SvDNv%3DSMsZm0yA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAPifpCtpktOM0dRwGceOd2jP5xGRso6xwey7SvDNv%3DSMsZm0yA%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFKhtoSgoD0y_fom1K_pr3w1esm3N3Cj5%2BybqDemv%2BzA7vqeXg%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAFKhtoSgoD0y_fom1K_pr3w1esm3N3Cj5%2BybqDemv%2BzA7vqeXg%40mail.gmail.com?utm_medium=email_source=footer>
> .
>


-- 
ALINDA Fortunate
Graduate Of Computer Science
Gulu University
Passionate about Software Development in Python
If you can't explain it simply, you don't understand it well enough.
alindafortuna...@gmail.com .
+256 774339676 / +256 702910041
Kagadi.

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


Help on Django_allauth Login Page

2024-03-08 Thread ALINDA Fortunate
Hello colleagues, I have the following code for my login page using
django_allauth but it outputs the *forgot password?* link. How do I edit
this?


{% extends "_base.html" %}

{%load crispy_forms_tags%}

{% block title %}Log In{% endblock title %}
{% block content %}
Log In
{% csrf_token%}
{{form | crispy}}

Log In


{% endblock content %}


And the output has f*orgot** password? link.* How do I remove it or style
it?

Below is the output.


[image: image.png]

-- 
ALINDA Fortunate
Graduate Of Computer Science
Gulu University
Passionate about Software Development in Python
If you can't explain it simply, you don't understand it well enough.
alindafortuna...@gmail.com .
+256 774339676 / +256 702910041
Kagadi.

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


Re: help me

2023-09-23 Thread ALINDA Fortunate
You can as well try render

+256774339676

 "If you want to live a happy life, tie it to a goal, not to people or
things."

A graduate of Bachelors Degree of Science in Computer Science of Gulu
University.

@FortunateAlinda
Passionate about Python Development
And Computer related Dynamics

On Sat, Sep 23, 2023, 21:44 Akoo Rahimi  wrote:

> Hello friends
>
> Can you introduce me some sites similar to Heroku?
>
> I just started Django and I want to test my projects on the global server.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/dccab8c0-8d51-4338-a085-300fdfc0eeadn%40googlegroups.com
> 
> .
>

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


Request for Django for Professionals book.

2023-08-31 Thread ALINDA Fortunate
Hello Team .

I am done with Django for beginners.

Any one to share with me Django for professionals 4.0 please .

+256774339676

 "If you want to live a happy life, tie it to a goal, not to people or
things."

A graduate of Bachelors Degree of Science in Computer Science of Gulu
University.

@FortunateAlinda
Passionate about Python Development
And Computer related Dynamics

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


Help on Error while deploying a django app on render.

2023-08-24 Thread ALINDA Fortunate
Hello family some help i have this error

Aug 25 12:28:30 AM  ImportError: Couldn't import Django. Are you sure it's
installed and available on your PYTHONPATH environment variable? Did you
forget to activate a virtual environment?
Aug 25 12:28:30 AM  ==> Build failed 

Yet this is my requirements file and django is installed
asgiref==3.6.0
dj-database-url==2.1.0
Django==4.2.1
gunicorn==21.2.0
packaging==23.1
psycopg2==2.9.7
python-dotenv==1.0.0
sqlparse==0.4.4
typing_extensions==4.7.1
tzdata==2023.3
whitenoise==6.5.0


Kindly help me.
--

ALINDA Fortunate
Graduate Of Computer Science
Gulu University
Passionate about Software Development in Python
If you can't explain it simply, you don't understand it well enough.
alindafortuna...@gmail.com .
+256 774339676 / +256 702910041
Kagadi.

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


Re: iNTRODUCTION

2023-07-09 Thread ALINDA Fortunate
Welcome 珞

+256774339676

 "If you want to live a happy life, tie it to a goal, not to people or
things."

A graduate of Bachelors Degree of Science in Computer Science of Gulu
University.

@FortunateAlinda
Passionate about Python Development
And Computer related Dynamics

On Sun, Jul 9, 2023, 17:54 Emmanuel Kasirivu Lugoloobi <
ema.kasir...@gmail.com> wrote:

> Hello guys im studying network systems engineering in college and
> intrested in becoming a full stack web developer. I am currenlty on break
> will be openning in August,. I stumbled upon Django for begineers and
> learning the insights i the book to pursue my dream to become a
> Professional in the IT indusrty. Glad to be among like mined individulas.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/55f240bf-968c-49c0-8d27-d080427f535dn%40googlegroups.com
> 
> .
>

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


Re: Ideas for Apps and Softwares.

2023-05-23 Thread ALINDA Fortunate
Just identify a community challenge that can be solved using software and
embark on that, it can be a school project, church project or hospital
project.

+256774339676

 "If you want to live a happy life, tie it to a goal, not to people or
things."

A graduate of Bachelors Degree of Science in Computer Science of Gulu
University.

@FortunateAlinda
Passionate about Python Development
And Computer related Dynamics

On Tue, May 23, 2023, 10:31 ALBERT ASHABA AHEEBWA <
ashabaaheebwaalb...@gmail.com> wrote:

> Thank you very much Frank for your insight.
>
> I probably lost sight of what's important for a minute.
>
> Best Regards,
>
> Albert
>
> On Tue, 23 May 2023, 10:24 Frank Chuka,  wrote:
>
>> You have to do hundreds or even thousands of unoriginal things in order
>> to come up with one Original piece. It's like that with every profession
>> that involves skill and creativity.
>>
>> Einstein probably read thousands of other people's paper before he came
>> up with relativity.
>>
>> Picasso probably practiced recreating other people's work before he
>> started churning out his own original masterpieces
>>
>> U r in a process. Just be patient.Working on the boring stuffs today is
>> the price you pay inorder to work on the exciting stuffs tomorrow
>>
>> Sent from Outlook for Android 
>> --
>> *From:* django-users@googlegroups.com  on
>> behalf of ALBERT ASHABA AHEEBWA 
>> *Sent:* Tuesday, May 23, 2023 2:27:20 AM
>> *To:* Django users 
>> *Subject:* Ideas for Apps and Softwares.
>>
>> Hi there,
>>
>> I have been learning to program for almost a year now. I have created a
>> few apps some of which I abandoned at the start, others half way through.
>> None have been original ideas and maybe that's why I lose interest.
>>
>> So I am here looking for that one app idea that will keep me up at night.
>>
>> So if you don't mind me asking, what's that one app that if you could,
>> you would create? It can be personal or for the public.
>>
>>
>> Albert.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/b75aed31-b19a-4288-9c42-9f182cb329a7n%40googlegroups.com
>> 
>> .
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/VI1PR09MB2862ADA9A99365E96B8EBC07F3409%40VI1PR09MB2862.eurprd09.prod.outlook.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAAQecPfnnZsTSUeWveZS0CD91_AU8NpOQpNK5C_oVJ%3DSubG5ow%40mail.gmail.com
> 
> .
>

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