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

Organizations

@evercam @ScientificClubofESI

Block or report Abdelhak-Bahri

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 Elixir, Quantum Computing and IOT
  • 👯 I’m looking to collaborate on Arabic Language projects and Reverse Engineering
  • 👨‍💻 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 hello@abdelhakbahri.com

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 Loading

  1. DZ-News DZ-News Public archive

    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 6 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