Skip to content

Instantly share code, notes, and snippets.

View djego's full-sized avatar
😸

Diego Machaca djego

😸
View GitHub Profile
@djego
djego / rsa.py
Created September 30, 2017 23:20
A simple RSA implementation in Python
'''
620031587
Net-Centric Computing Assignment
Part A - RSA Encryption
'''
import random
'''
@djego
djego / remove-files-unused.sh
Created July 23, 2021 06:22
Remove files unused for example png files
#!/bin/bash
## Find files with extension ".png" and then search by filename into source code "src/" and if not exist result remove file
find src -name "*.png" > tmp
echo "Result files unused:"
while read p; do
b=$(basename $p)
if ! grep -rq $b src/; then
echo $p;
rm $p;
@djego
djego / qachallenge.md
Created December 2, 2019 13:33
Reto QA

QA challenge

Office in trouble

Office in trouble es un juego de novela gráfica desarrollado por SODAGAMES el objetivo del juego es que aprendas HTML cumpliendo diferentes retos a lo largo de su historia.

Sprint

El equipo de SODA está desarrollando un nuevo capítulo para el juego para ello decidieron crear una historia de usuario en el sprint

@djego
djego / branch-convention.md
Created May 22, 2019 15:27
Branch name convention (Cafetech)

Branch name convention

  • master
  • dev
  • feature/[project-key-ticket][story title separated by line]
  • fix/[project-key-ticket][story title separated by line]
  • hotfix/[project-key-ticket][story title separated by line]
@djego
djego / commit-convention.md
Last active May 22, 2019 15:11
Commit message convention (Cafetech)

Commits conventions

Format of the commit message

<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
@djego
djego / ejercicio-con-promesas.markdown
Last active March 28, 2019 04:17
Ejercicio con promesas
@djego
djego / session10.md
Last active February 18, 2019 02:32
Data science and Artificial intelligence (Workshops)

Sesión 10 (Martes 19 de Febrero 2019)

Link del curso github aquí

Temas

  • Procesamiento y limpieza de datos
    • Video y discusión
  • Práctica
@djego
djego / Cafeteros .ipynb
Created January 9, 2019 16:06
La tacuen
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.