Skip to content

Instantly share code, notes, and snippets.

View renatojobal's full-sized avatar
👋

Renato Johao Balcázar Loaiza renatojobal

👋
View GitHub Profile
@mattbogado
mattbogado / md_typography.css
Last active September 18, 2020 04:08
Material Design Font Sizes
/* Font Family */
<link href="http://fonts.googleapis.com/css?family=RobotoDraft:regular,bold,italic,thin,light,bolditalic,black,medium&amp;lang=en" rel="stylesheet" type="text/css">
body {
font-family: 'RobotoDraft', sans-serif;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: 100%;
}
/* Typography */
.text-display-4 {
@przbadu
przbadu / react-on-docker.md
Last active May 12, 2024 15:34
Setup Docker for React development

STEP 2: setup docker to run react app (dev and production) configuration: https://gist.github.com/przbadu/929fc2b0d5d4cd78a5efe76d37f891b6

Setup Docker for React development

Because we are using Docker, we are not going to install node, npm, create-react-app in our development machine, not even for generating create-react-app scaffold.

For this purpose I am using 2-step docker configuration:

  • In first step, we will create a simple docker container, that does only one thing, install create-react-app
@jreyes
jreyes / node.sh
Created May 20, 2018 08:07
Instalar Node.js 10 en Ubuntu 18.04
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install nodejs
node -v
npm -v
@renatojobal
renatojobal / Sobre_Gist.md
Last active October 27, 2024 21:44
¿Qué es un gist en GitHub?

¿Qué es un Gist en GitHub y para qué sirve?

Un gist es una forma que se tiene para poder compartir código usando GitHub.

Cuando tenemos un código que no es lo suficientemente grande para crear un repositorio, entonces creamos un gist. Aunque gist funciona básicamente cómo un repositorio, ya que se le puede hacer un fork o clonarlo. Así mismo se puede editar y las personas pueden comentar el gist.

Usos del gist

Muchas personas usan gist cómo un portapapeles. Para subir código que siempre sueles usar en diferentes proyectos. También se suele usar cómo una forma de hacer posts. Cómo este que estas viendo.

data class Student(
val name : String,
val email : String,
val age : Int
)
interface StrategyCustom {
abstract fun doAlgorithm(data: MutableList<Student>) : MutableList<Student>
}