Submit Your short notes or lists

You can submit your list or short notes to admin@uxsniff.com if you think it will be useful to others.


List Example: Your Clear Title and Relavant Hashtags

Your short note or list


(Example) How to use SSH to create new Mysql database. #ssh #devops #howto #database #mysql

  1. SSH to your server
  2. Access mysql from SSH
  3. mysql command: create database [database-name];
  4. mysql command: grant all privileges on [database-name].* to '[username]'@'localhost' identified by "[password]";