Skip to content
View girishsalaskar's full-sized avatar
🏑
Learning python and investment automation
🏑
Learning python and investment automation
Block or Report

Block or report girishsalaskar

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

Hi πŸ‘‹, I'm Girish Salaskar

I'm a software development engineer, worked in IT corporate. I like to solve logical problems in programming and developing bug free softwares and websites. Currently learning the front-end (react and angular) development technologies. I've worked on PHP, MySQL, PostgreSQL, JavaScript, Java, HTML. I love to work on linux OS (like Ubuntu, Zorin OS, Fedora, CentOS) and I'm open source enthusiast.

Github summary

girishsalaskar

Connect with me

girishsalaskar

  • πŸ”­ I’m currently working on React, Node, HTML, JavaScript.

  • 🌱 I’m currently learning React Native, Node, Express JS, MongoDB

  • πŸ‘― I’m looking to collaborate on React Projects.

  • πŸ‘¨β€πŸ’» All of my projects are available at https://github.com/girishsalaskar

  • πŸ“ I would like to write articles on https://girishsalaskar.github.io (the work is in progress)

  • πŸ’¬ Ask me about React, PHP, Core Java, Node.

  • πŸ“« How to reach me girishsalaskar812@gmail.com

Languages and Tools:

angular aws bash blender css3 electron express git html5 java javascript linux mariadb mongodb mysql nodejs oracle php postgresql postman react reactnative sqlite typescript

Github stats

girishsalaskar

Β girishsalaskar

girishsalaskar

Profile Visits

Visit Counter

Pinned Loading

  1. Dump `mysql` db by tables (See more ... Dump `mysql` db by tables (See more here : https://codewander.blogspot.com/2019/12/dump-mysql-db-by-tables.html )
    1
    for T in `mysql -h <host>-P 3306 -uroot -p -N -B -e 'show tables from YOURDBNAME'`
    2
    do
    3
    echo "Backing up - $T"
    4
    mysqldump --skip-comments --compact -h 127.0.0.1 -P 3306 -uroot -p YOURDBNAME $T > /path/to/destination/folder/$T.sql
    5
    done;
  2. Messed up varchar after/before impor... Messed up varchar after/before importing into mysql db (See more here : https://codewander.blogspot.com/2019/12/recover-messed-uplost-utf-8-characters.html )
    1
    UPDATE tblName set varcharCol = CONVERT(CAST(varcharCol AS BINARY) USING utf8) where pid=1;
  3. The final object demonstration (Desc... The final object demonstration (Description is here : https://codewander.blogspot.com/2020/01/the-final-keyword-in-java.html)
    1
    import java.awt.Point;
    2
    public class MyClass {
    3
        static final Point p = new Point(0,0);
    4
        public static void main(String args[]) {
    5
            p.x = 10; //Will run successful
  4. Import multiple db files from folder... Import multiple db files from folder into mysql db (Details : https://codewander.blogspot.com/2020/02/import-multiple-db-files-from-folder.html)
    1
    for fileName in `ls /path/to/db/files/dir`;
    2
    do
    3
    echo "Importing - $fileName";
    4
    mysql --user=root --password --host=127.0.0.1 --port=3306 dbName < /path/to/db/files/dir/$fileName;
    5
    done;
  5. girishsalaskar.github.io girishsalaskar.github.io Public

    Professional portfolio website.

    JavaScript 2

  6. node-project node-project Public

    JavaScript