GithubHelp home page GithubHelp logo

About Me

Hi there — I'm Jace 👋

I'm a full-stack web developer with a background in teaching and mechanical engineering. I'm an experienced programmer who focuses on usability and writing clean, reusable code. I love solving challenging problems and figuring out complex systems.

I develop with JavaScript/TypeScript and Python, but I enjoy learning new languages. I've developed front-end apps with React and back-end apps with Django and Node+Express. I've even developed a mobile app (Android/iOS) with React Native + Expo. Before I entered web development, I programmed with MATLAB/Simulink, C/C++, Fortran, and Java for research and school. I also taught MATLAB to engineering students.

Outside of work, I enjoy singing, cooking, gardening, and going for walks/hikes with my partner. I also enjoy learning new programming and markup languages on my own — because I'm a nerd 🤓

Get In Touch

NOTE: If you're using a Chromium-based browser (Google Chrome, Microsoft Edge, Opera, Vivaldi, Brave, etc.), then you may need to type and enter allow pasting before your browser will allow you to paste the following code into your browser's console.

if (window.confirm('If you click "OK", you will be redirected to email Jace.')) {
  /* can you figure out the secret code? */
  const secret/*: Secret*/ = {
    base: 36,
    code: { "17": ["c"], "30": ["3"], "31": ["r"], "32": ["p"], "33": ["9", "a", "m", "o"],
            "34": ["k"], "36": ["8", "g", "l"], "37": ["5", "6", "d"], "38": ["i", "n"],
            "2y": ["0"], "2n": ["1"], "2v": ["2"], "2p": ["4"], "2q": ["7"], "2z": ["b"],
            "2t": ["e", "h", "s"], "2r": ["f"], "1s": ["j"], "1a": ["q"] }
  };

  function decodeSecret(secret/*: Secret*/)/*: string*/ {
    function decodeItem(x/*: string*/)/*: number*/ {
      return parseInt(x, secret.base);
    }
    /* reconstruct code points from the secret. */
    const codeList/*: [number]*/ = [];
    for (const [secretCode, secretIndexList]/*: [string, [string]]*/ of Object.entries(secret.code)) {
      /* decode secret code to a real code point. */
      const code/*: number*/ = decodeItem(secretCode);

      for (const secretIndex of secretIndexList) {
        /* decode secret index to a real index. */
        const index/*: number*/ = decodeItem(secretIndex);
        /* if needed, grow the list of code points. */
        const missingLength/*: number*/ = index + 1 - codeList.length;
        if (missingLength > 0) {
          codeList.push(...Array(missingLength));
        }
        /* put the code point in the list. */
        codeList[index] = code;
      }
    }
    /* convert the code points to a string; return it. */
    return String.fromCodePoint(...codeList);
  }

  /* recover email address from secret. */
  const address/*: string*/ = decodeSecret(secret);
  const [addressBeforeAt, addressAfterAt]/*: [string, string]*/ = email.split("@");
  const addressWithTimestamp/*: string*/ = `${addressBeforeAt}+${Date.now().toString()}@${addressAfterAt}`;

  /* redirect user to send an email. */
  window.location.assign(`mailto:${addressWithTimestamp}`);
}

Jace Glassbrook's Projects

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.