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
@props([ | |
'bodyClass' => null, | |
'htmlClass' => '2xl:text-base lg:text-sm text-sm leading-normal', | |
'head' => null, | |
'title' => null, | |
'canonical' => url()->current(), | |
'description' => null, | |
'image' => null, | |
]) | |
<!DOCTYPE html> |
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
<!-- main Atropos container (required), add your custom class here --> | |
<div {{ $attributes->class('atropos') }}> | |
<!-- scale container (required) --> | |
<div class="atropos-scale"> | |
<!-- rotate container (required) --> | |
<div class="atropos-rotate"> | |
<!-- inner container (required) --> | |
<div class="atropos-inner"> | |
{{ $slot }} | |
</div> |
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
ffmpeg -i $1 -map 0:v -c:v copy -bsf:v h264_mp4toannexb raw.h264 | |
ffmpeg -fflags +genpts -r 45 -i raw.h264 -c:v copy $2 | |
rm raw.h264 |
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 | |
Artisan::command('make:user', function () { | |
$email = $this->ask('Digite um e-mail'); | |
$name = $this->ask('Digite o nome'); | |
$password = $this->secret('Digite a senha'); | |
$user = App\User::firstOrNew(['email' => $email]); | |
$exists = $user->exists; |
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
[ | |
"abastecedor de linha de produção", | |
"abastecedor de máquinas", | |
"acabador de embalagens", | |
"acrilista", | |
"acupunturista", | |
"aderecista", | |
"adesivador", | |
"adestrador", | |
"administrador de contratos", |
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 | |
/** | |
* @param int $current Página atual | |
* @param int $total Total da Paginação | |
* @param int $limit Limite de links exibidos | |
* @param int $start_at Valor inicial. Geralmente o Padrão é 1 | |
* @return \Generator | |
*/ | |
function range_limit($current, $total, $limit = 10, $start_at = 1) |
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 | |
/** | |
* @author Wallace Maxters <[email protected]> | |
* Encodes json after apply callback in data passed | |
* | |
* @param mixed $data | |
* @param callable $callback | |
* @param int $options | |
* @return string |
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
(function (window) { | |
"use strict"; | |
var forEach = Array.prototype.forEach; | |
var Event = function (nodeList) { | |
this.nodeList = nodeList; | |
}; | |
var proto = Event.prototype; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
Route::get('/', function () { | |
$response = Response::json([ | |
'process' => true | |
]); | |
return Response::withShutdownTask($response, function () { |
NewerOlder