Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ricveal
ricveal / vscode-extensions.md
Last active March 24, 2020 07:51
Script para obtener extensiones instaladas en vscode.
const {execSync, spawn} = require('child_process')

const result = execSync('code --list-extensions')

const list = String(result)
  .split('\n')
  .filter(Boolean)
  .map(
 x => `- [${x}](https://marketplace.visualstudio.com/items?itemName=${x})`,
@ricveal
ricveal / poetry-demo.md
Last active April 21, 2020 12:03
PoC using Poetry and git to start a Python project

PoC using Poetry and git to start a Python project

Once poetry has been installed, only this commands are required:

 mkdir djangodemo
 cd djangodemo
 poetry init --no-interaction --dependency django
 poetry install

TDD Workshop

Testing driven development

TDD Diagram

  • Choose a feature to implement.
  • Write a test case.
  • Test should fails. If it passes, the feature is already implemented.
  • Write the implementation. Follow KISS (Keep it simple, stupid).