Skip to content
View samir-elasri's full-sized avatar
πŸ’­
πŸ’­

Highlights

  • Pro
Block or Report

Block or report samir-elasri

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

Hi πŸ‘‹πŸΌ

Hello there, I'm Samir El Asri, a full-stack engineer from Morocco πŸ‡²πŸ‡¦.

Β Β 

Anurag's GitHub stats
Top Langs

Pinned

  1. messaging messaging Public

    Precursor to a light Laravel messenger package

    PHP 1

  2. FreelancerPlatform FreelancerPlatform Public

    ASP.NET MVC App (Class Project): Managing freelancers & the projects that they're assigned.

    C# 1 3

  3. class_attendance class_attendance Public

    β€’ End of the year project: Class attendance web application

    PHP

  4. A simple PHP function that converts ... A simple PHP function that converts timestamps to "time ago" values
    1
    <?php
    2
      function timeAgo($date){
    3
        $secs = ((new DateTime())->getTimestamp() - (new DateTime($date))->getTimestamp());
    4
        $secIntervals = array(0, 60, 3600, 86400, 604800, 2592000, 31536000);
    5
        $timeLabels = array("now", "seconds", "minutes", "hours", "days", "weeks", "months", "years");