Skip to content

Instantly share code, notes, and snippets.

View cfigueiroa's full-sized avatar

Caio Figueirôa cfigueiroa

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Por decisão consensual de todos os participantes do grupo que estão desenvolvendo, não foi realizada daily na data de ontem, haja vista a impossibilidade de comparecimento do SM, tendo sido tudo atualizado na presente data.
Em suma, todos os cards da sprint já foram concluidos pelos participantes.

Relatório de Atividades do Grupo:

Resumo das atividades de cada membro individualmente:

Caio: Concluiu os dois primeiros cards do backlog de ingressos.

Vinicius: Desenvolveu duas telas relacionadas à visualização restrita de hotéis e iniciou a implementação do display de hotéis. Prevê a finalização dessas tarefas para amanhã.

Ricardo: Fez avanços no front-end da parte de ingressos, mas encontrou um impedimento relacionado às regras de negócio na parte dos tickets, onde somente o ID estava sendo enviado ao selecionar um ticket. Será realizada uma reunião para esclarecer a situação.

@cfigueiroa
cfigueiroa / schema.prisma
Created June 30, 2023 15:30
prisma schema example
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
@cfigueiroa
cfigueiroa / peopleskills.md
Created June 25, 2023 06:11
peopleskills

Inicio Devolutiva dos testes Mindmatch:

Capacidade analítica: 84.62 Pensamento conceitual: 96.58 Reflexão: 70.97 Pensamento criativo: 70.97 Planejamento e organização: 86.88 Comunicação: 80.07 Consideração pelos outros: 61.88 Influência: 61.88

@cfigueiroa
cfigueiroa / ohmyzsh.sh
Created June 19, 2023 15:36
oh my sh config
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
code ~/.zshrc
ZSH_THEME="powerlevel10k/powerlevel10k"
ENABLE_CORRECTION="true"
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
@cfigueiroa
cfigueiroa / prettierrc.json
Last active June 16, 2023 10:34
Ordered Prettier Configuration Schema
{
"$schema": "https://gist.githubusercontent.com/cfigueiroa/a7b34d8460b78c0930f1bede770b78ce/raw/9d8506174ba45892e329eb37733f40b04fd1cd8c/prettierrc.json",
"definitions": {
"optionsDefinition": {
"type": "object",
"properties": {
"printWidth": {
"description": "The line length where Prettier will try wrap.",
"default": 80,
"type": "integer",
@cfigueiroa
cfigueiroa / prettierrc.json
Last active June 16, 2023 10:06
Prettier Configuration Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"optionsDefinition": {
"type": "object",
"properties": {
"arrowParens": {
"description": "Include parentheses around a sole arrow function parameter.",
"default": "always",
"oneOf": [
@cfigueiroa
cfigueiroa / Commit Formatting.md
Created June 15, 2023 22:33 — forked from brianclements/Commit Formatting.md
Angular Commit Format Reference Sheet

Commit Message Format

This specification is inspired by and supersedes the [AngularJS commit message format][commit-message-format].

We have very precise rules over how our Git commit messages must be formatted. This format leads to easier to read commit history.

Each commit message consists of a header, a body, and a footer.

@cfigueiroa
cfigueiroa / tree.js
Created June 15, 2023 00:43
tree.js
import fs from 'fs';
import path from 'path';
const outputFileName = 'directory_structure.md';
function parseGitIgnore(gitignorePath) {
const excludedItems = ['.git'];
const gitignoreContent = fs.readFileSync(gitignorePath, 'utf8');
const lines = gitignoreContent.split('\n');