Skip to content
View floweeb's full-sized avatar
:octocat:
Lean Mean Coding Machine
:octocat:
Lean Mean Coding Machine
  • Nairobi Kenya

Block or report floweeb

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. floweeb.github.io floweeb.github.io Public

    My portfolio page

    Svelte

  2. games_demo games_demo Public

    Simple project with some games to play

    Svelte

  3. africastalking africastalking Public

    This is a Africas Talking API endpoint wrapper in golang/ go.

    Go

  4. daraja_wrapper daraja_wrapper Public

    Meant to be a wrapper library for the daraja API from safaricom Mpesa/Lipa na Mpesa

    Go

  5. C# connecting to database using #MyS... C# connecting to database using #MySql library provided by the mysql website(e.g connect to #MariaDb)
    1
    I'm using visual studio for this connection
    2
    1. Make sure to add the 'MySql.Data' reference to your references. ie. Not available by default.
  6. These are commands to basically mani... These are commands to basically manipulate 'users' on a MySQL database. Hope it helps
    1
    	-- creates a user, we can skip this step and go to the next one, to both create and grant rights, but that is depreciating.
    2
    create user 'some_user'@'%' identified by 'some_password'
    3
    ;	-- gives `some_user` rights to database: `some_db` nb. replace `some_db` with `*` if all databases needed
    4
    	-- with `select, insert, update, delete, execute, show view` rights nb. replace `select, insert, update, delete, execute, show view`
    5
        -- with `all` if all rights are needed needed