Hi. I'm Martin
I’m a software engineer specializing in building exceptional digital products. Currently, I’m looking to contribute towards building accessible, sustainable human-centered products with a new team.
Check out my resume

I am a highly skilled and passionate software engineer with expertise in creating web applications using JavaScript, React.js, Express.js and Node.js. My technical proficiency also includes experience in databases such as MongoDBand SQL, using REST and GraphQL APIs as well as cloud computing platforms like Amazon Web Services (AWS).

I take pride in designing, developing, and deploying quality software solutions that meet the unique needs of users. My passion for software engineering drives me to continuously learn and implement new technologies, staying up-to-date with the latest trends in the field.

I am excited to use my skills to build cutting-edge web applications and make a positive impact in the world of software engineering.


import React, { useState, useEffect } from 'react';
import styles from ‘./Summary.module.css;

const Summary = () => {
  const [ coworkers, setCoworkers ] = useState();

  useEffect(() => ({
     fetch('https://randomuser.me/api/')
       .then((response) => response.json())
       .then((data) => setCoworkers(data.results.map((user) => 
             ({name: user.name.first + " "user.name.last,
               email: user.email, 
               picture: user.picture.medium
              }))
            ))

         )
        },[]);
      
        return (
          <div className={styles.aboutMe}>
            <h1>About me</h1>
            <p>
                   I am a highly skilled and passionate software engineer with 
                   expertise in creating web applications using JavaScript, 
                   SQL, React.js, and Node.js. My technical proficiency also 
                   includes experience in databases such as MongoDB and MS SQL, 
                   as well as cloud computing platforms like Amazon Web Services (AWS).
             </p>
             <p>
                   I take pride in designing, developing, and deploying quality
                 software solutions that meet the unique needs of users. 
                 My passion for software engineering drives me to continuously 
                    learn and implement new technologies, staying 
                   up-to-date with the latest trends in the field.
             </p>
             <p>
                   I am excited to use my skills to build cutting-edge 
                 web applications and make a positive impact 
                   in the world of software engineering.
             </p>
            <div className={styles.coworkers}>
               <h1>Here are people I have worked with!<h1>
               {coworkers.map((coworker) => {
                    return (
                     <div className={styles.coworker}>
                        <p>{coworker.name}</p>
                        <img src={coworker.picture} />
                        <p>{coworker.email}</p>
                     </div>
                    )
                })}
            </div>
            <div className={styles.projects}>
                <h1>Here are some projects I have worked on!</h2>
            

                  {projects.map((project) => {
                    return (
                      <div className={styles.project}>
                         <h2>{project.name}</h2>
                         <p>{project.description}</p>
                      </div>
                    )
                 }
               } 
              </div>
            </div>
          );
        };
        
        export default Summary;
Get In Touch
my inbox is always open. Whether you have a question or just want to create your next idea together !
Say Hello
To Do - Advanced Task Manager
Full Stack Engineer - UI Designer
A 'Todo' web platform that provides users with a task management interface that allows for the creation, update, and deletion of tasks. Additional functions in this project include: task flags / category 'chips', task status filtering, user authentication, user-authenticated saved tasks, and real-time updates.
Next.js
AWS AppSync
AWS Amplify
AWS DynamoDB
GraphQL API
NextAuth.js
MaterialUI
desktop image
mobile image
Chord Search
Full Stack Engineer - UI Designer
Search platform for guitar players, which displays a grid of diagrams for accurate chord finger placement. - All diagrams (including interactive) are drawn using the HTML Canvas feature
React.js
AWS S3
AWS Lambda
MongoDB
Express.js
REST API
Axios
desktop image
mobile image
Quickbnb
Full Stack Engineer - UI Designer
Web-based search platform using React, simplifying the search experience for Airbnb listings. Features include selecting multiple listings and sharing them with multiple email addresses.
React.js
Emailjs
Vercel
REST API
desktop image