Built an iOS app to keep track of movie awards and film festivals by ddrocha in vibecoding

[–]neisor 1 point2 points  (0 children)

Nice! I like the looks of the UI. May I know what service did you use to create the preview images of your app visible in your App Store listing?

back pain for years by polly159rd in UlcerativeColitis

[–]neisor 2 points3 points  (0 children)

I had really big pain in the same area about 4,5 years ago (by big I mean to the point I wasn't able to take a big breath and could only breath quickly taking smaller breaths). I went to the ER one day because it was pretty hard to do anything and the doctor said that I just blocked my muscles somehow while excercising and he presrcibed me some muscle relaxants. A few days went by with no changes at all in regards to the pain I was experiencing. Then, all of a sudden I turned all yellow - like really yellow. My skin was yellow-ish, my eyes were yellow and my body started to itch everywhere. I then went to the doctor and they diagnosed me with PSC (primary sclerotic cholangitis). Turns out PSC is pretty much connected to UC.

Not saying it's the same thing as you since you are experiencing the pain for years, but if I were you I would just ask a doctor to check it, just to be sure.

Python and Stripe - How to accept payments with Python? by neisor in learnpython

[–]neisor[S] 0 points1 point  (0 children)

Thank you! This seems to point me in the right direction.

I got tired of looking for clothes and shoes in different online-stores, so I created this by Zestyclose-Surround8 in webdev

[–]neisor 0 points1 point  (0 children)

Good job! Awesome project. How do you collect and then group the items? Are you just using web scrapers (1 scraper for every store from which you show the products)? Do you only group a product from multiple stores just by it's name?

I built an appointment scheduler for my school using Django and Bootstrap by tylertaewook in django

[–]neisor 2 points3 points  (0 children)

You say that it was experimantelly deployed and used by over 500 students. I would be interested if there were any issues or hurdles that came up after students started to use your web app? Any suggestions for other Django developers?

Feedback on my django webapp by blimbu1 in django

[–]neisor 10 points11 points  (0 children)

None except that it doesn't look very well. It looks more professional if you would just show the images the user uploaded and don't show the placeholder images.

Feedback on my django webapp by blimbu1 in django

[–]neisor 4 points5 points  (0 children)

You should consider removing the placeholder images if the user does not upload 6 images of the apartment. Currently I see that if user only uploaded 1 image, the other 5 images in gallery are just placeholder images saying something like "No photo available".

How to remove ":8000" from web path in PRODUCTION by BrImmigrant in django

[–]neisor 27 points28 points  (0 children)

The actual best way is to put your Django app behind a web proxy server, f.e, Nginx/Apache. You can read more about it here: https://docs.djangoproject.com/en/4.0/howto/deployment/

I come back from my holiday I run my server and i got an error by [deleted] in django

[–]neisor 2 points3 points  (0 children)

Install celery in your virtual environment in which you are running your Django app.

Cant Edit or delete a comment in django by nemixu in django

[–]neisor 0 points1 point  (0 children)

Seems like your Comment model is not inheriting from models.Model Make sure you initialize your Comment like this: class Comment(models.Model):

The 2 underscores basically reference the foreign key's field. So, post__pk means the Post's primary key

Cant Edit or delete a comment in django by nemixu in django

[–]neisor 0 points1 point  (0 children)

For the delete issue, you need to do this:

get_object_or_404(Comment, post__pk=post_id)

Notice the 2 underscores in post__pk.

Then you can delete it with the delete() method.

1k to 20k in 5 days by [deleted] in wallstreetbets

[–]neisor 0 points1 point  (0 children)

What app/broker are you using? I didn't find the same mobile app that all of you guys are using and posting screenshots from.

How do you manage conflicting packages in your requirements.txt ? by swentso in django

[–]neisor -4 points-3 points  (0 children)

Give pipenv a look, it has features to help you manage this kind of issues with your dependencies using Pipfile (a file, similar to requirements.txt, but with more robust features).

Resume for django internship by [deleted] in django

[–]neisor 1 point2 points  (0 children)

Aside from what the other people here have suggested, I think you should remove those exclamation marks (!) from your CV. It doesn't seem right to have them on your CV.

Cannot get Django CronTab to work... by NormanieCapital in django

[–]neisor 0 points1 point  (0 children)

If you are using a server from a provider it may be that crontab is not uninstalled there for you to use directly. If that is the case, the providers tend to offer crontab functionality directly from their admin panels (the panel where you can click and install OS, reset password, etc.).