- Modificado (modified);
- Preparado (staged/index)
- Consolidado (comitted);
This file contains hidden or 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
| <div class="row" style="margin-top: 40px"> | |
| <div class="container"> | |
| <table id="example" class="display" style="width:100%"> | |
| <thead> | |
| <tr> | |
| <th>Name</th> | |
| <th>Position</th> | |
| <th>Office</th> | |
| <th>Age</th> | |
| <th>Start date</th> |
This file contains hidden or 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
| function registrarAcesso() { | |
| let codigo_acesso = $('#codigo-acesso').val(); | |
| $.ajaxSetup({ | |
| headers: { | |
| 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') | |
| } | |
| }); | |
| return $.ajax({ |
This file contains hidden or 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
| SELECT | |
| R.RDB$RELATION_NAME, | |
| R.RDB$FIELD_NAME, | |
| R.RDB$FIELD_SOURCE, | |
| F.RDB$FIELD_LENGTH, | |
| F.RDB$FIELD_TYPE, | |
| F.RDB$FIELD_SCALE, | |
| F.RDB$FIELD_SUB_TYPE | |
| FROM RDB$RELATION_FIELDS R | |
| JOIN RDB$FIELDS F ON |
This file contains hidden or 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
| reg delete "HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default" /va /f | |
| reg delete "HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers" /f | |
| reg add "HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers" | |
| del /f /ah %homepath%\documents\default.rdp | |
| reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs" /va /f |
This file contains hidden or 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
| Get-AppxPackage Microsoft.3DBuilder | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.BingWeather | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.DesktopAppInstaller | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.GetHelp | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.Getstarted | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.HEIFImageExtension | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.Messaging | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.Microsoft3DViewer | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.MicrosoftOfficeHub | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage |
This file contains hidden or 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
| powershell -executionpolicy bypass -File <Filename> |
Recomendamos que as imagens dos produtos sejam carregadas para a Storage API, onde serão normalizadas em tamanhos que comuns para o Storefront, otimizadas para WebP e também salvas em PNG/JPEG para utilização em dispositivos que não suportam o formato WebP.
This file contains hidden or 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
| function TServicoIntegradorEComPlus.pesquisarCliente: TStringList; | |
| var | |
| documentosClientes: TStringList; | |
| qry: TFDQuery; | |
| i: Integer; | |
| dadosClientes, arrayCliente: ISuperObject; | |
| arrayClientes: TSuperArray; | |
| mensagem401: string; | |
| begin | |
| mensagem401 := ''; |
This file contains hidden or 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
| function TServicoIntegradorEComPlus.gerarTokenAcesso(servicoAtivo: Boolean): TStringList; | |
| var | |
| bodyParamItem, expires: string; | |
| dadosToken: ISuperObject; | |
| bodyRequest: TJSONObject; | |
| qry: TFDQuery; | |
| begin | |
| qry := TFDQuery.Create(nil); | |
| try | |
| try |