diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d44e0b728..aa381de9e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,9 @@ +#### Name: SOKE Honoré +- Place: Ab-Calavi, Benin +- Bio: autodidact software dev, +- GitHub: [RhooneN](https://github.com/RhooneN) + + #### Name: [Himanshu Verma](https://github.com/Hverma1206) - Place: gurgaon,Haryana, India diff --git a/profiles/Honore_SOKE.md b/profiles/Honore_SOKE.md new file mode 100644 index 000000000..35dd4ca12 --- /dev/null +++ b/profiles/Honore_SOKE.md @@ -0,0 +1,28 @@ +# SOKE Honoré + +### Location: + +Abomey-Calavi/ Bénin + +### Academics + +3 years at UAC/ autodidact/ life student + +### Interests + +- Sports, Reading, chess, solving problem, web development + +### Development + +- Full Stack Developer looking for opportunity +- Open Source Contributor + +### Projects + +- [Project from roadmap.sh](https://github.com/RhooneN/scalable-ecommerce-platform) a scalable e-commerce platform using microservices architecture and Docker. + The platform will handle various aspects of an online store, such as product catalog management, user authentication, + shopping cart, payment processing, and order management. Each of these features will be implemented as separate microservices. + +### Profile Link + +[SOKE Honoré](https://github.com/RhooneH) diff --git a/tools/unmessy_folder.py b/tools/unmessy_folder.py new file mode 100644 index 000000000..25833639f --- /dev/null +++ b/tools/unmessy_folder.py @@ -0,0 +1,26 @@ +import os, shutil + +filetypes = [".png", ".jpg", ".mp3", ".pdf"] + +path_from = input("Enter path location for where to move from: ").strip() +path_to = input("Enter path location for where to move to: ").strip() + +filetype = input(f"Enter a filetype from {filetypes}: ").lower().strip() + +# Check filetype validity +while filetype not in filetypes: + print(f"❌ '{filetype}' is not supported. Choose from {filetypes}") + filetype = input("Enter a valid filetype: ").lower().strip() + +# Move files +count = 0 +for file in os.listdir(path_from): + if file.endswith(filetype): + shutil.move(os.path.join(path_from, file), os.path.join(path_to, file)) + print(f"✅ Moved: {file}") + count += 1 + +if count == 0: + print("No files found with that type.") +else: + print(f"🎉 Done! {count} file(s) moved.")