{"version":3,"file":"component---src-pages-resume-js-9b126b09e8de5359d77f.js","mappings":"qMAGe,SAASA,IACtB,IASQC,GATKC,EAAAA,EAAAA,IAAe,aASLC,KAAKC,aAApBH,MAER,OACE,2BACE,0BAAMA,GACN,uBAAKI,UAAU,SACb,gBAAC,KAAD,CAAMC,GAAG,KAAT,QACA,gBAAC,KAAD,CAAMA,GAAG,WAAT,UACA,gBAAC,KAAD,CAAMA,GAAG,cAAT,e,cCTR,EATa,kBACX,gCACE,gBAAC,EAAAC,MAAD,qBACA,gBAAC,EAAAC,KAAD,CAAMC,KAAK,cAAcC,QAAQ,mBACjC,gBAAC,EAAAF,KAAD,CAAMC,KAAK,WAAWC,QAAQ,wCAC9B,gBAAC,EAAAC,KAAD,CAAMC,IAAI,YAAYF,QAAQ,iCCFnB,SAASG,EAAT,GAA+B,IAAbC,EAAY,EAAZA,SAUvBC,GATKb,EAAAA,EAAAA,IAAe,aASDC,KAAKC,aAAxBW,UAER,OACE,uBAAKV,UAAU,UACb,gBAAC,EAAD,MACA,gBAACL,EAAD,MACA,uBAAKK,UAAU,WACXS,GAEJ,8BACE,yBAAKC,O,oDCgOb,UAvPc,WACZ,OACE,gBAAC,IAAD,KACE,2BACE,oCACA,uBAAKV,UAAU,UACb,0BACE,gDAEF,8BACE,yBACE,qBACEW,KAAK,6BACLC,OAAO,SACPL,IAAI,cAEJ,yCALF,uBAOA,2BACA,qBACEI,KAAK,oDACLC,OAAO,SACPL,IAAI,cAEJ,2CALF,0CATF,IAiBE,qBACEI,KAAK,mCACLC,OAAO,SACPL,IAAI,cAEJ,wCALF,+BASJ,uCACA,2BACA,2BACA,2BACE,2BACE,qBACEI,KAAK,qCACLC,OAAO,SACPL,IAAI,cAEJ,sBAAIM,MAAO,CAAEC,QAAS,iBAAtB,0BANJ,IAWE,iDACA,wBAAMD,MAAO,CAAEE,MAAO,UAAtB,8BAEF,2BACA,8FAIA,2BACA,2BACE,qBACEJ,KAAK,4BACLC,OAAO,SACPL,IAAI,cAEJ,sBAAIM,MAAO,CAAEC,QAAS,iBAAtB,wBANJ,IASE,iDACA,wBAAMD,MAAO,CAAEE,MAAO,UAAtB,2BAEF,2BACA,0EAEF,2BACA,oCACA,2BACA,2BACA,2BACE,sBAAIF,MAAO,CAAEG,kBAAmB,WAC9B,gFAEF,2BACA,sBAAIH,MAAO,CAAEG,kBAAmB,WAC9B,qHAKF,2BACA,sBAAIH,MAAO,CAAEG,kBAAmB,WAC9B,yEAGJ,2BACA,qCACA,2BACA,2BAEA,4CACA,yBACE,+DAEF,qCAEE,qBACEL,KAAK,6BACLC,OAAO,SACPL,IAAI,cAHN,+BAQF,sBAAIM,MAAO,CAAEG,kBAAmB,WAC9B,4HAIA,kFACA,oHAMF,2BAEA,kDACA,yBACE,kGAKF,qCAEE,qBACEL,KAAK,kCACLC,OAAO,SACPL,IAAI,cAHN,oCAQF,sBAAIM,MAAO,CAAEG,kBAAmB,WAC9B,sHAIA,iIAIA,gGAGA,6DAGF,2BACA,kDACA,yBACE,4FAKF,qCAEE,qBACEL,KAAK,qCACLC,OAAO,SACPL,IAAI,cAHN,uCAQF,sBAAIM,MAAO,CAAEG,kBAAmB,WAC9B,4HAIA,4HAKF,2BACA,kEACA,yBACE,yDAEF,qCAEE,qBACEL,KAAK,4CACLC,OAAO,SACPL,IAAI,cAHN,8CAQF,sBAAIM,MAAO,CAAEG,kBAAmB,WAC9B,qFACA,qIAKF,2BACA,kFACA,yBACE,yEAIF,qCAEE,qBACEL,KAAK,kFACLC,OAAO,SACPL,IAAI,cAHN,oFAQF,sBAAIM,MAAO,CAAEG,kBAAmB,WAC9B,4HAIA,sHAIA","sources":["webpack://gatsby-starter-hello-world/./src/components/Navbar.js","webpack://gatsby-starter-hello-world/./src/components/Head.js","webpack://gatsby-starter-hello-world/./src/components/Layout.js","webpack://gatsby-starter-hello-world/./src/pages/resume.js"],"sourcesContent":["import React from 'react'\nimport { graphql, Link, useStaticQuery } from 'gatsby'\n\nexport default function Navbar() {\n const data = useStaticQuery(graphql`\n {\n site {\n siteMetadata {\n title\n }\n }\n }\n `)\n const { title } = data.site.siteMetadata\n\n return (\n \n )\n}","import React from \"react\";\nimport { Title, Link, Meta } from \"react-head\";\n\nconst Head = () => (\n <>\n ✨WebZhongyu✨\n \n \n \n \n);\n\nexport default Head;","import React from 'react'\nimport Navbar from './Navbar'\nimport Head from './Head'\nimport '../styles/global.css'\nimport { graphql, useStaticQuery } from 'gatsby'\n\nexport default function Layout({ children }) {\n const data = useStaticQuery(graphql`\n {\n site {\n siteMetadata {\n copyright\n }\n }\n }\n `)\n const { copyright } = data.site.siteMetadata\n\n return (\n
\n \n \n
\n { children }\n
\n \n
\n )\n}","import React from \"react\"\nimport Layout from \"../components/Layout\"\n\nconst About = () => {\n return (\n \n
\n

