Skip to content
View albertyumol's full-sized avatar
:octocat:
just bash-ing around
:octocat:
just bash-ing around
  • Manila, Philippines

Block or report albertyumol

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

Mabuhay! I'm $bash πŸ‘‹

A Full-Stack Data Scientist from Philippines

albertyumol

albertyumol

Connect with me:

albert1177 albertyumol bash.yumol.3

Languages and Tools:

bootstrap codeigniter css3 docker gcp git heroku html5 laravel linux mariadb mysql php postman tailwind

Support:

albertyu



Anurag's github stats

Top Langs

Pinned Loading

  1. Image-Processing-on-Scilab Image-Processing-on-Scilab Public

    Code archive for Image Processing using Scilab.

    Jupyter Notebook 2

  2. albertyumol.github.io albertyumol.github.io Public

    Source code of my personal blog credits to Jekyll and Barry Clark.

    JavaScript 1 3

  3. Arduino-16x2-LCD Arduino-16x2-LCD Public

    Code for displaying texts in a 16x2 LCD with I2C module and Arduino.

    C++ 1

  4. Arduino-LED-Matrix Arduino-LED-Matrix Public

    Arduino code for 4 cascaded LED matrix to show 'marquee' type moving texts.

    C++

  5. data-science-code-dump data-science-code-dump Public

    This contains my data science cheat sheet codes used previously from studies.

    Jupyter Notebook 1 24

  6. Plotting normal pdf's in Python. Plotting normal pdf's in Python.
    1
    import numpy as np
    2
    import matplotlib.pyplot as plt
    3
    def normal_pdf(x, mu=0, sigma=1):
    4
        sqrt_two_pi = np.sqrt(2*np.pi)
    5
        return (np.exp(-(x-mu)**2/2/sigma**2)/(sqrt_two_pi*sigma))