Skip to content

Instantly share code, notes, and snippets.

View franciscotis's full-sized avatar
🏡
working and teaching and learning (from home)

Francisco Pereira franciscotis

🏡
working and teaching and learning (from home)
  • Developer @ Sankhya
View GitHub Profile
@franciscotis
franciscotis / cadastro_clientes.c
Created September 2, 2021 21:07
Cadastro de Clientes
#include <stdio.h>
#include <stdlib.h>
#define SOLTEIRO 's'
#define CASADO 'c'
#define DIVORCIADO 'd'
typedef struct cliente{
char matricula[20],nome[50], status_civil;
float valor_apolice;
int idade;
@franciscotis
franciscotis / Kernel2.php
Created August 16, 2019 01:51
Kernel2.php
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
protected $queues = [
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
protected $queues = [