Posts by Luciano Gonçalves • 474 points
12 posts
-
-2
votes1
answer21
viewsQ: Select in nested jsonb - postgresql
I had difficulty finding the values on a basis, as all examples cite the same way to find information in simple jsons. But a friend from work passed me and solution and I came to share. the initial…
-
0
votes1
answer21
viewsA: Select in nested jsonb - postgresql
The answer I bring uses select with regex: select * from example where example.jsonTest->>'vehicle' ~ 'color"\s*:\s*"?.*?Blue.*"?'; and select * from example where…
-
0
votes1
answer2783
viewsA: How to extract data from internet by VBA
Sort of like this: Sub Daily() Worksheets(1).Select 'Create Internet Explorer Browser Dim appIE As Object Set appIE = CreateObject("internetexplorer.application") 'Ask Browser to navigate to website…
-
1
votes2
answers51
viewsA: Check whether certain parts of a spreadsheet have data
I think it solves with Sub CommandButton1_Click() Dim ws As Worksheet Set ws = Worksheets("Plan1") Dim i, j, largura, linha As Integer Dim parte1, parte2 As Boolean parte1 = False parte2 = False…
-
2
votes1
answer313
viewsA: Doubt with the Sender command of VBA excel Outlook objects
I use a code like the following to send emails here at work: Set oMensagem = CreateObject("CDO.Message") Set oConfiguração = CreateObject("CDO.Configuration") oConfiguração.Load -1 'Padrões CDO Set…
excel-vbaanswered Luciano Gonçalves 474 -
1
votes2
answers1789
viewsA: Where does the Git pull point?
When we do git checkout -b develop origin/develop we’re pulling the remote develop arm or are enabling locally a develop arm that was pulled at the time of the clone? When you checkout -b is…
gitanswered Luciano Gonçalves 474 -
19
votes2
answers18808
viewsQ: What’s a pull request for?
I am working as a team in bitbucket and I would like to know what a pull request is for. On what occasions we should use this feature.
-
1
votes1
answer6599
viewsA: Error connecting to Postgresql by pgAdmin 4
Gave a job to run... but it is the following, after installing the pgAdmin4 At a cmd prompt (not git bash) go to the postgres directory cd c:\Program Files\PostgreSQL\SUA_VERSAO\bin Run the init…
-
11
votes3
answers6007
viewsA: How to Customize Password Recovery Email (Laravel 5.4)
Step-by-step instruction: You must create a new notification class to override the default text of the message. To create a new notification class you must use this command line: php artisan…
-
0
votes1
answer1256
viewsQ: Confirm exclusion in Laravel 5.4
i have the form below, in which a button deletes the record of the current line. <form class="form-inline" method="POST" action="/servidores/{{ $serve->id }}"> {{ method_field('DELETE') }}…
-
0
votes2
answers492
viewsA: I can’t access my Laravel 5 project from Vagrant and Nginx
Permission denied in /Vagrant/vendor/monolog/monolog/src/Monolog/Handler/Streamhandler.php:107 hello, try to give permission to the directory informed. with VM on, use the sudo chmod 644…
-
1
votes2
answers77
viewsA: Framework Laravel
and I can’t change the default index, which is the /Resources/views/Welcome.blade.php file. You changed the welcome.blade.php, saved after changing, and the change did not appear when updating the…