Skip to content
View aekoky's full-sized avatar

Block or report aekoky

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 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
aekoky/README.md

๐Ÿ‘‹ Hi, I'm Rida!

Welcome to my GitHub profile! I'm a passionate developer, always on the lookout for exciting projects to contribute to and new technologies to learn. Here's a bit more about me:


๐Ÿš€ Technologies & Tools

  • Languages: TypeScript, JavaScript, C#, SQL
  • Front-End Frameworks: Angular, Tailwind, Material UI / Angular Material, Bootstrap
  • Back-End Frameworks: .NET / .NET Core, Entity Framework / EF Core, ASP.NET MVC
  • DevOps: Docker, OCI oracle
  • Other Tools: Git, VS Code, Postman

๐ŸŒฑ Currently Learning

  • Exploring Machine Learning and AI frameworks.
  • Deep diving into Blockchain development.
  • Enhancing skills in Cloud Computing.

๐Ÿ’ก Fun Facts

  • I love solving challenging algorithms and puzzles. ๐Ÿงฉ
  • I'm a huge fan of open-source contributions. ๐Ÿค
  • In my free time, you can find me reading tech blogs or playing video games. ๐ŸŽฎ

๐Ÿ“ซ How to Reach Me


๐Ÿ† GitHub Stats

Aekoky's GitHub stats


Feel free to explore my repositories and reach out if you'd like to collaborate on something amazing! ๐Ÿš€

๐Ÿ” Top Contributed Repo

Pinned Loading

  1. ExpenseTracker ExpenseTracker Public

    ExpenseTracker is a modular, event-sourced .NET Core application designed to manage personal finances. It uses Clean Architecture, Domain-Driven Design (DDD), and Event Sourcing to deliver a scalabโ€ฆ

    C# 53 11

  2. CleanArchitecture CleanArchitecture Public

    Clean Architecture, CQRS, .NET Core, EF Core, Docker, Kong Gateway, Angular, RxJS, NgRx, and a Service Worker

    TypeScript 16

  3. dotnet-microservices dotnet-microservices Public

    microservices architecture showoff net core, rabbitmq, docker, docker compose

    C# 11

  4. devchallenges.io devchallenges.io Public

    Task Management Application - Full Stack Project

    TypeScript 6

  5. An Angular directive that shows a co... An Angular directive that shows a confirmation message before closing a dialog
    1
    import { Directive, Input, OnDestroy, Optional, TemplateRef, ViewContainerRef } from "@angular/core";
    2
    import { debounceTime, fromEvent, Subject, takeUntil } from "rxjs";
    3
    import { ConfirmationService } from "../services/confirmation";
    4
    import { MatDialogRef } from "@angular/material/dialog";
    5
    import { FormGroup } from "@angular/forms";
  6. A directive in Angular that scrolls ... A directive in Angular that scrolls to the first invalid form control when a form is submitted
    1
    import { Directive, ElementRef, HostListener } from '@angular/core';
    2
    
                  
    3
    @Directive({
    4
      selector: '[appScrollToInvalide]'
    5
    })