Posts by Pedro Daher • 155 points
12 posts
-
5
votes1
answer820
viewsQ: Element has the type any implicitly when trying to access a property of a module namespace (object)
Works: import * as Icons from 'react-icons/fa'; ... const teste = 'FaAddressBook'; const Icon = Icons[teste]; Doesn’t work: import * as Icons from 'react-icons/fa'; ... const teste:string =…
-
0
votes1
answer199
viewsQ: Promises Sequential - Node
I am trying to create a string of sequential Promises in Node.js and it is not running one at a time but all! You should perform as follows: Promise1 -> (then) -> Promise2 -> (then) ->…
-
1
votes1
answer365
viewsQ: Public Directory - Node.js
Public Directory Node.js I’m having problems releasing a public directory on Node.js. I need everything in the directory public is accessible via direct URL. I’ve tried to use…
-
0
votes0
answers113
viewsQ: Error Compiling Android - firebase
I’m having problems compiling APK by Ionic. I’ve removed Android Studio and downloaded again. I’ve removed and installed Android again. But it didn’t work. ionic cordova build android Returns the…
-
0
votes1
answer592
viewsQ: How to use Mysql in Java EE?
I have a java (desktop) application that does some operations in writing the logs to a table in Mysql, I need to do a page that will show me this log. I did some tests, but did not succeed. I am…
-
1
votes1
answer642
viewsQ: Error compiling Ionic - Android
all right? I’m having trouble compiling the APK by Ionic. I already removed Android Studio and downloaded again. But it did not work. If I try to compile by the terminal it from the error, but if I…
-
3
votes1
answer247
viewsA: Chatbot PHP - Facebook Messenger
I come to share the solution. I started to record in txt of every post that was sent, and noticed that facebook itself generates the loop, however as it is not my Bot that is sending the message…
-
1
votes1
answer247
viewsQ: Chatbot PHP - Facebook Messenger
Hello, all right? I’m creating a chatbot but I’m having problems with the HTTP request (POST). When I call a function to send the POST to Facebook Messenger it seems to me that it loops and starts…
-
0
votes1
answer307
viewsQ: PHP Slow - Code or Hosting?
I am having frequent problems with PHP, perhaps because I am creating in a "simple" way, or it would be my hosting that is basic? Use of Locaweb’s Hosting I plan. I am creating a system that will…
-
0
votes0
answers223
viewsQ: Capture ASP.NET MVC email attachments
all right? I am starting my studies in ASP.NET MVC (C#) and I wish you could help me with a problem that I am very lost. I need to connect in a mailbox and capture all attachments that have…
-
0
votes2
answers656
viewsA: Mysql query with PHP
Thank you all! I confess that I solved my problem and learned a function that I did not yet know. For this problem I decided to create an "Active" table to know whether or not the order enters the…
-
1
votes2
answers656
viewsQ: Mysql query with PHP
I’m making an appointment at Mysql to return the quantity of orders that were not delivered. To see what was delivered I do: $result = mysql_query("SELECT operacional FROM `pedidos` WHERE `status` =…