Skip to content

Instantly share code, notes, and snippets.

View WouterStemgee's full-sized avatar
🏠
Working from home

Wouter Stemgée WouterStemgee

🏠
Working from home
View GitHub Profile
@WouterStemgee
WouterStemgee / renamer.py
Last active August 13, 2022 17:46
Rename filenames in directory structure based on their folder index
import os
import re
# file rename example:
# sub-directory: "1. Introduction"
# files: "1. foo", "2. bar", ... => "1.1 foo", "1.2 bar", ...
path = '.'
for root, dirs, files in os.walk(path):
for file_name in files:
@WouterStemgee
WouterStemgee / README.md
Created April 13, 2020 09:37 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.