Posts by Tasso Evangelista • 300 points
10 posts
-
0
votes3
answers1741
viewsA: Change the breakpoint (breakpoint) of the navbar
I know this doesn’t directly solve the problem presented, but it really doesn’t seem like a good idea to have specific breakpoints for just one component when it’s usual for all the layout to follow…
-
2
votes1
answer1374
viewsA: What is the unit of measurement of CSS measures in React-Native
All Dimensions in React Native are unitless, and represent Density-Independent pixels. https://facebook.github.io/react-native/docs/height-and-width.html Translating: All dimensions in React Native…
react-nativeanswered Tasso Evangelista 300 -
0
votes1
answer365
viewsA: React Native - Error emulating Android
According to https://stackoverflow.com/a/46415922/1650128, error is related to JDK version: JDK 8 is recommended while you are using JDK 9.…
-
0
votes2
answers1163
viewsA: Copy local computer file to remote via terminal
Beyond the scp, rsync is an excellent option if the server has the SSH service running and rsync also. Works not only for individual files. $ rsync /pathlocal/arquivolocal…
-
2
votes3
answers223
viewsA: PDO Pagination - Fatal error: Out of memory
It’s a bad idea to use PDOStatement::fetchAll() if you have no idea the amount of records that will be returned and stored in memory. Keep in mind that class PDOStatement works also as an iterator,…
-
0
votes2
answers578
viewsA: Slim routing does not work
On the assumption that /frame is the root URI of its implementation - that is, the place, relating to the Document root where the file is index.php which initializes the Slim application - and which…
slimanswered Tasso Evangelista 300 -
3
votes2
answers5374
viewsA: How and when to use exceptions in PHP?
Exception Handling is the process of responding to the Occurrence, During computation, of exceptions - anomalous or Exceptional Events requiring special Processing - often Changing the normal flow…
-
5
votes3
answers16413
viewsA: Run function after some time
I recommend using the plugin hoverIntent. However, it is not something difficult to implement in pure Javascript, with the use of window.setTimeout(callback, millisecs). var hoverIn = function () {…
-
2
votes1
answer176
viewsA: Problems creating media queries for Samsung Galaxy S4
The ideal would be refactoring, because adjusting its layout to specific devices is considered a bad practice. Without further information about what kind of problems you encounter, I believe you…
-
1
votes3
answers992
viewsA: Return only the newest record of each author
The problem is that you are asking for data sorting to be field-based data_discurso in order ascendant (from the oldest to the youngest), when in fact it should be descending (from the newest to the…