Skip to content

Instantly share code, notes, and snippets.

View twittobal's full-sized avatar

Cristobal Contreras twittobal

View GitHub Profile
@twittobal
twittobal / cafe.py
Created March 17, 2024 01:05
Máquina de café en Python
import time
import os
class MaquinaDeCafe:
#Diccionario con los tipos de café disponible
cafes = {
0: {'nombre': 'Café Capuccino', 'precio': 1000},
1: {'nombre': 'Café Expresso', 'precio': 2000}
}
@twittobal
twittobal / gist:352fcf01ccc219073b51dfdd88925d23
Created June 13, 2019 03:51
Check if MySQL is stopped and start it
*/5 * * * * service mysql status > /dev/null || service mysql start
@twittobal
twittobal / gist:d1058ea680a1d43ad2ec3c10f30dc9e9
Last active June 13, 2019 03:52
Permissions on files and directories Linux
#Folders
find . -type d -exec chmod -R 0755 {} \;
#Files
find . -type f -exec chmod -R 0644 {} \;