Skip to content
View kaxada's full-sized avatar
💻
Working from home
💻
Working from home

Organizations

@chaoss
Block or Report

Block or report kaxada

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

Hi. I'm Kaxada.

I am a Software Engineer speaking JavaScript and Python.

Pinned

  1. implementation of a Trie in JavaScri... implementation of a Trie in JavaScript as used for autocomplete features
    1
    function TrieNode(letter) {
    2
      // properties 
    3
      this.letter = letter;
    4
      this.prevLetter = null;
    5
      this.nextLetters = {}; // an object for the following letters
  2. Javascript keycodes Javascript keycodes
    1
    backspace ------8
    2
    tab	------------9
    3
    enter	--------- 13
    4
    shift	--------  16
    5
    ctrl	----------17
  3. augur augur Public

    Forked from chaoss/augur

    Python library and web service for Open Source Software Health and Sustainability metrics & data collection.

    Python

  4. badging/badging-bot badging/badging-bot Public archive

    Forked from bistaastha/badging-bot

    A GitHub App that helps to coordinate the workflow of the DEI Badging, a peer-review program that is managed by the CHAOSS Community.

    JavaScript 1 10

  5. badging/BadgingAPI badging/BadgingAPI Public

    Server side development of the DEI Project Badging focusing on scripting, databases, back-end logic, & APIs

    JavaScript 1 7