Skip to content

Instantly share code, notes, and snippets.

@nmicht
Last active March 12, 2019 00:16
Show Gist options
  • Save nmicht/b5045ff551f40d550b6e30515cbcaeca to your computer and use it in GitHub Desktop.
Save nmicht/b5045ff551f40d550b6e30515cbcaeca to your computer and use it in GitHub Desktop.
Herramientas, paquetes y cositas interesantes para usar. Todo aprendido durante mi tiempo en RC

Recurse Center W2'19 notes

This are my notes during the W2'19 at Recurse Center

  • Tools A file with a list of tools, software and links to interesting development things.
  • Projects A list with interesting projects created by recurses.
.vscode
data-project.md
hackaton.md

To install

  • Minikube
  • Docker

docker run to load the docker

docker build -f name path

publish your docker on cloud.docker

What is running docker ps

Búsquedas

  • DuckDuckGo: Tiene un montón de shortcuts para hacer búsquedas fácil y rápido, además, se integra con el browser.

NPM

  • Inquirer: Una genial opción para los prompts y tiene métodos síncronos.
  • npmgraph.an Mapeo de las depedencias que se tienen en un paquete de npm

Juegos

  • Phaser: Un framework para crear videojuegos

Python

Canvas

https://p5js.org/

Lenguajes para la Web

  • Elm: Es muy bueno para procesamiento de textos, gramáticas, etc

Testing en JS

Browser / end-to-end / visual testing

Accessibility

Mapas

Deployments

  • Now Un servicio serverless para tus deploys

Cron

  • cron-job.org Un cron gratuito que puede hacer ping a tu sitio cada N tiempo (minimo de 1m)

CSS

  • CSS Zen Garden Un sitio para demostrar el poder de CSS usando el mismo html y diferentes hojas de estilo.
  • NES Styles Una libreria de CSS con estilos del NES

Análisis de texto

  • TF*IDF Es una formula para encontrar la frecuencia de términos en un conjunto de documentos
  • LZW Compresion de texto en 5 pasos

Mecanografía

  • type racer Juego de velocidad para escribir textos

Cosas lindas en la compu

  • Fortune: Muestras mensajes de galletitas de la fortuna
  • Cowsay: Muestra cualquier salida como si lo dijera una vaca pero hay otros perfiles
  • Lolcat: Muestra cualquier salida con un arcoiris
  • ponysay: Cómo cowsay, pero con ponys

Paletas de colores

Screenshots

Load Testing

Documentacion

  • DevDocs Es un compilado de documentación de muchas tecnologías

Imágenes

  • pixelator

Terraform

https://www.terraform.io/docs/index.html

The configuration file

A tf file

In the config we have something like "how should it run"

resource is the real thing to config what we want

Commands

  • terraform init
  • terraform plan

updates

It updates the resource if you change things, not created again

Variables

You can pass the env vars to tf files

Modularizing

You can create modules and read them by github

State

There is a state file to keep the state for your terraform, and that should be shared with all the team

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment