Skip to content

Instantly share code, notes, and snippets.

View ramigalvan's full-sized avatar
:shipit:
(() => {}, [])

ramiro galvan ramigalvan

:shipit:
(() => {}, [])
View GitHub Profile
@Klerith
Klerith / vite-testing-config.md
Last active October 26, 2025 00:18
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:
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active October 26, 2025 13:53
Conventional Commits Cheatsheet
@MWins
MWins / project-ideas01.md
Last active October 12, 2025 09:43
Back end Projects - list

Project Ideas

Ok. I'm going to list off some ideas for projects. You will have to determine if any particular idea is good enough to include in a portfolio. These aren't creative ideas. They likely already exist. Some are way too advanced while others are simplistic.

I will recommend to post any project you make to github and make a github project page for it. Explain in as much detail as possible how you made it, how it can be improved etc. Document it.

If you pick an advanced idea, setup a development roadmap and follow it. This will show some project management skills.

Another piece of advice for those who are design challenged. Use different front end frameworks and use different themes for those frameworks to provide appealing designs without looking like yet another bootstrap site.

@AdamMarsden
AdamMarsden / sassas.md
Last active August 11, 2025 12:26
Sass Architecture Structure

Sass Architecture Structure

sass/
|
|– base/
|   |– _reset.scss       # Reset/normalize
|   |– _typography.scss  # Typography rules
|   ...                  # Etc…
|