Posts by Gabriel Henrique • 31 points
4 posts
-
0
votes0
answers9
viewsQ: Problems with CI/CD in Github Actions for AWS
I am facing a problem when making my application CD in AWS, within my yml code I have the following excerpt: # Configure AWS credentials - name: Configure AWS credentials uses:…
-
0
votes0
answers30
viewsQ: Difference between a constant that receives a function, and a function
What is the difference of using const teste = () => { } or function teste(){ } inside React? I see some codes that use the const and others that use the functions, but from the tests I did, both…
-
1
votes1
answer48
viewsQ: How to append a JSX component inside an item from . map()
I have this line structure: And my idea is that by clicking on each line, a JSX component is rendered according to the item that was clicked. I got it with the following code, but I feel it’s not…
-
0
votes1
answer26
viewsQ: How to search within a file in different subfolders using grep?
How can I make a grep searching in a specific file but within several subfolders? Something like grep -R "busca" /home/apps/*/teste.php The asterisk is the indication that I want to search in all…