This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
@foreach( $agrupadores as $agrupador_id => $formacao) | |
@for ($i = 0; $i < count($agrupadores[$agrupador_id]); $i++) | |
// código aqui | |
@endfor | |
@endforeach |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bs4 import BeautifulSoup | |
html_doc = """ | |
<tr> | |
<td>Dado 1</td> | |
<td>Dado 2</td> | |
</tr> | |
<tr> | |
<td>Dado 3</td> | |
<td>Dado 4</td> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bs4 import BeautifulSoup | |
html_doc = """ | |
<tr> | |
<td>Dado 1</td> | |
<td>Dado 2</td> | |
</tr> | |
<tr> | |
<td>Dado 3</td> | |
<td>Dado 4</td> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ laradock git:(master) ✗ sudo docker-compose up -d nginx | |
Building nginx | |
Step 1/11 : FROM nginx:alpine | |
---> 91ce6206f9d8 | |
Step 2/11 : LABEL maintainer="Mahmoud Zalt <[email protected]>" | |
---> Using cache | |
---> 82ab7a37e903 | |
Step 3/11 : ADD nginx.conf /etc/nginx/ | |
---> Using cache | |
---> b21ec061f7cb |