Posts by Jodson Leandro • 154 points
7 posts
-
5
votes2
answers2178
viewsA: Concept of Man-in-the-Middle attack
Technically speaking, when you set up your computer’s routes to reach the network gateway. Which in this case could be your Velox modem, or GVT. To send a package over the network, your computer…
-
-1
votes5
answers3608
viewsA: Can the browser "remember" a password programmatically?
I think the best solution for this is not do. Just read the title once to know that it tends to go wrong. The moment you can think of something, implement it and put it on the air, when someone who…
-
0
votes4
answers701
viewsA: Error in "Git push: fatal: could not read Username" command
Within your project there must be a folder called ". git". Enter this folder, and make sure that the "config" file has the correct address. [remote "origin"] url =…
githubanswered Jodson Leandro 154 -
1
votes1
answer891
viewsA: How to change the focus of Edittext on a Listview?
Create an Edittext List, and store each object in that List. When pressed enter, you check the tight position, and call the next one inside the List. private List<EditText> edits; public View…
-
5
votes7
answers6727
viewsA: In object orientation, why are interfaces useful?
Read a little bit about project patterns that you will understand very well. But there goes a basic example. public interface RepositorioCliente { public void inserir(Cliente cliente); } public…
-
1
votes9
answers17662
viewsA: Error: R cannot be resolved
Import is wrong. If there is any error in xmls, the R class is not generated. Read the warnings and you will know what is wrong with your project.
-
1
votes4
answers271
viewsA: Does the secure API depend entirely on the developer or platform?
Totally safe does not exist. The first question you should ask is: Safe to what type of attacks? When I hear the word API, I understand that the person is making some library to do something. To…