Skip to content
View IdrissDimson's full-sized avatar
๐Ÿ‘‹
Working on open source projects
๐Ÿ‘‹
Working on open source projects

Organizations

@cjska-team

Block or report IdrissDimson

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

Hi there ๐Ÿ‘‹ I'm Idriss Dimson

Welcome to my Github profile! I hope you're having a great day.
I'm a UI/UX designer and a web developer currently based out in NYC.
I strive to create memorable experiences through digital platforms. Fullstack capable, with strong experience with JavaScript.

  • ๐Ÿ”ญ Iโ€™m currently working on building open-source applications.
  • ๐ŸŒฑ Iโ€™m striving to become a better front-end every single day.
  • ๐Ÿค Iโ€™m open to discuss opportunities if you have awesome ideas and need a designer/developer.

Languages and tools:



Idriss's github stats
Top Langs

Pinned Loading

  1. Screeech Screeech Public

    Repo containing both the API and the React code for Screeech.

    JavaScript

  2. NotesApp NotesApp Public

    A simple note-taking application made in vanilla JS.

    JavaScript

  3. BinarySearch.java BinarySearch.java
    1
    class BinarySearch {
    2
        int doSearch(int arr[], int targetValue)
    3
            {
    4
                int min = 0;
    5
                int max = arr.length - 1;
  4. SelectionSort.js SelectionSort.js
    1
    function selectionSort(arr){
    2
      for (var i = 0; i < arr.length; i++) {
    3
        let min = i;
    4
        // if the array index is less than the min, the min is equal to j.
    5
        // this finds the smallest number in the iteration.