Posts by Felipe Esteves • 21 points
3 posts
-
2
votes1
answer45
viewsA: How far do you try to predict the future when designing an application?
The most complicated part of all I think is really this. Regardless of the architecture and stack you choose, will always fall into this dilemma. Humbly I will try to answer this in my project…
-
0
votes1
answer219
viewsA: Axios + . Net Core - Post with file
Whenever you post a file, you need to use "Multipart/form-data" so that the browser can break these files into pieces and send them to the server. See an explanation here. Take an example here with…
-
0
votes1
answer48
viewsA: SELECT displaying the same field several times from a calculation
This feature is called "PIVOT" where basically you make a grouping of row results into specific columns. So we can test this for you to load the data into db-fiddle. This example seems very simple…