Git Product home page Git Product logo

community's People

Contributors

ackzell avatar alebelcor avatar ariel-isaacm avatar ebobby avatar eldermael avatar gabreho avatar itzjac avatar ivanebernal avatar jjdelvalle avatar jmsalcido avatar jonathanurias96 avatar larsx2 avatar pedabraham avatar pitt500 avatar rcgonzalezf avatar rvazquezglez avatar tonymtz avatar xnt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

community's Issues

Mejorar el readme

Hola Devz, me gustaría saber si me permiten darle un poco de estructura al readme.
Lo que propongo es:

  • Poner un encabezado.
  • Una ligera introducción.
  • Pequeña descripción de los archivos en el repo.
  • Ligas a los otros canales de la comunidad como slack, blog, twitter y Facebook.

System Design Interview: An Insider's Guide

Descripción

System design interviews are the most difficult to tackle of all technical interview questions. This book is Volume 1 of the System Design Interview - An insider’s guide series that provides a reliable strategy and knowledge base for approaching a broad range of system design questions. This book provides a step-by-step framework for how to tackle a system design question. It includes many real-world examples to illustrate the systematic approach, with detailed steps that you can follow.

¿Por qué vale la pena?

  • Contar con herramientas para manejar entrevistas de diseño de sistemas
  • Profundizar en cada tema con preguntas mas complicadas con el grupo de estudio
  • Libro introductorio al tema como preámbulo a material mas sofisticado

Enlace a las Reuniones

http://lu.ma/devz.bookclub

Referencias

https://www.amazon.com.mx/System-Design-Interview-insiders-Second/dp/B08CMF2CQF

TALK: Task como task runner

Acerca

Task es una herramienta de automatización de tareas repetitivas configurable a través de archivos YAML.

Beneficios

La audiencia aprenderá como configurar Task para automatizar comandos básicos de shell así como aprovechar las funcionalidades avanzadas de la herramienta como interactividad, variables de entorno, parámetros, pruebas de idempotencia y precondiciones.

Preview

version: '3'

env:
  DATABASE_PASSWORD: "my-secure-password"

tasks:
  up:
    desc: Set up dev environment
    cmds:
      - docker-compose up -d
      - sleep 2
      - task: db:migrate-up
      - echo "dev environment is ready."

  down:
    desc: Tear down dev environment
    cmds:
      - docker-compose down -v

  reset:
   desc: Rest dev environment
    cmds:
      - task: down
      - task: up

  db:connect:
    desc: Connect to localhost database
    internal: true
    cmds:
      - PGPASSWORD=$DATABASE_PASSWORD psql -h localhost -d mydb -U user {{.OPTIONS}}
    preconditions:
      - sh: which psql
      - msg: "psql command not found, please install and run again"
      
  db:migrate-up:
    cmds:
      - task: db:connect
        vars: { OPTIONS: '-f migrations/base.up.sql' }

  db:migrate-down:
    cmds:
      - task: db:connect
        vars: { OPTIONS: '-f migrations/base.down.sql' }

Referencias

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.