Anders (izzno / gooood) 🇳🇴
How do you guy edit html in pycharm ? Do you just edit and refresh manually in the browser or is there some tools or dev mode available I am unaware of ? Pycharm/Chrome
Andrii
Just edit in Pycharm
Andrii
That’s all
Anders (izzno / gooood) 🇳🇴
I do too but anoying to "ctrl-shift + r" all the time...
Andrii
i don’t know any examples of changing html in editor and see result without reloading
R
https://plugins.jetbrains.com/plugin/7007-liveedit not using it though
Andrii
guys, hi! I need to show any django projects in University, but all my previous projects are commercial and I am not so long in development Maybe, some of you can share any? Any topic, anything
Andrii
nice idea will try now
R
😅
Anonymous
can anyone help me to host my python website? built on Django
Anonymous
actually I am trying to purchase server on digital ocean but they are not accepting my card. and I am complete beginner in web hosting
Anonymous
no it's master card
Milan
Than what's issue specifically?
Anonymous
digital ocean deducted amount from my account and then recredited saying your card is declined
Anonymous
Ur transaction on HDFC Bank DEBIT/ATM Card ending * for Rs. *.90 has been credited/reversed by DIGITALOCEAN COM on 2018-11-17:23:36:05
Anonymous
is there any other options
Milan
Then you might have to talk with customer support if available
Anonymous
which is best server to host Django website
Milan
Try heroku instead
Anonymous
ok I'll try... thank you for your time.
Rajjix
I have tried this but no response
if you bought a domain name, i’ll host it for you on one of my servers
Anonymous
how much it will cost?
Rajjix
i won’t charge you now,
Rajjix
i’ll give you 4-5 month free
Anonymous
after that?
Rajjix
30-50 $ depends on your consumption
Rajjix
Why did i even bother 🤷‍♂️
Satish
Hey
Satish
Web developer group for HTML5 & CSS3 ?
Milan
Front End World New articles about Front End development. JS, CSS, React, Vue, Angular and others! Generative Art: @drawbot_art Admin: @jack2tyler https://t.me/front_end_first
Milan
Web developer group for HTML5 & CSS3 ?
Check out this☝️☝️☝️
Mitko
Hi * I am looking for some good implelemtation of background jobs. Celery is great tool, but I am missing option to restart failed jobs and better monitoring, storing the results and logging (it's critical). Any suggestion?
R
Hi * I am looking for some good implelemtation of background jobs. Celery is great tool, but I am missing option to restart failed jobs and better monitoring, storing the results and logging (it's critical). Any suggestion?
If I don’t remember it wrong, celery app.task decorator had a max_retries parameters, and have you looked at the options you have for monitoring? http://docs.celeryproject.org/en/latest/userguide/monitoring.html
R
Same for logging, it allows you quite a few configurations http://docs.celeryproject.org/en/latest/reference/celery.app.log.html
R
Otherways, you can take a look here https://django-q.readthedocs.io/en/latest/brokers.html but I think proper celery configuration should not give you the problems you mention
Mitko
I was thinking about manual retry/rerun the tasks
Anonymous
can someone please let me know how can I get a freelance job as a Django developer?
Danil
hello there, i have some issue with my rabbitmq as a broker
Danil
amqp.exceptions.AccessRefused: (0, 0): (403) ACCESS_REFUSED - Login was refused using authentication mechanism AMQPLAIN. For details see the broker logfile.
Danil
this one
Danil
i used to auth with same credentials before, but now it's not working
Anonymous
Hey, how to process uploads greater than 1gb in django ??
Anonymous
It can be done by dividing the entire one to chunks and sending data right ?
Anonymous
How actually to implement it ??
R
When deploying with gunicorn as wsgi, are you usually installing it on the own server python interpreter, only in the project venv or first in system interpreter and then creating the venv with —system-site-packages?
George
How actually to implement it ??
You may have to implement some javascript thing and multipart or sth upload
Anonymous
Hello guys I'm trying to create a Spotify like website but don't wanna use flash audio player for streaming the audio files.. what other approach can I use
Anonymous
Shubham
How can I extract specific data from the json data that I have extracted?in scarpy
cj
😢
Shubham
Please help?
Mitko
space?
Shubham
space?
Where?
ⓦⓐⓢⓓⓚⓘⓛⓛⓔⓡ
hello guys, I know how to read text file and print the output in Django. But when change the content of the text file I have to refresh the page to see the latest changes. I want to see the latest changes without page refreshing and the same time.
Luis
No way
Luis
Use javascript and make autorefresh
ⓦⓐⓢⓓⓚⓘⓛⓛⓔⓡ
Use javascript and make autorefresh
thanks a lot bro, I'll try it 😍😍😍
Anonymous
I’m newbie. How to use package in Anaconda for Pycharm?
ʚɞÇherry Łoveʚɞ
I’m newbie. How to use package in Anaconda for Pycharm?
what’s exactly you want ? config path or use Anaconda’s command ?
Anders (izzno / gooood) 🇳🇴
.objects.all().order_by('-updated')[:8] Would you say this is an effeciant way of getting the last updated items ?
Anders (izzno / gooood) 🇳🇴
I know its a generator but im not sure if it will get "all" anyway? I plan to intergrate the postgreSQL later and I assume the search integration there is faster.
Anonymous
what’s exactly you want ? config path or use Anaconda’s command ?
I have a package Numpy in Anaconda but I don’t import it in Pycharm.
cj
I know its a generator but im not sure if it will get "all" anyway? I plan to intergrate the postgreSQL later and I assume the search integration there is faster.
you can use django-debug-toolbar to see all the final SQL scripts that are being generated, but yet that will get only the last 8 items, not the whole table content
ʚɞÇherry Łoveʚɞ
you need config python of Anaconda for your Pycharm’s interpreter.
cj
I have a package Numpy in Anaconda but I don’t import it in Pycharm.
you didn't configure the python interpreter for your project in PyCharm
Anders (izzno / gooood) 🇳🇴
I had no idea the object tools in django where "smart" ... :)
cj
yet another tool i did not know about. thanks!
that's a must have tool, it's very very usefull
Anders (izzno / gooood) 🇳🇴
I can see, i just assumed it applied the filters after getting the data...