Skip to content

Instantly share code, notes, and snippets.

View ArthurFDLR's full-sized avatar
🚀

Arthur FINDELAIR ArthurFDLR

🚀
View GitHub Profile
@ArthurFDLR
ArthurFDLR / tree.py
Last active May 19, 2024 00:10
Basic [tree](https://manpages.ubuntu.com/manpages/trusty/man1/tree.1.html) alternative where `--filelimit` defines the maximum number of entry to display per folder, instead of the maximum of entry to display a folder.
#!/usr/bin/env python3
"""
File: tree.py
Author: Arthur Findelair
Date: 2024-05-18
Description: Basic [tree](https://manpages.ubuntu.com/manpages/trusty/man1/tree.1.html) alternative where `--filelimit`
defines the maximum number of entry to display per folder, instead of the maximum of entry to display a folder.
"""
from pathlib import Path
@ArthurFDLR
ArthurFDLR / notebook-readme.yml
Created May 9, 2024 05:04
Github Action to update the README.md with the content of a README.ipynb
name: Convert README.ipynb to README.md
on:
push:
branches:
- main
paths:
- '**/README.ipynb'
jobs: