Skip to content
View hel-mefe's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro

Block or report hel-mefe

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

Hi there 👋

#!/usr/bin/python
# -*- coding: utf-8 -*-
    class SoftwareEngineer:

        def __init__(self):
            self.first_name = "Hicham"
            self.last_name = "Elmefeddel"
            self.role = "SoftwareEngineer"
            self.languages = [C/C++, Python, Javascript/Typescript, Golang]
            self.philosophy = 'Focus on concepts and patterns rather than technologies themselves!'
           
        def introduce(self):
            print("Hi, I'm Hicham Elmefeddel, a software engineer, I love working with Go but I have no issue coding in any other language")

        def currently(self):
            print("Learning all about distributed systems and system design concepts ")

        def say_thanks(self):
            print("Thank you for checking out my github profile")

    me = SoftwareEngineer()
    me.introduce()
    me.currently()
    me.say_thanks()

Leetcode Stats

Pinned Loading

  1. Nginx-similar-webserver-42 Nginx-similar-webserver-42 Public

    A webserver made to be similar to nginx, it's not a load balancer as it's not a reverse-proxy, the main purpose of this project is an http/1.1 server that's part of 42 projects, it's for educationa…

    C++ 14 1

  2. FDF-42 FDF-42 Public

    FDF is a 42 network curriculum project all about building a 2D/3D wireframe model using minilibx. Fdf is a fun project that will teach you all about line drawing algorithms and linear transformations

    C 7

  3. Minishell-42 Minishell-42 Public

    This project is About Recoding BASH Commands Interpreter From Scratch with C Language

    C 4 1

  4. hash-route hash-route Public

    Distributed job router written in Go that uses consistent hashing to deterministically route jobs to workers while minimizing reassignment under dynamic worker churn.

    Go