This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python3 | |
import os | |
import requests as req | |
import json | |
data_dir = "/data/feedback" | |
feedbacks = [] | |
for file in os.listdir(data_dir): | |
file_path = os.path.join(data_dir, file) | |
if os.path.isfile(file_path): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# Python3 script for converting TIFF images to JPEG | |
from PIL import Image | |
import os | |
imgs_dir = "images" | |
files = os.listdir(imgs_dir) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## pomodoro script by Ander Raso Vázquez [email protected] | |
############## DOCUMENTATION ################### | |
## After a pomodoro of 25 min -> 5 min break | |
## After 4 pomodoros done -> 15 min break | |
## | |
## USAGE | |
## [command] [number of pomodoros] | |
## example: |