Giter Club home page Giter Club logo

About Me

Hi there — I'm Jason 👋

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 drawing, gardening, cooking, running, and hiking with my partner and our dog. I also enjoy learning new programming and markup languages on my own — because I'm a nerd 🤓

Get In Touch

  • github.com/jasonglassbrook (you're already here)

  • linkedin.com/in/jasonglassbrook

  • To email me, run the following code in your browser's console.

    if (window.confirm('If you click "OK", you will be redirected to email Jason.')) {
      /* Can you figure out the secret code? */
      const secret = {
        base: 36,
        code: { "1a": ["p"], "1s": ["9"], "2p": ["b", "h"], "2q": ["k"], "2r": ["5"], "2s": ["q"], "2t": ["1", "4", "7", "r"], "2v": ["f"], "2y": ["a"], "2z": ["o"], "3a": ["s"], "17": ["2"], "30": ["g"], "31": ["0"], "32": ["e"], "33": ["d", "m", "n"], "36": ["6", "l"], "37": ["3", "c", "i", "j"], "38": ["8"] }
      };
    
      function decodeSecret(secret /*: Secret*/) /*: string*/ {
        /* Define decoder. */
        function decodeItem(x /*: string*/) /*: number*/ {
          return parseInt(x, secret.base);
        }
    
        /* Initialize empty list of code points `codeList`. */
        const codeList = [];
    
        /* Reconstruct code points from the secret. */
        for (const [secretCode, secretIndexList] of Object.entries(secret.code)) {
          /* Decode secret code to a real code point. */
          const code = decodeItem(secretCode);
    
          for (const secretIndex of secretIndexList) {
            /* Decode secret index to a real index. */
            const index = decodeItem(secretIndex);
    
            /* If needed, grow the list of code points. */
            const missingLength = index + 1 - codeList.length;
            if (missingLength > 0) {
              codeList.push(...Array(missingLength));
            }
    
            /* Place the code point. */
            codeList[index] = code;
          }
        }
    
        /* Convert the code points to a string; return. */
        return String.fromCodePoint(...codeList);
      }
    
      /* Recover email from secret. */
      const email = decodeSecret(secret);
      const [emailBeforeAt, emailAfterAt] = email.split("@");
      const emailWithTimestamp =  `${emailBeforeAt}+${Date.now().toString()}@${emailAfterAt}`;
    
      /* Redirect to email. */
      window.location.assign(`mailto:${emailWithTimestamp}`);
    }

J 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.