Posts by WesFerreira • 96 points
7 posts
-
0
votes2
answers728
viewsA: How to search for something in 100% of Mysql database
Well, native man SQL does not possess this feature, but if you want to make a SELECT in all tables in a query you can only use the UNION to bring the records in a single query. SELECT * FROM…
mysqlanswered WesFerreira 96 -
0
votes2
answers131
viewsA: Blank spacing does not leave the html document
Try to take off the bootstrap (to see if it is he who is changing), regardless of the result try to put on the body margin:0 !important;
-
0
votes2
answers452
viewsA: Consume Webservices with Android - Retrofit or Volley?
I "have" (the company I work has hahaha) an application in Native Android and I consume WS but use neither of these two tools for a very important reason in my point of view, maintenance. And I…
-
0
votes1
answer25
viewsA: Optimization of Hybrid Applications
Dude, your solution would take a little bit of the "lag" (get out), because even this solution needs optimization. My suggestion is to use (or research a little about) the Lazy Load (Look at this…
-
2
votes1
answer45
viewsQ: How to use a function of an object as an argument of another function
This is my function that receives an object and uses the attributes of type "Function". FrameWork.prototype.loop = function (objectLoop) { objectLoop.draw(); objectLoop.update();…
-
1
votes2
answers841
viewsA: Retrieve and calculate programmatically generated Edittext values
List<EditText> colecaoEditText = newArrayList<EditText>(); int vezesClicados = 0; addButton.setOnClickListener(new OnClickListener(...){ EditText editText = new…
-
4
votes3
answers291
viewsA: Is it correct to write CSS with Javascript?
I usually say that "if it is possible, it has some use", but expensive WHENEVER it is possible to apply the concept of accountability (each one takes care of what is yours), do it. Since JS comes…