Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/firaskahlaoui/firaskahlaoui
https://github.com/firaskahlaoui/firaskahlaoui
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/firaskahlaoui/firaskahlaoui
- Owner: FirasKahlaoui
- Created: 2023-08-29T20:50:06.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-22T15:57:13.000Z (6 months ago)
- Last Synced: 2024-05-22T16:54:46.657Z (6 months ago)
- Size: 68.4 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Spotify](https://novatorem.vercel.app/api/spotify?background_color=0d1117&border_color=ffffff)](https://open.spotify.com/user/omnitenebris)---
```python
class FirasKahlaoui:
def __init__(self):
self.name = "Firas Kahlaoui"
self.username = "FirasKahlaoui"
self.location = "Ariana, Tunisia"
self.twitter = "@firas_kahlaoui"
self.web = "https://firaskahlaoui.pages.dev"
self.about = ("Hello! I'm Firas Kahlaoui, a passionate Computer Science student specializing in Big Data. "
"As a data scientist, I thrive on exploring new technologies and enhancing my programming skills.")
self.skills = [
{"Skill": "Big Data Analysis", "Description": "Extracting insights from large datasets."},
{"Skill": "Machine Learning", "Description": "Building and optimizing predictive models."},
{"Skill": "Web Scraping", "Description": "Collecting data from various online sources."},
{"Skill": "Web Development", "Description": "Designing user-friendly web applications."}
]
def __str__(self):
skills_formatted = "\n".join([f"- **{skill['Skill']}**: {skill['Description']}" for skill in self.skills])
return (f"## About Me\n\n"
f"{self.about}\n\n"
f"### Skills & Expertise:\n{skills_formatted}\n"
f"📍 Location: {self.location}\n"
f"🔗 Website: {self.web}\n"
f"🐦 Twitter: {self.twitter}\n"
f"👤 Username: {self.username}")if __name__ == '__main__':
me = FirasKahlaoui()
print(me)```
---
## Github Stats
---