I hereby claim:
- I am felipefinhane on github.
- I am felipefp (https://keybase.io/felipefp) on keybase.
- I have a public key ASDmD3SBdWOmYtiE1IfvypgCgMIWR-At1wbbxnc_aNdEcAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| for file in `ls *.webp` | |
| do | |
| newfile=`echo $file | sed 's/webp/jpg/'` | |
| convert $file $newfile | |
| done | |
| for file in `ls *.jfif` | |
| do |
| package main | |
| import ( | |
| "io/ioutil" | |
| "net/http" | |
| "log" | |
| "html/template" | |
| "regexp" | |
| ) |
| <?php | |
| public function render() | |
| { | |
| $builder = new StdClass; | |
| $pgto1 = new StdClass; | |
| $pgto1->getIdPagamento = 'pagamentoAutenticacao'; | |
| $pgto2 = new StdClass; | |
| $pgto2->getIdPagamento = 'pagamentoTributo'; |
| <template> | |
| <h1>Página secreta!</h1> | |
| </template> |
| SELECT | |
| nfe.id_nfe, | |
| nfe.dt_emissao, | |
| nfe.numero | |
| FROM | |
| fis_nfe nfe | |
| LEFT JOIN | |
| com_projeto_parametros_venda propv ON propv.id_projeto_parametros_venda = nfe.id_projeto_parametros_venda | |
| AND propv.stat != 0 | |
| LEFT JOIN |
| use INFORMATION_SCHEMA; | |
| SELECT | |
| TABLE_NAME, | |
| COLUMN_NAME, | |
| CONSTRAINT_NAME, | |
| REFERENCED_TABLE_NAME, | |
| REFERENCED_COLUMN_NAME | |
| FROM | |
| KEY_COLUMN_USAGE | |
| WHERE |