Skip to content
View bitnbytesio's full-sized avatar
Block or Report

Block or report bitnbytesio

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 Loading

  1. node-input-validator node-input-validator Public

    Validation library for node.js

    JavaScript 88 31

  2. que-it que-it Public

    Background job processing inspired by laravel.

    JavaScript 6 1

  3. paginator-for-mongoose paginator-for-mongoose Public

    A simple pagination library for mongoose

    JavaScript

  4. Install required stuff/tools for php... Install required stuff/tools for php development on ubuntu
    1
    #!/bin/bash
    2
    
                  
    3
    // note: there is no error handling in this script, recommened way is to execute commands one by one
    4
    
                  
    5
    sudo apt -y  update
  5. My sql function to count similar wor... My sql function to count similar words in comma seperated string
    1
    DROP FUNCTION IF EXISTS SPLIT_STRING;
    2
    DROP FUNCTION IF EXISTS SIMILAR_WORDS;
    3
    
                  
    4
    DELIMITER $$
    5