Skip to content
View Abdelhak-Bahri's full-sized avatar
:octocat:
:octocat:

Organizations

@evercam @ScientificClubofESI
Block or Report

Block or report Abdelhak-Bahri

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

Hi 👋, I'm Abdelhak Bahri

A passionate Software Engineer from Algeria

abdelhak-bahri

abdelhak-bahri

bahri_abdelhak

  • 🔭 I’m currently working on Evercam
  • 🌱 I’m currently learning MicroFrotnEnds, JAMstack, MicroServices, Video Streaming technologies
  • 👯 I’m looking to collaborate on Arabic Language projects and Reverse Engineering Book
  • 👨‍💻 All of my projects are available at https://abdelhakbahri.com
  • 📝 I sometimes write articles on https://abdelhakbahri.com
  • 💬 Ask me about .Net, NodeJs, React, Scrum, Git, Azure and AWS
  • 📫 How to reach me [email protected]

Connect with me:

bahri_abdelhak bahriabdelhak 5410373 @abdelhakbahri

Languages and Tools:

android aws azure csharp css3 docker dotnet express figma gcp git heroku javascript mongodb mssql mysql nestjs nextjs nginx nodejs php postgresql python react redis redux sass typescript

Articles:

Open Source Stats:

abdelhak-bahri abdelhak-bahri

abdelhak-bahri



Pinned

  1. DZ-News DZ-News Public

    a Windows8 Universal app that can read Rss feeds from different Algerian newspapers websites. it's made with love using Windows App Studio and Visual Studio 2013

    C#

  2. MassyB/Android_malware_detection MassyB/Android_malware_detection Public

    La partie serveur de notre solution de détection de malwares sur Android

    Jupyter Notebook 5

  3. Hidden-Eye Hidden-Eye Public

    Android Hidden Camera demo, an example of how android apps can take pictures without your knowledge

    Java 5 2

  4. Read-from-and-search-on-physical-drive-sectors Read-from-and-search-on-physical-drive-sectors Public

    my homework | 1 st year on higher national school of computer science , algiers , it'a about reading sectors from physical drive

    C

  5. A binary gap within a positive integ... A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N
    1
    function BinaryGap(N) {
    2
        //get N binary representation
    3
      let Nbin = N.toString(2);
    4
        //trim from start to last 1
    5
      const lastIndexOfOne = Nbin.lastIndexOf('1')
  6. This gist is part of cloudericks lab... This gist is part of cloudericks lab notes (controlling azure vm by a Rest API using azure functions)
    1
    using namespace System.Net
    2
    
    
    3
    # Input bindings are passed in via param block.
    4
    param($Request, $TriggerMetadata)
    5