Here are my resumes, nice looking one, ATS safe version.
If you want to get in touch with me, use the contact page. touch_app
Portfolio site, this project is where I will refresh from time to time by using the industry trendy frameworks, design methodology, and best practices so that I can showcase my front-end development chops.
The codes I used in this project are source controlled in two different repos on Github. The storybook repo, and the ui-component repo. ui-component repo is a common component library that I am working on that can be used in other projects. I'll talk more about it in the ui-component project section. The storybook repo has all the code for thedepartedonline.com site including the storybook codes.
For the front end, I am using next.js as the javascript framework because I feel like they are doing something amazing with react.js. It is server side rendering by default, but it gives plenty options to do client side render for components and rendering speed is always optimized. I am using my ui-component as a git submodule instead of using it as a node package because I don't need to deal with the whole packaging the project thing, it just works.
For the CI and CD, I set up two different pipelines in Netlify, one to build and deploy the portfolio site, the other one to build and deploy the storybook documentation site. Anytime a commit happen in the storybook repo's main branch will trigger a deployment in both pipelines. My domain registray is Squarespace, but it was Google Domain before it was sold to Squarespace. It is really easy to set up the custom domain in Netlify and the hosting is free for personal projects. Super happy with their service.
There is really no backend for my portfolio site. The only thing is a contact form. For that, I am using Google sheet, I made an ActionScript based on this repo: https://github.com/jamiewilson/form-to-google-sheets. Super easy to set up. To hide the actual form api endpoint, I created a route handler in the nextjs app, take in the form data as is and submit it straight to the google sheet. Since this is handled on the server side, the Google sheet Actionscript api endpoint is not exposed in the network traffic. Obviously, the url is put in an env file which is handled by the Netlify's environment variable feature in the build process so it is committed in the source control.
Check out my component library in progress.