Skip to content
View sailaopoeng's full-sized avatar
  • Singapore
Block or Report

Block or report sailaopoeng

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
sailaopoeng/README.md
  • 👋 Hi, I’m @sailaopoeng
  • 👀 I’m interested in software development
  • 🌱 I’m currently learning Python
  • 💞️ I’m looking to collaborate on javascript and python
  • 📫 How to reach me : https://www.linkedin.com/in/sailaopoeng/

Pinned Loading

  1. Little Endian in Javascript Little Endian in Javascript
    1
    function littleEndian(v){
    2
        var s = v.toString(16);             // translate to hexadecimal notation
    3
        s = s.replace(/^(.(..)*)$/, "0$1"); // add a leading zero if needed
    4
        var b = s.match(/../g);             // split number in groups of two
    5
        b.reverse();                        // reverse the groups
  2. crcCalc crcCalc Public

    crc calculator (HEX to string viewer

    C#

  3. event-promo-signup-backend event-promo-signup-backend Public

    JavaScript

  4. event-promo-signup-static event-promo-signup-static Public

    CSS

  5. my_string_utils my_string_utils Public

    String Utilities I frequently use. Build with React

    JavaScript

  6. UnixTimeConverter UnixTimeConverter Public

    Fun project to convert between unix time and human readable time in C#

    C#