Skip to content

Instantly share code, notes, and snippets.

View Cristian5c26l's full-sized avatar
💭
Trying to learn english.

Cri5tiannn Cristian5c26l

💭
Trying to learn english.
  • Mexico
View GitHub Profile
@Klerith
Klerith / products.store.ts
Created August 27, 2024 15:26
Listado de productos para el curso de React Native
export const products = [
{
id: '1',
title: 'Auriculares Inalámbricos',
description:
'Experimenta una calidad de sonido premium con estos auriculares inalámbricos. Diseñados para la comodidad y el uso prolongado, son perfectos para amantes de la música y profesionales por igual.',
price: 99.99,
},
{
id: '2',
@Klerith
Klerith / instalaciones-react-native-expo.md
Last active November 15, 2024 21:26
Instalaciones recomendadas para el curso de React Native Expo
React Native Logo Expo Logo
Docs React Native Docs Expo

Curso de React Native - Expo

Esta es la lista de instalaciones recomendadas para el curso de React Native, si encuentran enlaces adicionales o cambios en esta hoja, pueden hacerlos.

@Klerith
Klerith / VueRouterTemplate.vue
Last active October 10, 2024 21:47
Template para nuestro ejercicio de Vue Rotuer
<template>
<div class="flex flex-col h-screen">
<!-- Header -->
<header class="flex items-center h-14 px-4 border-b border-gray-300 sm:h-16 md:px-6 lg:px-8">
<div>
<a class="flex items-center gap-2 font-semibold" href="#">
<img alt="Vue logo" class="logo" src="@/assets/logo.svg" width="40" height="40" />
</a>
</div>
@Klerith
Klerith / instalaciones-nest-microservicios.md
Last active November 11, 2024 00:58
Instalaciones recomendadas para el curso de Microservicios con Nest
@Klerith
Klerith / configurar-node-ts.md
Last active November 15, 2024 03:26
Node con TypeScript - TS-Node-dev simplificado

Node con TypeScript - TS-Node-dev (preferido)

  1. Instalar TypeScript y demás dependencias
npm i -D typescript @types/node ts-node-dev rimraf
  1. Inicializar el archivo de configuración de TypeScript ( Se puede configurar al gusto)
npx tsc --init --outDir dist/ --rootDir src
@Klerith
Klerith / medium-dbdiagram.txt
Created July 14, 2023 18:25
Creación del diagrama de la base de datos
Table users {
user_id integer [pk, increment]
username varchar [not null, unique]
email varchar [not null, unique]
password varchar [not null]
name varchar [not null]
role varchar [not null]
gender varchar(10) [not null]
@Klerith
Klerith / programas.md
Created July 13, 2023 20:10
Programas para hacer diagramas entidad relación
@Klerith
Klerith / docker-compose.yml
Last active October 4, 2024 15:50
PostgreSQL + PgAdmin
version: '3'
services:
myDB:
image: postgres:15.3
container_name: my-database
restart: always
ports:
- 5432:5432
environment:
@Klerith
Klerith / instalaciones-next.md
Last active November 5, 2024 10:42
Instalaciones recomendadas para el curso de Next.js 13 >
@Klerith
Klerith / git-alias.md
Last active November 15, 2024 03:29
Useful Git Alias

Log

git config --global alias.lg "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"

Status

git config --global alias.s status --short

Alternativa útil de status

git config --global alias.s status -sb