Skip to content

Instantly share code, notes, and snippets.

View SebastianQuis's full-sized avatar
💭
I may be slow to respond.

Sebastian Dev SebastianQuis

💭
I may be slow to respond.
View GitHub Profile
@Klerith
Klerith / instalaciones-javascript-curso.md
Last active May 30, 2026 08:35
Instalaciones recomendadas - Curso de JavaScript
@Klerith
Klerith / snippets.json
Last active June 11, 2025 16:58
Dart Snippets
{
// Place your snippets for dart here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
@Klerith
Klerith / react-index.html
Created May 6, 2020 19:07
Introducción a React
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- Cargat React -->
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
@Klerith
Klerith / heroes.js
Created May 7, 2020 17:40
Un pequeño arreglo de héroes para hacer ejercicios
const heroes = [
{
id: 1,
name: 'Batman',
owner: 'DC'
},
{
id: 2,
name: 'Spiderman',
owner: 'Marvel'
@Klerith
Klerith / Instalaciones-React.md
Last active June 11, 2026 07:11
Instalaciones recomendadas para mi curso de React de cero a experto
@Klerith
Klerith / tarjeta_credito.dart
Created August 24, 2020 17:49
Recurso adicional del curso de Flutter Avanzado
import 'package:meta/meta.dart';
class TarjetaCredito {
final String cardNumberHidden;
final String cardNumber;
final String brand;
final String cvv;
final String expiracyDate;
final String cardHolderName;
@Klerith
Klerith / instalaciones-node.md
Last active January 8, 2026 16:45
Instalaciones recomendadas y obligatorias para seguir el curso de Node
@Klerith
Klerith / ReactNative-instalaciones.md
Last active January 8, 2026 16:44
Instalaciones recomendadas para el curso de React Native

React Logo

Instalaciones - Curso de React Native

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 / git-alias.md
Last active June 16, 2026 01:43
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

@Klerith
Klerith / instalaciones.md
Last active May 9, 2026 03:19
Instalaciones recomendadas para el curso de principios SOLID y CleanCode

Instalaciones recomendadas - Curso de principios SOLID y CleanCode

Instalaciones Necesarias

opcional - Yarn