Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__pycache__
*.pytest_cache
venv/
.env/
# .env
*.db
*.idea
Expand Down
10 changes: 10 additions & 0 deletions .ls-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ ls:
.txt: snake_case | kebab-case
.yml: snake_case | kebab-case

.: # Répertoires racine
.*/:
snakecase: true
ignore:
- 1_datasets/raw_data/**

ignore:
- .git
- .github
Expand All @@ -15,3 +21,7 @@ ignore:
- __pycache__
- .ls-lint.yml
- .markdownlint.yml


rules:
some_rule: "true"
29 changes: 29 additions & 0 deletions collaboration/learning_goals
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,32 @@ world problems that my country are currently facing.
• Master PowerBI by creating Dashboard to sustain story and enhance comprehension
• Make progress in my career as a backend developer and python developer.
• Apply my Data science knowledge in the sustainable tourism sector.

### Cliforde EXAEL "Cliforde"

🌍 General Learning Goals

Understand how data-driven technology can preserve cultural heritage and influence
global narratives.

Apply interdisciplinary methods combining data science, geography, history, and
UX design.

Learn to collect, clean, structure, and visualize real-world datasets.

Develop accessible, bilingual digital tools that promote sustainable tourism and
education.

Explore how digital storytelling enhances cultural appreciation.

💡 Personal Learning Goals

Strengthen full-cycle project management skills (data → visualization → prototype).

Gain hands-on experience with APIs (OpenStreetMap, Google Maps, Wikidata).

Develop user-centered web design and multimedia integration skills.

Learn to communicate insights clearly using data and visualization.

Build confidence designing meaningful, socially impactful digital experiences.
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[tool.ruff]
exclude = [
".venv",
"__pycache__",
"*.pyc",
"*.ipynb",
]
Loading