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

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to 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 Loading

  1. High-Availability-Kubernetes-Cluster High-Availability-Kubernetes-Cluster Public

    Showcase a High Availability Kubernetes Cluster

  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. GradientDescent GradientDescent Public

    A python program (Using Jupyter Notebook) that implements Gradient Descent to a Neural Network to find the best boundary with the lowest error.

    Jupyter Notebook 1

  4. GithubUserGrabber GithubUserGrabber Public

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

    JavaScript 1