Skip to content
View DyadicGit's full-sized avatar
  • Lithuania
Block or Report

Block or report DyadicGit

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

Pinned

  1. add-test-ids-script add-test-ids-script Public

    automatically add data-test-id's to react code using jscodeshift

    JavaScript 1

  2. Trie in JS/Typescript with data stor... Trie in JS/Typescript with data storing, used for fast searching
    1
    class TrieNode {
    2
      constructor(key) {
    3
        this.key = key
    4
        this.parent = null
    5
        this.children = {}
  3. basic node.js server with GET endpoi... basic node.js server with GET endpoints & without express
    1
    const https = require('https');
    2
    
                  
    3
    callback = returnFn => response => {
    4
      let str = '';
    5
      response.on('data', chunk => {
  4. automatic-ventilation-arduino automatic-ventilation-arduino Public

    a ventilation project for a flat

    C++ 1

  5. remove unused css (PurgeCss) in Crea... remove unused css (PurgeCss) in Create React App without ejecting
    1
    //package.json
    2
    {
    3
      ...
    4
      "devDependencies": {
    5
         ...