Posts by K4L1 • 81 points
6 posts
-
1
votes1
answer206
viewsA: Save checkbox status in Asyncstorage
@Wanderson Bueno, the easiest way to solve your problem is by creating a hook that will take the value of the checkbox, identify whenever there is change in it and store in asyncStorage, after that,…
-
1
votes1
answer106
viewsA: Doubt about Python Apis
Man, Python would be a good, because it works on Windows and Linux perfectly. When you talk about (simulates the operation of a "user") I think about automation, which you can do using Lib:…
python-3.xanswered K4L1 81 -
1
votes1
answer351
viewsA: How to Put Value in the Django Will HTML Field?
All right, come on. You can do something like this: Here we create a method to take the database data and pass a dictionary to html: def arquivos(request): arquivos =…
-
0
votes1
answer39
viewsA: Function does not arrive at endpoint - Ionic 3 + Nodejs API
Dude, you’re putting two returns in the same method. Typeerror is on the console.log(). app.post("/teste", function(req, res) { var array = []; try{ res.status(200).send(excecao); try{…
-
1
votes1
answer483
viewsA: How to delete (multiple) branches from a Git repository?
You can create a main branch (it was meant to be the Master, but that’s okay), and merge to specify conflicts. git merge --no-ff nome-branch And then you can do it here: git branch -D 3.2 3.2.1…
-
1
votes1
answer650
viewsA: How to use the Keyboard library?
You can use an automation Lib with Python, for example: pyautogui(Python2) - https://pyautogui.readthedocs.io/en/latest/keyboard.html or pywinauto(Python3) -…