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
{ | |
"window.menuBarVisibility": "toggle", | |
"editor.fontSize": 16, | |
"editor.fontFamily": "'JetBrainsMono Nerd Font', 'Iosevka Nerd Font', 'Droid Sans Mono', 'monospace', monospace", | |
"files.trimTrailingWhitespace": true, | |
"editor.renderWhitespace": "all", | |
"workbench.iconTheme": "symbols", | |
"workbench.colorTheme": "Min Dark", | |
"editor.minimap.enabled": false, | |
"github.copilot.enable": { |
A metodologia Ship, Show e Ask é uma abordagem eficiente para gerenciar e comunicar diferentes tipos de mudanças no código dentro de uma equipe de desenvolvimento de software. Adotar essa metodologia pode ajudar a melhorar a colaboração, a qualidade do código e a eficiência do fluxo de trabalho, especialmente quando combinada com ferramentas de controle de versão, como o Git.
Ajustes rápidos e simples que não exigem revisão pelos pares. Essas mudanças podem ser feitas diretamente na branch main
.
- Adicionar funcionalidades simples
- Corrigir bugs menores
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
google.com, tidal.com, last.fm, bitbucket.org, github.com, feedz.com.br, trello.com, whatsapp.com, youtube.com, skillsworkflow.com, gather.town |
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
function yesterday() { | |
'use strict'; | |
var date = new Date(); | |
function formatNumberTo2Digits(number) { | |
return ('0' + (number)).slice(-2); | |
} | |
// magic |
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
const Vue = require('../../node_modules/vue/dist/vue.common.js'); | |
const App = new Vue({ | |
delimiters: ['${', '}'], | |
el: '#app', | |
data: { | |
message: 'Default message', |
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
set -g prefix C-a | |
unbind C-b |
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
xterm*background: grey9 | |
xterm*foreground: white | |
xterm*cursorColor: red | |
xterm*cursorUnderline: true | |
xterm*cursorBlink: true | |
xterm*saveLines: 100 | |
! -- Allow utf8 in/out | |
xterm*utf8: 2 | |
xterm*eightBitInput: true | |
xtere*eightBitControl: false |
NewerOlder