Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
28 changes: 28 additions & 0 deletions profiles/Honore_SOKE.md
Original file line number Diff line number Diff line change
@@ -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)
26 changes: 26 additions & 0 deletions tools/unmessy_folder.py
Original file line number Diff line number Diff line change
@@ -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.")