Skip to content

Instantly share code, notes, and snippets.

View bayasdev's full-sized avatar
馃幆
Focusing

Victor Bayas bayasdev

馃幆
Focusing
View GitHub Profile
@Klerith
Klerith / vite-testing-config.md
Last active May 20, 2025 17:42
Vite + Jest + React Testing Library - Configuraciones a seguir

Instalaci贸n y configuracion de Jest + React Testing Library

En proyectos de React + Vite

  1. Instalaciones:
yarn add --dev jest babel-jest @babel/preset-env @babel/preset-react 
yarn add --dev @testing-library/react @types/jest jest-environment-jsdom
  1. Opcional: Si usamos Fetch API en el proyecto:
@aymericbeaumet
aymericbeaumet / delete-likes-from-twitter.md
Last active May 14, 2025 16:50
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
    d.click()
 }
@danielquisbert
danielquisbert / Key_starUML.md
Last active May 15, 2025 17:13
Key para starUML
@brunocascio
brunocascio / requerimientos-tecnicas-agiles.md
Last active August 9, 2024 23:23
Requerimientos, T茅cnicas de Especificaci贸n y metodolog铆as 脕giles

Ingenier铆a de Software I (Res煤men)

  • Requerimientos
    • Introducci贸n
    • Ingenier铆a de requerimientos
      • Introducci贸n
      • Estudio de viabilidad
      • Obtenci贸n y an谩lisis de requerimientos
      • Especificaci贸n de requerimientos
  • Validaci贸n de requerimientos