Posts by Gama • 101 points
9 posts
-
0
votes1
answer8
viewsQ: How to resolve Modulebuilderror
It happened that after upgrading ubunto-18.04 to 20.04 and updating nodejs, started giving error in Module build. Module build failed (from ./node_modules/mini-css-Extract-plugin/dist/Loader.js):…
-
0
votes1
answer8
viewsA: How to resolve Modulebuilderror
SOLUTION - In my case I solved so: I removed /node_modules from my application. Then I reinstalled with yarn install.
-
0
votes1
answer106
viewsA: separate records from field with point and comma separated values in Mysql
Solved. I managed to find the solution here, follow link Comma-separated division of values in Mysql So, my query went like this: SELECT gg.descricao, SUBSTRING_INDEX( SUBSTRING_INDEX(p.grupos, ';',…
-
1
votes1
answer106
viewsQ: separate records from field with point and comma separated values in Mysql
I have two tables in mysql database, GROUPS table and PRODUCTS table. GROUPS +-----------------+ | grupoid | +-----------------+ | 1 | | 2 | | 3 | +-----------------+ PRODUCTS +-----------------+ |…
-
2
votes1
answer2438
viewsQ: Open App when booting android
I made an Android App on Intelxdk, is working normal, now I want it to open automatically when I turn on the phone. I know there are some apps on playstore that do this, but at first I didn’t want…
-
2
votes1
answer367
viewsA: Know which slide you are passing in the bootstrap Carousel
I already found the solution, follow below the link to the example in w3schools http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_js_carousel_event_slide&stacked=h…
javascriptanswered Gama 101 -
1
votes1
answer367
viewsQ: Know which slide you are passing in the bootstrap Carousel
I have a bootstrap slide Carousel, I wanted to know the moment when a particular slide is passing on the screen using javascript or else stop on the last slide.
javascriptasked Gama 101 -
2
votes3
answers260
viewsA: Problem in PHP+Mysql query using LIKE
how about using t.areadasaude IN ('1', '19') instead of LIKE
-
2
votes3
answers17714
viewsA: Disable Submit button to make no multiple calls to the server
If you intend to send the form data, process and receive some feedback, then you must disable the button in beforeSend and after receiving the return in Success you must enable the button again, or…