Posts by Mauro Alexandre • 117 points
4 posts
-
1
votes4
answers701
viewsA: Error in "Git push: fatal: could not read Username" command
There is an answer to this question in English stackoverflow. https://stackoverflow.com/questions/20871549/error-when-push-commits-with-github-fatal-could-not-read-username In the answer and…
githubanswered Mauro Alexandre 117 -
0
votes7
answers31206
viewsA: How to insert data into DB with jQuery/Javascript without using PHP?
Not, that is not possible, Javascript is a language of use client-side, so it is executed in the user’s browser, not having no relation with the server. Therefore, you do not have direct access to…
-
5
votes4
answers4278
viewsQ: Mysql performance with Innodb in large data mass table
I currently have a table with about 6 million records that in turn perform a large amount of I/O operations, so in the design of the project I chose to use the Innodb instead of Myisam in Mysql,…
-
4
votes7
answers19609
viewsA: How to catch an element inside an iframe?
In fact, it is not possible to work the content of an iframe that is in a different domain than the page that rendered it. However, to solve this problem of message exchange, there is the…