Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marse11e/marse11e
About Me
https://github.com/marse11e/marse11e
Last synced: about 1 month ago
JSON representation
About Me
- Host: GitHub
- URL: https://github.com/marse11e/marse11e
- Owner: marse11e
- Created: 2024-07-13T22:50:37.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-08-22T22:21:25.000Z (4 months ago)
- Last Synced: 2024-08-23T23:31:53.378Z (4 months ago)
- Homepage:
- Size: 4.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
About Me
- Software developer with bold ideas
- Currently working on an open-source project called
CamAI-Search
- Graduated with a degree in Computer Science and 3.5 years of experience as a Python developer
- Passionate about various technologies including Redis, Docker, Django, RESTful, FastAPI, GraphQL and more
- Proficient in Adobe Creative Suite tools like Photoshop, Illustrator, After Effects, and more
- Active on social media
Telegram and
Instagram
Specialization
While I have a diverse skill set across various technologies, my primary focus is on Backend Development. I have extensive experience working with Django, FastAPI, GraphQL and RESTful API design. This focus allows me to build robust and scalable backend systems, ensuring seamless integration with frontend interfaces and efficient data management.
Additionally, I have recently embarked on studying artificial intelligence and have been actively writing AI-related code. This new direction complements my backend expertise and broadens my ability to develop intelligent, data-driven applications.
Skills & Technologies for 2024.01
-
Cloud Platforms & Infrastructure: AWS, Google Cloud Platform (GCP), Microsoft Azure, DigitalOcean -
DevOps & CI/CD: Docker, Kubernetes, Terraform, Ansible, Jenkins, GitLab CI/CD, CircleCI -
Backend Development: Django, Django REST Framework, FastAPI, GraphQL, RESTful API design -
Frontend Development: HTML5, CSS3, Bootstrap, JavaScript -
Database Management: MySQL, PostgreSQL, SQLite, Redis -
Mobile & Cross-Platform: Flutter, Swift -
Design & Multimedia: Adobe Photoshop, Illustrator, Premiere Pro, After Effects, XD, InDesign, Lightroom, Figma, Canva -
Version Control & Collaboration: Git, GitHub, GitLab -
Other Technologies: Kafka, RabbitMQ, Elasticsearch, Nginx, Linux, PHP, Flask, Solidity (for smart contracts), WebAssembly, Xamarin, jQuery, Trello, Jira, Aiogram, Telegram API, Beautiful Soup, Pillow, NumPy, Pandas
Favorite language & Software
These programming languages and operating systems are my favorites because they provide powerful tools for development.
Programming Languages
Knowledge Level
Number of Projects
Python
High
60+
Go
Intermediate
8+
JavaScript
Intermediate
12+
Operating Systems
Knowledge Level
Experience (in years)
Linux Ubuntu
Excellent
3
Kali Linux
Excellent
1.5
### Hide secret text inside an image using Python.
```python
# pip install stegano
from stegano import lsb
secret = lsb.hide('image.png', 'очень секретный текст')
secret.save('secret_image.png')
print(lsb.reveal('secret_image.png'))
```