Posts by Bruno Lima • 49 points
5 posts
-
2
votes1
answer76
viewsQ: Doubt about standard React class
I am starting my first steps with React, I would like to know why the class is not being created in React, when I run the command npx create-react-app creates the structure below. import React from…
-
1
votes1
answer114
viewsQ: Web Crawler with Django’s view.py
I am making a simple web Crawler, using Django 2.0, I want to capture only the "title" class of the news and then render "Return render" to a simple html, below my view.py. I am currently using…
-
1
votes1
answer387
viewsQ: Materialize Javascript autocomplete
I’m using the materialize framework. According to the documentation, I can use "autocomplete" in the form tag according to the link Materialize Form. My doubt, is the following I want to create a…
-
0
votes1
answer153
viewsQ: Redirect Http to Https - Nginx with Let’s Encrypt
At the moment, the domino https://meudominio.com is working, but I can’t redirect http for https using the Let’s Encrypt. I’m following this tutorial: Link Below is my configuration: server { listen…
-
0
votes1
answer635
viewsQ: Django 2.0 - Amigavel Urls
I’m studying Django 2.0.2, and I’m having difficulties in URL friendly together with Slugfield in the models.py class, but I don’t know how to define def get_absolute_url(self): correctly. I can…