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
| <?php | |
| namespace App\Providers; | |
| use Filament\Forms\Components\Field; | |
| use Filament\Schemas\Components\Html; | |
| use Illuminate\Support\ServiceProvider; | |
| class AppServiceProvider extends ServiceProvider | |
| { |
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
| <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\Http; | |
| class CheckFilamentCompat extends Command | |
| { | |
| /** |
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
| OCTANE_SERVER="swoole" | |
| OCTANE_HTTPS="true" | |
| WWWGROUP=1004 | |
| WWWUSER=1004 |
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
| <?php | |
| namespace App\Filament\Pages\Auth; | |
| class Login extends \Filament\Pages\Auth\Login | |
| { | |
| protected function getCredentialsFromFormData(array $data): array | |
| { | |
| return [ | |
| 'email' => $data['email'], |
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
| <?php | |
| namespace App\Support; | |
| use Exception; | |
| abstract class QRCodePixSupport | |
| { | |
| /** | |
| * @throws Exception |
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
| wget https://cursos.devsamurai.com.br/Aulas%20ao%20Vivo.zip | |
| wget https://cursos.devsamurai.com.br/Backend%20-%20Dominando%20o%20NodeJS.zip | |
| wget https://cursos.devsamurai.com.br/Backend%20-%20Dominando%20o%20Postgres.zip | |
| wget https://cursos.devsamurai.com.br/Carreira%20de%20Programador.zip | |
| wget https://cursos.devsamurai.com.br/Flutter%20-%20Calculadora%20IMC.zip | |
| wget https://cursos.devsamurai.com.br/Flutter%20-%20Card%C3%A1pio%20online.zip | |
| wget https://cursos.devsamurai.com.br/Flutter%20-%20Fluck%20Noris.zip | |
| wget https://cursos.devsamurai.com.br/Flutter%20-%20Lista%20de%20Leituras.zip | |
| wget https://cursos.devsamurai.com.br/Flutter%20Avan%C3%A7ado.zip | |
| wget https://cursos.devsamurai.com.br/Flutter%20B%C3%A1sico.zip |
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
| { | |
| "workbench.iconTheme": "symbols", | |
| "git.autofetch": true, | |
| "[dart]": { | |
| "editor.formatOnSave": true, | |
| "editor.formatOnType": true, | |
| "editor.rulers": [80], | |
| "editor.selectionHighlight": false, | |
| "editor.suggest.snippetsPreventQuickSuggestions": false, | |
| "editor.suggestSelection": "first", |
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
| /* | |
| Source: http://www.portugal-a-programar.pt/topic/58852-algoritmo-de-validacao-de-nif-pt/ | |
| */ | |
| function validaContribuinte(contribuinte){ | |
| // algoritmo de validação do NIF de acordo com | |
| // http://pt.wikipedia.org/wiki/N%C3%BAmero_de_identifica%C3%A7%C3%A3o_fiscal | |
| var temErro=0; |
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
| <?php | |
| use App\Events\MessageSent; | |
| use Livewire\Volt\Component; | |
| new class extends Component | |
| { | |
| /** | |
| * @var string[] | |
| */ |
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
| /* | |
| * Unicaribe | |
| * Ingenieria en telematica | |
| * Sistemas operativos distribuidos y de tiempo real | |
| * Israel Navarrete Alvarado | |
| */ | |
| import java.rmi.*; | |
| import java.rmi.registry.*; | |
| import java.util.Scanner;// | |
| public class Banco{ |
NewerOlder