Resume

\n
\n

\n
Zhongyu Zhang
\n

\n
\n

\n \n Github: github.com/zzygith\n \n
\n \n Linkedin: linkedin.com/in/zhongyu-zhang-profile\n \n  \n \n Email: zhangzhongyu98@gmail.com\n \n

\n
\n

Education

\n
\n
\n
\n
\n \n

\n University of Alberta\n

\n \n  \n (2020.09-2022.04)\n Edmonton, Alberta, Canada\n
\n
\n
\n Master's Degree Electrical and Computer\n Engineering GPA:3.8/4.0\n
\n
\n
\n \n

Shandong University

\n \n  \n (2016.09-2020.06)\n Jinan, Shandong, China\n
\n
\n
Bachelor‘s Degree Automation GPA:83.66/100
\n
\n
\n

Skills

\n
\n
\n
\n
    \n
  • HTML5 / CSS3 / Flexbox / Grid / Bootstrap / Layui
  • \n
\n
\n
    \n
  • \n JavaScript / JQuery / React / Redux / Styled Components /\n Storybook / Gatsby / GraphQL\n
  • \n
\n
\n
    \n
  • NodeJS / ExpressJS / MySQL / Python / Git
  • \n
\n
\n
\n

Project

\n
\n
\n\n

Portfolio Site

\n

\n GatsbyJS & CSS Modules & GraphQL\n

\n

\n Demo URL:\n \n https://www.webzhongyu.com\n \n

\n
    \n
  • \n Migrated my original portfolio from an HTML file to a React app\n using GatsbyJS and CSS Modules\n
  • \n
  • Accessed markdown files and other data using GraphQL
  • \n
  • \n Optimized images by plugins and generated project detail pages by\n template components\n
  • \n
\n\n
\n\n

Instant Messaging UI

\n

\n \n React & React Router & React Spring & Styled\n Components & Storybook\n \n

\n

\n Demo URL:\n \n https://chatui-show.netlify.app\n \n

\n
    \n
  • \n Developed a single-page chat application UI including 30+\n components using React + Hooks\n
  • \n
  • \n Built a three-column layout including navbar, message list and\n chat list by CSS-in-JS Grid, Flexbox\n
  • \n
  • \n Used React Spring to create animation and React Router to navigate\n
  • \n
  • Designed App UI with Storybook
  • \n
\n\n
\n

Backstage Management

\n

\n \n HTML & CSS & Javascript & JQuery & NodeJS\n & ExpressJS & MySQL\n \n

\n

\n Demo URL:\n \n https://backstage-show.netlify.app\n \n

\n
    \n
  • \n Built a basic front-end user interface that allows webmaster to\n add, modify and remove content\n
  • \n
  • \n Designed RESTful APIs to verify or change user information, create\n drafts or publish articles\n
  • \n
\n
\n

2D Human-Pose Estimation In Realtime

\n

\n Python & OpenCV & OpenPose\n

\n

\n Demo URL:\n \n https://github.com/zzygith/pose-detection\n \n

\n
    \n
  • Used the OpenPose algorithm to detect the pose of human
  • \n
  • \n Calculated the angle between Neck-Nose line and Neck-Crotch line\n to correct student’s sitting position\n
  • \n
\n
\n

Recognition and Classification of Paper-Plastic Bags

\n

\n \n Python & OpenCV & SIFT & FLANN & CART tree\n \n

\n

\n Demo URL:\n \n https://github.com/zzygith/Recognition-and-Classification-of-Paper-Plastic-Bags\n \n

\n
    \n
  • \n Achieved the classification of different bags using the SIFT\n algorithm and FLANN fast matching\n
  • \n
  • \n Detected rectangles to identify the stacking by Hough transform\n line detection algorithm\n
  • \n
  • \n Extracted the printing defects outline by Template Matching and\n classified them by CART tree\n
  • \n
\n
\n
\n
\n )\n}\n\nexport default About\n"],"names":["Navbar","title","useStaticQuery","site","siteMetadata","className","to","Title","Meta","name","content","Link","rel","Layout","children","copyright","href","target","style","display","float","listStylePosition"],"sourceRoot":""}