Posts by Sérgio Lima • 106 points
7 posts
-
2
votes1
answer989
viewsA: CPF/CNPJ mask cannot validate CPF
This happens because you are implementing the same two-data code block, which although they are the same type, has different sizes and formats when they receive special characters, causing greater…
-
-1
votes2
answers562
viewsQ: Is it possible to develop apps on Docker without Hyper-v?
I create applications using HTML, CSS and javascript, and also using frameworks like Ionic. For one reason or another, I’ve always had to manually set up the development environment, which has…
dockerasked Sérgio Lima 106 -
0
votes2
answers562
viewsA: Is it possible to develop apps on Docker without Hyper-v?
The answer is yes! It is possible to develop apps on Docker without Hyper-v. This information came to me while writing this question, but I decided to continue editing for developers who pass for…
dockeranswered Sérgio Lima 106 -
-3
votes1
answer112
viewsQ: How to manage Jquery processing or pure Javascript?
I recently had the following problem in a hybrid application: A command was not executed because another process was faster, and redirected the page. Not knowing how the javascript process…
-
2
votes0
answers32
viewsQ: How to have both restriction and permission in the Cloudfire Store
I’m using firebase as a database, specifically the cloudFire store database. I have a field called comment, which I want to be read by all users at the same time, but only the administrator can…
-
-1
votes1
answer426
viewsQ: How to create a product via SQL in Woocommerce
I am creating a snippet to add a product in wordpress. But I realized that it is not enough to insert the product in the wp_posts table. The query works, the item is inserted in the database, but…
-
2
votes2
answers100
viewsQ: What kind of problems do routes solve?
Every framework in MVC architecture or even other architectures I come across, I find it almost mandatory to configure routes. However, it’s not clear to me what kind of problem that solves, and I…