Skip to content

Instantly share code, notes, and snippets.

View maximofernandezriera's full-sized avatar
🎯
Focusing

Máximo Fernández Riera maximofernandezriera

🎯
Focusing
View GitHub Profile
@maximofernandezriera
maximofernandezriera / sorteo.c
Created May 12, 2022 11:09 — forked from erseco/sorteo.c
Código para realizar el sorteo de bolas de una oposición a Profesor de Enseñanza Secundaria, Especialidad Informática
// Código para realizar el sorteo de bolas de una oposición a Profesor de Enseñanza Secundaria, Especialidad Informática
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
// Colores ansi para la consola
#define BLACK "\033[0m"
#define RED "\033[31m"
#define GREEN "\033[32m"
@maximofernandezriera
maximofernandezriera / README.md
Created September 7, 2021 06:55 — forked from markusfisch/README.md
Convert Markdown files to simple web presentations

Markdown To Takahashi Presentation

[BASH][bash] script to create a single file [Takahashi][takahashi] web presentation from a [Markdown][markdown] document.

Dependencies

You'll need a [Markdown][markdown] converter named markdown in your

@maximofernandezriera
maximofernandezriera / youtube-mp3.sh
Created December 16, 2020 07:42 — forked from nutbutterfly/youtube-mp3.sh
Shell Script to Download Youtube Video and Convert to MP3 (Required youtube-dl and ffmpeg installed on your computer)
#!/bin/bash
URL=$1
# function: guide
guide () {
echo "Youtube URL is required."
}
# function: download audio and convert to mp3
download_and_convert() {