I hereby claim:
- I am ricardobarantini on github.
- I am ricardobarantini (https://keybase.io/ricardobarantini) on keybase.
- I have a public key ASDQCTSFXWrtJ2x_tRj7XfwWWrgUAw3cnCREUoV7rWcxWAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?php | |
// ... | |
use App\Models\Aluno; | |
public function getAlunos($matricula) | |
{ | |
$alunos = Aluno::where('matricula', $matricula)->get(); | |
{ | |
"id": 1, | |
"alternativa": "Tiradentes", | |
"correta": false, | |
"questao_id": 1 | |
}, | |
{ | |
"id": 2, | |
"alternativa": "Pedro Alvares Cabral", | |
"correta": true, |
RewriteEngine On | |
RewriteCond %{SERVER_PORT} 80 | |
RewriteRule ^(.*)$ https://www.domain.tld/$1 [R=301,L] |
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme", | |
"font_face": "Roboto Mono", | |
"font_options": | |
[ | |
"gray_antialias", | |
"subpixel_antialias" | |
], |
#include <stdio.h> | |
#include <locale.h> | |
float calculaRaiz(float inicio, float fim, float valor); | |
int main() { | |
setlocale(LC_ALL, "portuguese"); | |
float valor; | |
float inicio = 0.00; |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <locale.h> | |
int main () { | |
int **matriz, linhas, colunas; | |
printf("Quantas linhas deseja na matriz? "); | |
scanf("%i", &linhas); |
#include <stdio.h> | |
#include <locale.h> | |
#include <string.h> | |
#define DIM 1 | |
#define MESES 5 | |
// Protótipos | |
void recebeValores (int filiais[DIM][1020]); | |
void incrementaQuantidadeSaquesMes (int mes); | |
void exibeQuantidadeSaquesMes (void); |
<?php | |
/** | |
* Gera o arquivo de remessa. | |
* | |
* @var date $data_inicio | |
* @var date $data_termino | |
* @var int $bancos_id | |
* @return void | |
*/ |