Skip to content
View GideonBabu's full-sized avatar
💭
Looking for a challenging opportunity
💭
Looking for a challenging opportunity
Block or Report

Block or report GideonBabu

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. Data-Structures-and-Algorithms-in-JavaScript Data-Structures-and-Algorithms-in-JavaScript Public

    Data Structures and Algorithms implemented in JavaScript

    JavaScript 2

  2. JavaScript-ES6-algo-dsa JavaScript-ES6-algo-dsa Public

    JavaScript ES6 concepts and solution to algorithms

    JavaScript

  3. Useful Shell Commands for Web Develo... Useful Shell Commands for Web Development
    1
    Compress: tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
    2
    Extract: tar -xzvf archive.tar.gz
    3
    
                  
    4
    compress with exclusion of some folders:
    5
    
                  
  4. Python MySQLDB insert Python MySQLDB insert
    1
    #!/usr/bin/python
    2
    
                  
    3
    import MySQLdb
    4
    import datetime
    5
    
                  
  5. Useful MySQL Commands Useful MySQL Commands
    1
    ALTER TABLE master_activity_log CHANGE `from_user_id` `user_id` INT(11); // change column name
    2
    ALTER TABLE master_activity_log DROP log_date; // remove column
    3
    ALTER TABLE master_activity_log ADD COLUMN log_datetime DATETIME AFTER after_save; // create new column of existing table
    4
    
                  
    5
    Truncate foreign key constraints table :
  6. JavaScript-Resources JavaScript-Resources Public

    This repository is the place I keep all the resources to learn JavaScript