Skip to content

Instantly share code, notes, and snippets.

View christyanbrayan's full-sized avatar
💻
code the web

christyan brayan christyanbrayan

💻
code the web
View GitHub Profile
# directory created by the pycharm
.idea
# See http://help.github.com/ignore-files/ for more about ignoring files.
# Compiled output
/dist
/tmp
/out-tsc
/bazel-out
@christyanbrayan
christyanbrayan / git.md
Last active August 23, 2023 21:50
Everyday git commands

git init

git branch -M main

git branch git branch --all

git checkout -b newbranch git checkout branch git switch

git branch -d name git branch -D name

@christyanbrayan
christyanbrayan / commands.txt
Created May 24, 2022 12:11
Commands to update local repository with new default branch renamed
The default branch has been renamed!
master is now named main
If you have a local clone, you can update it by running the following commands.
git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a
@christyanbrayan
christyanbrayan / readme.html
Created May 24, 2022 02:55
WordPress Readme FIle
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>WordPress &#8250; Leia-me</title>
<link rel="stylesheet" href="wp-admin/css/install.css?ver=20100228" type="text/css" />
</head>
<body>
<h1 id="logo">
@christyanbrayan
christyanbrayan / md.markdown
Last active August 26, 2023 20:26
markdown syntax and annotations

h1 # h1

h6 ###### h6

---


@christyanbrayan
christyanbrayan / brackets.json
Last active April 17, 2022 01:47
Brackets settings files
{
"brackets-eslint.gutterMarks": true,
"brackets-eslint.useLocalESLint": false,
"fonts.fontSize": "14px",
"fonts.fontFamily": "'SourceCodePro-Medium', MS ゴシック, 'MS Gothic', monospace",
"indent": 2,
"tabSize": 2,
"useTabChar": true,
"themes.theme": "dark-theme"
}
@christyanbrayan
christyanbrayan / README-Template.md
Last active February 28, 2020 23:38 — forked from PurpleBooth/README-Template.md
Um template para fazer um bom README.md

Título do Projeto

Um parágrafo da descrição do projeto aqui

Começando

Essas instruções fornecerão uma cópia do projeto em execução na sua máquina local para fins de desenvolvimento e teste. Consulte implantação para obter notas sobre como implantar o projeto em um sistema ativo.

Pré-requisitos

@christyanbrayan
christyanbrayan / browser-sync-linux-pt-br.md
Created December 30, 2019 18:19
Guia rápido e geral da ferramenta Browsersync no Linux (PT-BR)

Browsersync

Ferramenta gratuita, opensource e multiplataforma de testes sincronizados em diferentes navegadores

Uma espécie de ambiente para simulação de testes de aplicações em diferentes navegadores e responsividades

Elimina tarefas manuais repetitivas

"Mão na roda" para desenvolvedores economizarem o F5

  • É possível simular as ações de scrolls, clicks e input de dados em formulários;
  • Os navegadores são atualizados automaticamente à medida que arquivos alterados são salvos;
  • Facilita o teste de determinadas mesmas funcionalidades em todos os ambientes, facilitando e agilizando o mesmo;