Skip to content

2017

Cheatsheet

  1. Add new user and database to Mysql

    SQL
    1
    2
    3
    4
    Create database ‘<database>’;
    CREATE USER '<user>'@'localhost' IDENTIFIED BY 'password';
    GRANT ALL PRIVILEGES ON <database>.* TO <user>@‘localhost';
    FLUSH PRIVILEGES;
    

Intro to Albega - A Geeky Medico Blog

This blog will be a place for info and solutions for my future self. Not like a wiki but sort of personal documentation that I want to share with the world.

They say that without an end goal, reading doesn't matter. You might as well be reading some random junk ( can be compared to fast food for body ). Writing makes you think clearly and the process of writing for others, refines your reading skills.