Skip to content
View RayanAlkhelaiwi's full-sized avatar
💻
Crafting...
💻
Crafting...
Block or Report

Block or report RayanAlkhelaiwi

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
RayanAlkhelaiwi/README.md

Hey there!


from __future__ import annotations
import json, dataclasses as dc

@dc.dataclass
class Skills:
    languages  : tuple[str, ...] = ('Java', 'Ruby', 'Python', 'JavaScript')
    frameworks : tuple[str, ...] = ('Spring Boot', 'Rails', 'Flask', 'React')
    databases  : tuple[str, ...] = ('PostgreSQL', 'MySQL', 'MariaDB', 'Redis')
    deployment : tuple[str, ...] = ('Kubernetes', 'Docker', 'Sidekiq', 'RabbitMQ')

    def jsonify(self) -> str:
        return json.dumps(dc.asdict(self), indent=4)

skills = Skills()
print(skills.jsonify())
​

Pinned

  1. URL_Bookmark_API URL_Bookmark_API Public

    RESTful API that acts as a URL Bookmark to store links, highlight important ones, and a way to categorize them

    Python 1

  2. Lister Lister Public

    A Ruby on Rails Web App/API that applies CRUD functions to create a listing app, to get to know the framework.

    Ruby 1

  3. Trello-like_Todo Trello-like_Todo Public

    A Trello-like Todo web app that displays user items in a todo section and be moved to complete section when marked done

    JavaScript 1

  4. GithubUserGrabber GithubUserGrabber Public

    React Native app that fetches users' profile info from GitHub API

    JavaScript 1