Adarsh
What is the best os for development?
Anonymous
What is the best os for development?
i suggest fedora, it handles dependecies issues very well
Maz
TempleOS
😂😂😂 That's just wrong.
Maz
i suggest fedora, it handles dependecies issues very well
You're telling a newbie to start off on the yum package manager? 🤔 Anyways.
Maz
same dif. Still...
cj
😂😂😂 That's just wrong.
why? do you have something against that OS?
cj
anyway, this convo goes for @PythonOfftopic, not here
Maz
anyway, this convo goes for @PythonOfftopic, not here
Says the one who raised TempleOS in the Django group. 🤗
Maz
Cheers folks.
cj
Says the one who raised TempleOS in the Django group. 🤗
please move to @PythonOfftopic to continue this conversation
Ghorz
What is the best os for development?
You can start off with any os. I believe you're own Microsoft windows system. Since you're a new be, start with HTML. Head to w3schools. With time and dedication, you'll progress to other languages.
cj
s/Mysql/PostgreSQL
I suggest you start in these order: Html Css Javascript Python PostgreSQL Django. Welcome on board.
cj
As long as its a database 👍
but they have big differences, also Django has some specific features to use only with PostgreSQL
cj
😉
Ghorz
Django took last but won't quit it. https://github.com/the-benchmarker/web-frameworks/blob/master/README.md
Ghorz
Yea
Ghorz
Rust took first
Ghorz
I'll stick to Django, love it.
Mirco
Django took last but won't quit it. https://github.com/the-benchmarker/web-frameworks/blob/master/README.md
Django 3 would be full async and benchmarks could be better Also python core devs are working hard to speed it up
Ghorz
I've coded C before python, I'll definitely jump in
Mirco
Python 3.8 solved speed issues, with direct C code
Not at all obviously, but especially Victor Stinner added so many stuff to speed up CPython
Ghorz
Some highlights: python 3.8 * Multiprocessing shared memory * The walrus operator := * The = format specifier for f-strings * Much faster variable access for: globals, builtins, named tuples, class variables, and C function calls * Beefed-up math and statistics modules
Ghorz
https://twitter.com/raymondh/status/1167475599176134656?s=19
Mirco
Django with python 3.8 will be so interesting imho
Maz
Django 3 would be full async and benchmarks could be better Also python core devs are working hard to speed it up
The Python crew needs to work much harder to meet the standards set by the Ruby core devs. Which is why Ruby is Kali's go-to lang for Metasploit, depsite Python being ubiquitous on Linux boxes.
Mirco
Done what?
*said Sorry 😂
Maz
*said Sorry 😂
No worries. I'm saying python folks need to work harder to put us in good standing with Metasploit and Linux.
Maz
I know. Good stuff.
Mirco
Absolutely! Also Django 3.x will be cool
Igor
Hey guys, i need help. I want tô download a csv of a web site, bit i want this download automatic using django rest framework. Someone know How i do It? Any material which can help me?
Igor
i think in put a cron to call a function which do this... i don't know if this possible
Igor
sorry, my english not so good
Mirco
i think in put a cron to call a function which do this... i don't know if this possible
Ok so for csv you can use csv python module For cron django-q or celery beat
Igor
huuum
Igor
thanks
Mirco
Doragonsureiyā
thanks
You're welcome! 😊
Vaibhav
I have a problem in login I have created a custom signup and stored that in default db Signup form has 3 entries Username Email Pwd But when I am trying to login that goes to else part of the method which I have defined in views.py
Ghorz
No worries. I'm saying python folks need to work harder to put us in good standing with Metasploit and Linux.
It's not all that easy. Since it's a goto (general) language, there is so much to focus on. Though with improvements in hardware, language speed is becoming negligible. Your code implementation plays a role too.
Ansab
anybody here help me to check my vpn server outside india/
Doragonsureiyā
anybody here help me to check my vpn server outside india/
looks like you need an offtopic group, please continue this conversation at @pythonofftopic
Shubham
Hello guys
Shubham
https://github.com/shubham1507/school
Shubham
in this Im trying to create the multiuser type registartion with different fields
Shubham
how can I achieve that
Mirco
in this Im trying to create the multiuser type registartion with different fields
https://simpleisbetterthancomplex.com/tutorial/2018/01/18/how-to-implement-multiple-user-types-with-django.html
Shubham
https://simpleisbetterthancomplex.com/tutorial/2018/01/18/how-to-implement-multiple-user-types-with-django.html
" class User(AbstractUser): is_student = models.BooleanField('student status', default=False) is_teacher = models.BooleanField('teacher status', default=False)
Shubham
in which student reg form and teacher reg form having different fields in my case
Shubham
so should I put all fields in UserProfile?
Shubham
sorry
Shubham
https://dpaste.de/5GAS
Mihail
Hi! Help me, please, how ModelAdmin.get_formsets_with_inlines() and InlineModelAdmin.get_formset() are working? Periodicaly have tasks, connected with them. But I can't understand, how I can use it, when I have to have deal with customization of inline objects fields.
Anchit
Anonymous
Python 3.8 solved speed issues, with direct C code
Really, what is the source of this info?
Ghorz
Really, what is the source of this info?
https://twitter.com/raymondh/status/1167475599176134656?s=19
Ghorz
https://docs.python.org/3.8/whatsnew/3.8.html
Ghorz
Python 3.8 solved speed issues, with direct C code
Not exactly direct C code but C function call
Oğuzhan
Guys I lock database for one of the two requests that came at the same time. So one of them block. My question is that the blocked request re-use by django when database released?
carson
Hi guys I am a newbie to django .. I have a question Can you create an HTML template without starting an app
Jijin
yes
carson
yes
How ? Cause I am getting templateDoesNotExist