Posts by Gabriel Otto • 47 points
3 posts
-
0
votes1
answer467
viewsQ: Route component does not render - React
I’m having trouble rendering the component when I navigate between routes using history. It turns out that simply the route component is not rendered when I give a history.push('/path'). The url…
reactasked Gabriel Otto 47 -
3
votes1
answer99
viewsQ: Coding Problem Between Javascript Client and Python Server
I have a server socket in Python, follow the code: from socket import * host = '127.0.0.1' port = 6060 try: server = socket(AF_INET, SOCK_STREAM) server.bind((host, port)) server.listen(5)…
-
0
votes2
answers769
viewsQ: JSON request on Instagram
I’m trying to get comments from instagram posts. With the code below, I can catch a json with some information about the post through the post link with a parameter __a=1:…