Skip to content

Instantly share code, notes, and snippets.

View Levyathanus's full-sized avatar

Michele Zenoni Levyathanus

View GitHub Profile
@Levyathanus
Levyathanus / mp3Downloader.py
Last active September 14, 2020 09:50
Simple python3 youtube mp3 downloader
#### Windows 10 requirements ####
# -> python3 (from Microsoft Store (python 3.8) or official Python website)
# -> youtube_dl (Pip: pip install --upgrade youtube_dl)
# -> ffmpeg (Choco: choco install ffmpeg)
# Launch program with cmd: python3 path\to\mp3Downloader.py
from __future__ import unicode_literals
import youtube_dl
from tkinter import *
@Levyathanus
Levyathanus / mergesort.pas
Last active July 26, 2020 12:58 — forked from MarshalX/mergeSort.pas
Merge sort on Pascal
program merge_sort;
const
dim = 9;
var
v: array [1..dim] of integer = (5, 9, 1, 3, 4, 6, 6, 3, 2);
i: integer;
procedure MergeSort(min, max: integer);