Posts by Wagner Santos • 13 points
3 posts
-
0
votes1
answer33
viewsA: How to create a class attribute with predefined Python types?
Starting from python 3.6 (if I’m not mistaken), it allows creating classes like this: class Foo: nome: str idade: int def __init__(self, nome: str, idade: int): self.nome = nome self.idade = idade…
-
0
votes1
answer44
viewsA: Local server Node.js does not find html file
Tries fs.readFile(__dirname+'/index.html'....
-
0
votes1
answer219
viewsQ: React Native - Appregistry.registerComponent with Provider
I would like to know why when I use the Preview like this //Root.js import React from 'react'; import { combineReducers, createStore, applyMiddleware } from "redux" import { listaDesejosList,…