Posts by Danilo Silva • 307 points
21 posts
-
0
votes1
answer31
viewsA: Route is not executed when called after Paypal checkout
This stretch should have the API 5000 port instead of 3000. "return_url": "http://localhost:5000/success", "cancel_url": "http://localhost:5000/cancel"
-
1
votes1
answer31
viewsQ: Route is not executed when called after Paypal checkout
Successful route is not activated after Paypal checkout that redirects to /Success PS: My view is in English. This is the part that is not being called when accessing /Success app.get('/success',…
-
1
votes1
answer66
viewsQ: How do code to look an if just after you have changed the prop of an object?
I have a form that when I click send leaves red the field that is empty. It makes different validations in each of the fields. Only when all fields are gray border it sends the data via post and…
-
0
votes1
answer52
viewsA: Why aren’t header-logo and header-links on the same line?
The answer was to let display:grid in all classes and parent classes do: align-items: center; justify-content: space-between; grid-template-areas: 'header-logo header-links' If I create daughter…
-
0
votes1
answer52
viewsQ: Why aren’t header-logo and header-links on the same line?
.container { width: 100%; display: grid; align-content: center; grid-gap: 10px; grid-template-columns: auto; grid-template-rows: 3fr 15fr 10fr auto; grid-template-areas: 'header-top header-top'…
-
0
votes1
answer71
viewsA: I am having the problem with webpack 404 "cannot get". What can it be?
The problem was solved by adding contentBase: path.Join(__dirname, '/dist/Assets/') to devserver. The code there is updated with the changes.
-
1
votes1
answer71
viewsQ: I am having the problem with webpack 404 "cannot get". What can it be?
Here my config: var path = require('path'); const webpack = require('webpack'); const publicPath = '/dist/assets/'; module.exports = { entry: './src/index.js', devtool: 'cheap-module-source-map',…
-
0
votes1
answer15
viewsA: Switchcase made for REACTFLUX is not getting the right case
Well it looks like Flux doesn’t have state and these Components stops. I talked to the official group of the team React and the best option for me is to do a gambiarra or go to Redux. I only have…
-
0
votes1
answer15
viewsQ: Switchcase made for REACTFLUX is not getting the right case
Why aren’t you getting the.type action? just exits by default. The log is saying "editing" which is the default case instead of creating a new article. The code handleActions(action) { switch…
-
2
votes1
answer87
viewsQ: Values are being sent nulls
For some reason the arrays are being sent null in setListGrades, but inside the log shows the normal arrays. The API is being consumed correctly, so it is null when sending this method? @Override…
-
0
votes0
answers32
viewsQ: Rxjava receiving the data
How to separate this array into 3 arrays, like one for gradesList, one for faultList and one for classList. To use Rxjava. [Gradelist(gradesList=4.5, faultList=5, classList=Math),…
-
0
votes0
answers419
viewsQ: Create popup window on android?
I created this code here but something is wrong, because every time I click on the button that activates the popup the app closes. //Button private Button pesquisar; private PopupWindow…
-
7
votes1
answer1097
viewsQ: What is the Milestone field on the github for?
In the issue edition of github there is a field called Milestone. I would like to know what it’s for and what is that date and percentage that appears on the side.
githubasked Danilo Silva 307 -
0
votes1
answer48
viewsQ: How to place the Run/Debug/etc. buttons on the left side of the bar?
How can I leave this Run/Debug/etc. Toolbar on the left, as it appears in Android Studio?
-
0
votes1
answer93
viewsQ: How do I make a recyclerview of mine appear on a tab instead of fixed on main?
I created a recyclerview on main which is ok, tbm I created 2 tabs which are ok. But when I change between tabs the Recycler view is fixed on the screen instead of just appearing in tab1. A friend…
-
0
votes0
answers75
viewsQ: I created a db with Wamp but when I click on the folder to see my php files n appears nothing
In phpmyadmin db is ok, but when I click on the folder that has the phps appears: It is not possible to access this site Could not find DNS address of Folder Name server. My wamp is green and…
-
1
votes1
answer843
viewsQ: Why did the folders in my github directory turn gray and empty?
Here’s how they turned out: I sent it with bash using git push --force because the normal push wasn’t working. Can anyone tell me what happened and how to fix it? the folders are not empty in the…
-
1
votes1
answer49
viewsQ: Error in php connection file for mysql database
Mistakes: Warning: mysqli_stmt_bind_param() expects Parameter 1 to be mysqli_stmt, Boolean Given in /home/a9630388/public_html/Register.php on line 7 Free Web Hosting PHP Error Message Warning:…
-
1
votes1
answer1132
viewsQ: Problems with PHP connection -> Mysql
Error Warning: mysqli_connect() [Function.mysqli-connect]: (HY000/1130): Host '10.1.1.25' is not allowed to connect to this Mysql server in /home/a1570220/public_html/Register.php on line 2 Warning:…
-
3
votes2
answers138
viewsQ: I am trying to extend Stringrequest from Volley package, but the import is not working, why?
This is the code I use to import. import com.android.volley.Response; import com.android.volley.toolbox.StringRequest; And here below is a print of my screen showing that I’ve installed the Volley…
-
-3
votes1
answer2816
viewsQ: Where can I find simple code examples made entirely in Java?
Where can I find simple code examples made entirely in Java? I need links!
javaasked Danilo Silva 307