Skip to content
View HaroleDev's full-sized avatar
Block or Report

Block or report HaroleDev

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

Quick Links Personal Website Email

Harole, a quirky hobbyist.

Harole working on his laptop

Hello! I’m nicknamed Harole Duong (also called Harole Ethan, or Harole for short) and describe myself as a demiboy and a quirky hobbyist. I've been self-taught as a visual designer, illustrator, and programmer since I was an adolescent, and I've taught myself other hobbies since then.

Aside from that, I’m a student studying at an international American school in Southern Vietnam.

Playful Video Player Illustration with a boundless frame

An HTML5-based video player.

Airycons table of icons with a boundless frame

A weather icon pack for everyone.

Follow @thatharole


Cheers,

Harole's Signature

- Harole

Pinned

  1. Airycons Airycons Public

    A work in progress into bringing airy weather icons to everyone.

    6

  2. Formatting time function with days a... Formatting time function with days and weeks.
    1
    /* Polyfill for Math.trunc */
    2
    if (Math.trunc == null) {
    3
        Math.trunc = function (/** @type {number} */ x) {
    4
    		var n = +x
    5
    		return (n > 0 ? Math.floor : Math.ceil)(n)