Skip to content

Instantly share code, notes, and snippets.

View vanessabrazuna's full-sized avatar
🚀
Always looking for the next level

Vanessa Brazuna vanessabrazuna

🚀
Always looking for the next level
View GitHub Profile
@vanessabrazuna
vanessabrazuna / seo.md
Last active March 15, 2025 17:32
Google Search Console | Domain
# Domain - SEO

- Acesse [Google Search Console](https://search.google.com/search-console/welcome?hl=pt-br)
# Git

- Acesse [Homebrew](https://brew.sh/)
- Acesse [Homebrew - GIT](https://formulae.brew.sh/formula/git)

- [Autenticação por Token no GitHub](https://www.youtube.com/watch?v=pOP2S2PPkHE&list=PLlpqhK-yAmTT7NPfAQI3r518RA2X2v2j5&index=2)


```bash
@vanessabrazuna
vanessabrazuna / biome.md
Last active May 8, 2025 20:18
biome.js
### Biome
[Acesse BiomeJS](https://biomejs.dev/pt-br/)

```bash

# biome.json

{
 "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
@vanessabrazuna
vanessabrazuna / v_node.md
Last active January 18, 2025 22:23
Node
# Gerenciamento de Versões do Node.js

## 1. Baixar LTS
- Acesse [node.js](https://nodejs.org)

## 2. Verificar Vulnerabilidades

```bash
npx is-my-node-vulnerable
### Docker
[Version 2.4.0.0](https://gist.github.com/FranklinYu/5e0bb9d6c0d873f33c78415dd2ea4138)

### Docker Hub - PostgreSQL Image
[Bitnami PostgreSQL](https://hub.docker.com/r/bitnami/postgresql)

---

### Rodar o container:
@vanessabrazuna
vanessabrazuna / not-found.tsx
Created October 16, 2024 18:07
Página NotFound 404
import { useEffect, useState } from 'react'
export function NotFound() {
const [selectedLetters, setSelectedLetters] = useState([])
useEffect(() => {
const letterSequence = [
{ class: 'one', delay: 1500 },
{ class: 'two', delay: 500 },
{ class: 'three', delay: 500 },
@vanessabrazuna
vanessabrazuna / settings.json
Last active May 9, 2025 16:39
settings.json
{
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 16,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [80, 120],
"extensions.ignoreRecommendations": true,
@vanessabrazuna
vanessabrazuna / .eslintrc.json
Last active March 14, 2024 22:11
eslint-config
{
"extends": ["@rocketseat/eslint-config/react"],
"plugins": ["simple-import-sort"],
"rules": {
"simple-import-sort/imports": "error"
}
}