Skip to content

Instantly share code, notes, and snippets.

View picuu's full-sized avatar
🚀
Learning Astro

Carlos Capó picuu

🚀
Learning Astro
View GitHub Profile
@picuu
picuu / git-and-github-course.md
Last active March 11, 2024 18:04
Git and GitHub course

Git y GitHub

Es mucho más recomendado usar SSH para clonar repositorios, en vez de HTTPS.

Una buena práctica a la hora de hacer commits es no usar puntos. El mensaje de los commits realmente son sus títulos, y estos nunca se puntúan. Es tan fácil como fijarse en como GitHub hace sus propios commits.

Recordar que un commit es una confirmación. Cuando hacemos un commit estamos indicando que queremos confirmar los cambios que hemos realizado.

Comandos interesantes de Git

@picuu
picuu / intellij-config-for-dokka-junit.md
Last active January 22, 2024 21:28
IntelliJ Config for Dokka and JUnit

IntelliJ Config for Dokka and JUnit

Dokka for KDoc documentation

Add id("org.jetbrains.dokka") version "1.9.10" to the plugins section, in build.gradle.kts. If it doesn't work, try changing the version with your jvm version.

plugins {
 kotlin("jvm") version "1.9.21"
@picuu
picuu / markdown-tips.md
Last active February 1, 2024 12:49
Markdown Tips for GitHub
@picuu
picuu / kotlin-terminal-colors.md
Last active December 23, 2023 16:17
Colores en la terminal de Kotlin

Colores en la terminal de Kotlin

// Reset
const val RESET: String = "\u001b[0m" // Text Reset

// Regular Colors
const val BLACK: String = "\u001b[0;30m" // BLACK
const val RED: String = "\u001b[0;31m" // RED
const val GREEN: String = "\u001b[0;32m" // GREEN