Full Stack React & Django [1] - Basic REST API
https://www.youtube.com/watch?v=Uyei2iDA4Hs
/r/django
https://redd.it/anks6n
https://www.youtube.com/watch?v=Uyei2iDA4Hs
/r/django
https://redd.it/anks6n
YouTube
Full Stack React & Django [1] - Basic REST API
In part 1 of this series we will setup a Django app and create a REST API with the Django Rest Framework. We will use Postman for API testing.
Sponsor: DevMountain Bootcamp
https://goo.gl/6q0dEa
Code:
https://github.com/bradtraversy/lead_manager_react_django…
Sponsor: DevMountain Bootcamp
https://goo.gl/6q0dEa
Code:
https://github.com/bradtraversy/lead_manager_react_django…
[R] Facebook has released code and pretrained models for Cross-lingual Language Model Pretraining
It's an impressive piece of work that get state-of-the-art results on Cross-lingual Natural Language Inference and unsupervised Machine Translation (even out-performing supervised Machine Translation in some settings).
The model is a cross-lingual implementation of BERT.
PyTorch implementation and pre-trained models: [https://github.com/facebookresearch/XLM](https://github.com/facebookresearch/XLM)
Paper: [Cross-lingual Language Model Pretraining](https://arxiv.org/abs/1901.07291)
/r/MachineLearning
https://redd.it/anfgwc
It's an impressive piece of work that get state-of-the-art results on Cross-lingual Natural Language Inference and unsupervised Machine Translation (even out-performing supervised Machine Translation in some settings).
The model is a cross-lingual implementation of BERT.
PyTorch implementation and pre-trained models: [https://github.com/facebookresearch/XLM](https://github.com/facebookresearch/XLM)
Paper: [Cross-lingual Language Model Pretraining](https://arxiv.org/abs/1901.07291)
/r/MachineLearning
https://redd.it/anfgwc
GitHub
GitHub - facebookresearch/XLM: PyTorch original implementation of Cross-lingual Language Model Pretraining.
PyTorch original implementation of Cross-lingual Language Model Pretraining. - facebookresearch/XLM
Discussion: What to call the "main" app in your Django Project?
I'm starting a new project and it will be a collection of Django Apps with their own functionality (as intended by the Django Framework). However, I usually create a home/base/main app for the landing page, all of the base templates, static files, ... What is the preferred way to call this or handle this?
/r/django
https://redd.it/anirli
I'm starting a new project and it will be a collection of Django Apps with their own functionality (as intended by the Django Framework). However, I usually create a home/base/main app for the landing page, all of the base templates, static files, ... What is the preferred way to call this or handle this?
/r/django
https://redd.it/anirli
reddit
r/django - Discussion: What to call the "main" app in your Django Project?
5 votes and 17 comments so far on Reddit
Following Flask production deployment tutorials, how safe is it to host a small scale webshop using Flask?
I want to host a really small scale webshop - only meant for a Facebook group - on my Raspberry Pi. I've read that I need to properly deploy it for production, which I intend to do.
My plan is to store addresses locally and have PayPal take care of the payments.
How safe/unsafe is this? Is there something I oughta know before I make this?
/r/flask
https://redd.it/anjos8
I want to host a really small scale webshop - only meant for a Facebook group - on my Raspberry Pi. I've read that I need to properly deploy it for production, which I intend to do.
My plan is to store addresses locally and have PayPal take care of the payments.
How safe/unsafe is this? Is there something I oughta know before I make this?
/r/flask
https://redd.it/anjos8
reddit
r/flask - Following Flask production deployment tutorials, how safe is it to host a small scale webshop using Flask?
8 votes and 11 comments so far on Reddit
Error in documentation
Hi,
I am a beginner. I was going through the getting started documentation and found some typos and error.
[https://docs.djangoproject.com/en/2.1/intro/tutorial03/#writing-more-views](https://docs.djangoproject.com/en/2.1/intro/tutorial03/#writing-more-views)
def detail(request, question_id):
return HttpResponse("You're looking at question %s." % question_id)
def results(request, question_id):
response = "You're looking at the results of question %s."
return HttpResponse(response % question_id)
def vote(request, question_id):
return HttpResponse("You're voting on question %s." % question_id)
Gives the following error:
return HttpResponse("You're voting on question %s", % question_id)
SyntaxError: invalid syntax
To solve the problem I performed
*return* HttpResponse("You're voting on question %s", question\_id) #excluded the '%' prefixed to question\_id
​
I am using Linux python3.7 django 2.1.5.
Will the changes be made or should I make an official report on their site?
If so, How should I sent the error to the django team.
/r/django
https://redd.it/ano2kr
Hi,
I am a beginner. I was going through the getting started documentation and found some typos and error.
[https://docs.djangoproject.com/en/2.1/intro/tutorial03/#writing-more-views](https://docs.djangoproject.com/en/2.1/intro/tutorial03/#writing-more-views)
def detail(request, question_id):
return HttpResponse("You're looking at question %s." % question_id)
def results(request, question_id):
response = "You're looking at the results of question %s."
return HttpResponse(response % question_id)
def vote(request, question_id):
return HttpResponse("You're voting on question %s." % question_id)
Gives the following error:
return HttpResponse("You're voting on question %s", % question_id)
SyntaxError: invalid syntax
To solve the problem I performed
*return* HttpResponse("You're voting on question %s", question\_id) #excluded the '%' prefixed to question\_id
​
I am using Linux python3.7 django 2.1.5.
Will the changes be made or should I make an official report on their site?
If so, How should I sent the error to the django team.
/r/django
https://redd.it/ano2kr
Built a Portfolio website with Django and Bootstrap
A few days back, I shared about a small blog I built with django [here.](https://www.reddit.com/r/django/comments/adrywf/built_a_simple_blog_with_django_and_bootstrap/)
​
I took the feedbacks I got to work on another project.
​
This time I built a Portfolio website.
​
Here is the link to the project:
[https://chuks-portfolio.herokuapp.com/](https://chuks-portfolio.herokuapp.com/)
​
I also made the source code available:
[https://github.com/coolpythoncodes/portfolio](https://github.com/coolpythoncodes/portfolio)
​
Please, I would appreciate your feedback.
/r/django
https://redd.it/anda3j
A few days back, I shared about a small blog I built with django [here.](https://www.reddit.com/r/django/comments/adrywf/built_a_simple_blog_with_django_and_bootstrap/)
​
I took the feedbacks I got to work on another project.
​
This time I built a Portfolio website.
​
Here is the link to the project:
[https://chuks-portfolio.herokuapp.com/](https://chuks-portfolio.herokuapp.com/)
​
I also made the source code available:
[https://github.com/coolpythoncodes/portfolio](https://github.com/coolpythoncodes/portfolio)
​
Please, I would appreciate your feedback.
/r/django
https://redd.it/anda3j
reddit
r/django - Built a simple blog with Django and Bootstrap
25 votes and 29 comments so far on Reddit
How to Make a Desktop GUI Application in Python?
Nowadays Python is one of the most popular programming languages. Specialists value its universality for all types of the tasks. Today, one of the most important qualities is convenience of command execution, but often developers have to write a relatively simple program, the quality criterion of which is an intuitive graphical interface. You have several ways to do this by means of Python. The following development tools are among the most popular:
* [PyQt](https://pypi.org/project/PyQt5/). The widespread Qt library, which implementations are available in various languages. It’s written in C++ and is cross-platform. This library allows the development of applications that have familiar and ordinary appearance in the general sense of this word.
* [Tkinter](https://docs.python.org/3/library/tkinter.html)**.** This tool is often referred to as standard for developing GUI applications in Python, appeared back in the early 90s of the twentieth century. Due to the long history and ease of use, Tkinter has a rather extensive and active community. It’s thanks to it you can find a large number of semi-finished products or publications in the network and get an answer to any question at specialized forums.
* [WxPython](https://wxpython.org)**.** Another descendant of C++, namely WxPython, links the wxWidgets cross-platform library with Python. In some ways, Tkinter and
/r/Python
https://redd.it/anpkle
Nowadays Python is one of the most popular programming languages. Specialists value its universality for all types of the tasks. Today, one of the most important qualities is convenience of command execution, but often developers have to write a relatively simple program, the quality criterion of which is an intuitive graphical interface. You have several ways to do this by means of Python. The following development tools are among the most popular:
* [PyQt](https://pypi.org/project/PyQt5/). The widespread Qt library, which implementations are available in various languages. It’s written in C++ and is cross-platform. This library allows the development of applications that have familiar and ordinary appearance in the general sense of this word.
* [Tkinter](https://docs.python.org/3/library/tkinter.html)**.** This tool is often referred to as standard for developing GUI applications in Python, appeared back in the early 90s of the twentieth century. Due to the long history and ease of use, Tkinter has a rather extensive and active community. It’s thanks to it you can find a large number of semi-finished products or publications in the network and get an answer to any question at specialized forums.
* [WxPython](https://wxpython.org)**.** Another descendant of C++, namely WxPython, links the wxWidgets cross-platform library with Python. In some ways, Tkinter and
/r/Python
https://redd.it/anpkle
PyPI
PyQt5
Python bindings for the Qt cross platform application toolkit
django-taggit vs PostgreSQL ArrayField - I know the differences, but what are the technical implications
Hey guys.
I'm currently working with django-taggit for my "Tag" fields, because for quick prototyping I just use sqlite. However now I'm almost done and I have to work on a more serious setup. I will be using PostgreSQL as my main production (and dev) database. And I like to use as few external third-party packages as possible. That includes django-taggit. I would like to replace this with a Postgres ArrayField. Since django-taggit uses a `form.save_m2m()` it looks like it just uses a ManyToMany Field. And I understand that also.
But I don't have enough in-depth knowledge. What are the actual technical implications? Are ArrayFields significantly faster? Are there any up/down-sides I'm not seeing for either of the two? Is there even any significant difference between the two?
Thanks so much in advance. I hope this is of interest to others as well.
/r/django
https://redd.it/and0gd
Hey guys.
I'm currently working with django-taggit for my "Tag" fields, because for quick prototyping I just use sqlite. However now I'm almost done and I have to work on a more serious setup. I will be using PostgreSQL as my main production (and dev) database. And I like to use as few external third-party packages as possible. That includes django-taggit. I would like to replace this with a Postgres ArrayField. Since django-taggit uses a `form.save_m2m()` it looks like it just uses a ManyToMany Field. And I understand that also.
But I don't have enough in-depth knowledge. What are the actual technical implications? Are ArrayFields significantly faster? Are there any up/down-sides I'm not seeing for either of the two? Is there even any significant difference between the two?
Thanks so much in advance. I hope this is of interest to others as well.
/r/django
https://redd.it/and0gd
reddit
r/django - django-taggit vs PostgreSQL ArrayField - I know the differences, but what are the technical implications
4 votes and 1 comment so far on Reddit
[D] Sharing my personal resource list for deep learning comprehension
Since I always like to have some theoretical knowledge (often shallow) of modern techniques, I complied this list of (free) courses, textbooks and references for an educational approach to deep learning and neural nets.
* [Deep Learning (CS 1470)](http://cs.brown.edu/courses/cs1470/index.html)
* [Deep Learning Book](https://www.deeplearningbook.org/) [\[GitHub\]](https://github.com/janishar/mit-deep-learning-book-pdf) [\[tutorial\]](http://www.iro.umontreal.ca/~bengioy/talks/lisbon-mlss-19juillet2015.pdf) [\[videos\]](https://www.youtube.com/channel/UCF9O8Vj-FEbRDA5DcDGz-Pg/videos)
* [Dive into Deep Learning](https://d2l.ai/) [\[GitHub\]](https://github.com/d2l-ai/d2l-en) [\[pdf\]](https://en.d2l.ai/d2l-en.pdf) [\[STAT 157\]](http://courses.d2l.ai/berkeley-stat-157/index.html)
* [Neural Network Design](http://hagan.okstate.edu/nnd.html) [\[pdf\]](http://hagan.okstate.edu/NNDesign.pdf)
* [Neural Networks and Deep Learning](http://neuralnetworksanddeeplearning.com/) [\[GitHub\]](https://github.com/mnielsen/neural-networks-and-deep-learning) [\[pdf\]](http://static.latexstudio.net/article/2018/0912/neuralnetworksanddeeplearning.pdf) [\[solutions\]](https://github.com/reachtarunhere/nndl/blob/master/2016-11-22-ch1-sigmoid-2.md)
* [Theories of Deep Learning (STATS 385)](https://stats385.github.io/) [\[videos\]](https://www.researchgate.net/project/Theories-of-Deep-Learning)
* [Theoretical Principles for Deep Learning (IFT 6085)](http://mitliagkas.github.io/ift6085-dl-theory-class-2019/)
Do with it, as you will. Any new books/updates that I'm missing here?
/r/MachineLearning
https://redd.it/anrams
Since I always like to have some theoretical knowledge (often shallow) of modern techniques, I complied this list of (free) courses, textbooks and references for an educational approach to deep learning and neural nets.
* [Deep Learning (CS 1470)](http://cs.brown.edu/courses/cs1470/index.html)
* [Deep Learning Book](https://www.deeplearningbook.org/) [\[GitHub\]](https://github.com/janishar/mit-deep-learning-book-pdf) [\[tutorial\]](http://www.iro.umontreal.ca/~bengioy/talks/lisbon-mlss-19juillet2015.pdf) [\[videos\]](https://www.youtube.com/channel/UCF9O8Vj-FEbRDA5DcDGz-Pg/videos)
* [Dive into Deep Learning](https://d2l.ai/) [\[GitHub\]](https://github.com/d2l-ai/d2l-en) [\[pdf\]](https://en.d2l.ai/d2l-en.pdf) [\[STAT 157\]](http://courses.d2l.ai/berkeley-stat-157/index.html)
* [Neural Network Design](http://hagan.okstate.edu/nnd.html) [\[pdf\]](http://hagan.okstate.edu/NNDesign.pdf)
* [Neural Networks and Deep Learning](http://neuralnetworksanddeeplearning.com/) [\[GitHub\]](https://github.com/mnielsen/neural-networks-and-deep-learning) [\[pdf\]](http://static.latexstudio.net/article/2018/0912/neuralnetworksanddeeplearning.pdf) [\[solutions\]](https://github.com/reachtarunhere/nndl/blob/master/2016-11-22-ch1-sigmoid-2.md)
* [Theories of Deep Learning (STATS 385)](https://stats385.github.io/) [\[videos\]](https://www.researchgate.net/project/Theories-of-Deep-Learning)
* [Theoretical Principles for Deep Learning (IFT 6085)](http://mitliagkas.github.io/ift6085-dl-theory-class-2019/)
Do with it, as you will. Any new books/updates that I'm missing here?
/r/MachineLearning
https://redd.it/anrams
GitHub
GitHub - janishar/mit-deep-learning-book-pdf: MIT Deep Learning Book in PDF format (complete and parts) by Ian Goodfellow, Yoshua…
MIT Deep Learning Book in PDF format (complete and parts) by Ian Goodfellow, Yoshua Bengio and Aaron Courville - janishar/mit-deep-learning-book-pdf
Looking for some Django buddies
Hello everyone!
I started learning web development last year somewhere around January and I've noticed that more I learn, less people are interested when I talk about web stuff. Lately all I get are headnods and "mhm" replies. It kinda sucks because I really enjoy learning these things and would like to share with someone, but my family and friends have zero interest in this stuff.
I've been following this community for a while now and I can see that there are a lot of skilled people that share the same interest as me, so if there's someone who would like to talk with me from time to time, whether you're a guy or a girl, expert or beginner like me, just let me know! :)
I'm from Slovakia, so I'm looking for someone who's preferably from Europe, can speak English, Slovak or Czech language and is at least 18 years old (since I'm 26 and feel like I don't belong in the teen category anymore)..
I'm using Discord for communication, so just message me your Discord tag and I will add you right away. :D
​
Thank you!
​
​
/r/django
https://redd.it/anttdx
Hello everyone!
I started learning web development last year somewhere around January and I've noticed that more I learn, less people are interested when I talk about web stuff. Lately all I get are headnods and "mhm" replies. It kinda sucks because I really enjoy learning these things and would like to share with someone, but my family and friends have zero interest in this stuff.
I've been following this community for a while now and I can see that there are a lot of skilled people that share the same interest as me, so if there's someone who would like to talk with me from time to time, whether you're a guy or a girl, expert or beginner like me, just let me know! :)
I'm from Slovakia, so I'm looking for someone who's preferably from Europe, can speak English, Slovak or Czech language and is at least 18 years old (since I'm 26 and feel like I don't belong in the teen category anymore)..
I'm using Discord for communication, so just message me your Discord tag and I will add you right away. :D
​
Thank you!
​
​
/r/django
https://redd.it/anttdx
reddit
r/django - Looking for some Django buddies
13 votes and 10 comments so far on Reddit
Question about * instead of a line number
Good Afternoon - Really sorry about posting a thread about this but i'm at my wits end here trying to figure this out.
I'm working in Jupyter (new to python) and am simply trying to run any code... at all. I have been unsuccessful. When i put any code in and hit run, an asterisk shows up instead of a line number and Jupyter creates a new line. So i'm expecting \[1\], \[2\], etc and instead i get \[\*\] for any and all types of code i try to run. I haven't been able to run one line of code in Jupyter using either the play button or hotkeys.
Obvi i am a beginner but i've been working with R for a little and wanted to try Python out. Ran across Jupyter from the IBM Coursera program. Anyone know how to fix this? i can't seem to find an answer for this anywhere and its probably something super simple and i'll feel stupid but please help anyone lol......
/r/IPython
https://redd.it/anvisy
Good Afternoon - Really sorry about posting a thread about this but i'm at my wits end here trying to figure this out.
I'm working in Jupyter (new to python) and am simply trying to run any code... at all. I have been unsuccessful. When i put any code in and hit run, an asterisk shows up instead of a line number and Jupyter creates a new line. So i'm expecting \[1\], \[2\], etc and instead i get \[\*\] for any and all types of code i try to run. I haven't been able to run one line of code in Jupyter using either the play button or hotkeys.
Obvi i am a beginner but i've been working with R for a little and wanted to try Python out. Ran across Jupyter from the IBM Coursera program. Anyone know how to fix this? i can't seem to find an answer for this anywhere and its probably something super simple and i'll feel stupid but please help anyone lol......
/r/IPython
https://redd.it/anvisy
reddit
r/IPython - Question about * instead of a line number
1 vote and 0 comments so far on Reddit
Proper way to host user images with Django?
I’m looking for some information on how to keep user uploaded images with Django. It doesn’t seem like I should just keep them in the media folder. What’s the proper way to do it in a production environment with a lot of users? Any links to teach this would be appreciated.
/r/djangolearning
https://redd.it/anvw12
I’m looking for some information on how to keep user uploaded images with Django. It doesn’t seem like I should just keep them in the media folder. What’s the proper way to do it in a production environment with a lot of users? Any links to teach this would be appreciated.
/r/djangolearning
https://redd.it/anvw12
reddit
r/djangolearning - Proper way to host user images with Django?
0 votes and 1 comment so far on Reddit
Full Stack React & Django [1] - Basic REST API
https://www.youtube.com/watch?v=Uyei2iDA4Hs
/r/djangolearning
https://redd.it/anwopu
https://www.youtube.com/watch?v=Uyei2iDA4Hs
/r/djangolearning
https://redd.it/anwopu
YouTube
Full Stack React & Django [1] - Basic REST API
In part 1 of this series we will setup a Django app and create a REST API with the Django Rest Framework. We will use Postman for API testing.
Sponsor: DevMountain Bootcamp
https://goo.gl/6q0dEa
Code:
https://github.com/bradtraversy/lead_manager_react_django…
Sponsor: DevMountain Bootcamp
https://goo.gl/6q0dEa
Code:
https://github.com/bradtraversy/lead_manager_react_django…
Al Sweigart, author of many python books is now streaming on Twitch!
https://www.twitch.tv/alsweigart
/r/Python
https://redd.it/ao0bxg
https://www.twitch.tv/alsweigart
/r/Python
https://redd.it/ao0bxg
Twitch
AlSweigart - Twitch
Software developer and author of "Automate the Boring Stuff with Python" and other programming books. Last name rhymes w/ "why dirt". Atheist. Anti-fascist. Mostly harmless. He/Him.
Cookies vs. Sessions
When a decision has to be made when it comes utilizing a cookie or a session what factors are taken into account? Essentially I'm looking for commonly used practices between the two concepts.
/r/flask
https://redd.it/ao0np5
When a decision has to be made when it comes utilizing a cookie or a session what factors are taken into account? Essentially I'm looking for commonly used practices between the two concepts.
/r/flask
https://redd.it/ao0np5
reddit
r/flask - Cookies vs. Sessions
8 votes and 11 comments so far on Reddit
Try out the walrus operator in Python 3.8
https://medium.com/hultner/try-out-walrus-operator-in-python-3-8-d030ce0ce601
/r/Python
https://redd.it/ao5e8y
https://medium.com/hultner/try-out-walrus-operator-in-python-3-8-d030ce0ce601
/r/Python
https://redd.it/ao5e8y
Medium
Try out walrus operator in Python 3.8
Get started with Python 3.8 alpha 1
What is Python? Why Python? Why has it become so popular in so little time? Do you also have these questions in your mind? Do watch this video to learn more about this awesome programming language. #IntroductionToPython #PythonBasics #PythonForBeginners
http://intellipaat-youtube.clickable.cards/card/HBAZAc
/r/IPython
https://redd.it/ao7378
http://intellipaat-youtube.clickable.cards/card/HBAZAc
/r/IPython
https://redd.it/ao7378
YouTube
Introduction to Python | Python Basics | Python For Beginners | Why Python Programming | Intellipaat
This Introduction to Python video will help you learn Python from scratch where you will understand Python basics, what is Python, who invented Python, why P...
[P] How to use BERT in Kaggle Competitions - A tutorial on fine-tuning and model adaptations
A step-by-step tutorial on how to adapt and finetune BERT for a Kaggle Challenge classification task: The [Kaggle Toxic Comment Classification Challenge](https://www.kaggle.com/c/jigsaw-toxic-comment-classification-challenge).
This post covers pretty much everything from data processing to model modifications with code examples for each part.
Results are in the top-10% of this $35.000 competition with a single model modified in 30 lines of code.
Link: [https://medium.com/huggingface/multi-label-text-classification-using-bert-the-mighty-transformer-69714fa3fb3d](https://medium.com/huggingface/multi-label-text-classification-using-bert-the-mighty-transformer-69714fa3fb3d)
/r/MachineLearning
https://redd.it/ao23cp
A step-by-step tutorial on how to adapt and finetune BERT for a Kaggle Challenge classification task: The [Kaggle Toxic Comment Classification Challenge](https://www.kaggle.com/c/jigsaw-toxic-comment-classification-challenge).
This post covers pretty much everything from data processing to model modifications with code examples for each part.
Results are in the top-10% of this $35.000 competition with a single model modified in 30 lines of code.
Link: [https://medium.com/huggingface/multi-label-text-classification-using-bert-the-mighty-transformer-69714fa3fb3d](https://medium.com/huggingface/multi-label-text-classification-using-bert-the-mighty-transformer-69714fa3fb3d)
/r/MachineLearning
https://redd.it/ao23cp
Kaggle
Toxic Comment Classification Challenge
Identify and classify toxic online comments