Skip to content
View hsingtism's full-sized avatar
  • Georgia, United States
  • 05:41 (UTC -04:00)
Block or Report

Block or report hsingtism

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
hsingtism/README.md
  • ๐Ÿ‘‹๐Ÿผ Hi, Iโ€™m Hsing Lo, or @hsingtism
  • ๐Ÿ‘€ Iโ€™m interested in functional programming, although I am also working on webapps and other projects
  • ๐ŸŒฑ Iโ€™m currently learning the more advenced aspects of JavaScript and the more abstract part of computer science
  • ๐Ÿ“ซ I can be reached by E-mail at hsing@flyingbat.net.
  • ๐ŸŒŽ My works, including non-programming ones, can be found on my website
  • ๐Ÿ”’ You can find a public PGP key of mine in the repo or on my website

Pinned Loading

  1. double-pendulum-web double-pendulum-web Public

    double pendulum simulator in js

    JavaScript 2

  2. mandelbrot-area mandelbrot-area Public

    A program that approximates the area of the Mandelbrot set

    C 1

  3. tic-tac-toe-2 tic-tac-toe-2 Public

    tic-tac-toe webapp

    JavaScript

  4. A function that calculates if text c... A function that calculates if text color should be black given a background color. (W3C compliant for all values)
    1
    function useBlack(r, g, b) {
    2
        const e = v => Math.pow(v / 255 + 0.055, 2.4)
    3
        r < 11 ? r /= 15496 : r = e(r) / 5.348631
    4
        g < 11 ? g /= 4606. : g = e(g) / 1.589931
    5
        b < 11 ? b /= 45631 : b = e(b) / 15.74957
  5. liouville-sum liouville-sum Public

    A program that evaluates the value of the summatory Liouville function

    C

  6. map-of-history-dump map-of-history-dump Public

    semi-organized dump of code used during the making of "The Map of History"

    JavaScript