Skip to content
View jaceglassbrook's full-sized avatar
🐌
🐌

Highlights

  • Pro
Block or Report

Block or report jaceglassbrook

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

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}`);
}

Pinned Loading

  1. jaceglassbrook.github.io jaceglassbrook.github.io Public

    My amazing portfolio website (in the works).

    CSS

  2. code-challenges code-challenges Public

    Here are most of the code challenges that I've worked on.

    Python 1

  3. ttw4-mud/server ttw4-mud/server Public

    Python

  4. Build-Week-Spider-Graph-1/frontend Build-Week-Spider-Graph-1/frontend Public

    JavaScript 3