diff --git a/a.sh b/a.sh new file mode 100644 index 0000000..a58e0f3 --- /dev/null +++ b/a.sh @@ -0,0 +1 @@ +git add . diff --git a/css/main.css b/css/main.css index e976f07..f2a2bbc 100644 --- a/css/main.css +++ b/css/main.css @@ -181,6 +181,11 @@ body p { #resume-main section#skills-section .skills-container .li-skill .skill-type-title { font-weight: 500; } +#resume-main section .single-job:not(:last-child) ul, +#resume-main section .single-project:not(:last-child) ul { + padding: 0 0 1.3rem 1.8rem; +} + #resume-footer { text-align: center; font-size: 1rem; @@ -190,6 +195,9 @@ body p { /* Print Styles */ @media print { @page {} + html { + font-size: 40%; /* Reducing the base font size by 90% */ + } body { padding: 0; font-size: 1.4rem; diff --git a/index.html b/index.html index c320935..3f3898c 100644 --- a/index.html +++ b/index.html @@ -125,12 +125,11 @@

Professional Summary

- With over 3 years of experience as a versatile Full-Stack Software Engineer, I specialise in creating scalable, - cloud-native solutions using Elixir, Java, PHP, and advanced JavaScript frameworks. At ByteDance, I've honed my - skills in aPaaS development through hands-on work with the Feishu App Engine, enhancing efficiency in low-code - environments. My work extends beyond engineering, contributing to strategic project management and translating - complex technical concepts into actionable insights. I am passionate about building resilient systems that drive - success for forward-thinking organisations. + As a dedicated Software Engineer with over 3 years of experience, I have a proven track record of designing and developing scalable, high-performance systems. My expertise spans various programming languages and technologies, including JavaScript, Elixir, and AWS, with a focus on delivering solutions that enhance operational efficiency and improve user experiences. I thrive in fast-paced environments where I can apply my problem-solving skills and passion for innovation, continuously exploring new tools and methodologies. + + At ByteDance, I led full-stack development efforts for large-scale projects, optimising data flows and processing for over 180,000 users, and improving system performance through advanced architectural design. My ability to work effectively both independently and as part of cross-functional teams has allowed me to consistently deliver high-quality software solutions, all while maintaining a strong focus on user satisfaction and business impact. + + I am passionate about staying current with emerging technologies, and I am eager to contribute to a forward-thinking organisation that values growth, collaboration, and cutting-edge innovation. My commitment to lifelong learning, combined with a proactive approach to solving complex challenges, makes me a valuable asset to any team.

diff --git a/scripts/data.js b/scripts/data.js index ced9f4a..813a866 100644 --- a/scripts/data.js +++ b/scripts/data.js @@ -1,7 +1,7 @@ const RESUME_DATA = { "name": "Jing Hui PANG", "name_cn": "彭竞辉", - "title": "Full-Stack Software Engineer, Technical Leader, Project Manager", + "title": "Full-Stack Software Engineer, Project Manager, aPaaS Consultant", "location": "Singapore", "contact": { "phone": "+65 8128 7402", @@ -10,10 +10,8 @@ const RESUME_DATA = { "portfolio": "https://enkr1.github.io/platforms", "linkedin": "https://www.linkedin.com/in/jinghuipang" }, - // "summary": "With over 3 years of experience as a Full-Stack Software Engineer, I am deeply passionate about Elixir and its potential for building scalable, high-performance applications. Although my current role focuses on a broader tech stack, I am eager to contribute to a team where Elixir is at the forefront. Inspired by its adoption in platforms like Discord and WhatsApp, I am enthusiastic about learning and growing in an Elixir-focused environment, ready to help drive innovation and sustainability at Apple.", - // Original - "summary": "In the fast-paced world of technology, I distinguish myself as a multifaceted Software Engineer with over 3 years of hands-on experience. Specialised in Java, PHP, and cloud-native solutions like AWS and Terraform, I have led cross-functional teams in delivering high-impact digital products. My unique blend of expertise ranges from scalable microservices and RESTful APIs to advanced data structures and CI/CD pipelines. A staunch advocate of agile methodologies, I transform complex requirements into robust and fault-tolerant systems. As I continually seek challenges that stretch the boundaries of software engineering, I am eager to contribute to forward-thinking organisations leading the tech innovation landscape.", + "summary": "As a dedicated Software Engineer with over 3 years of experience, I have a proven track record of designing and developing scalable, high-performance systems. My expertise spans various programming languages and technologies, including JavaScript, Elixir, and AWS, with a focus on delivering solutions that enhance operational efficiency and improve user experiences. I thrive in fast-paced environments where I can apply my problem-solving skills and passion for innovation, continuously exploring new tools and methodologies. At ByteDance, I led full-stack development efforts for large-scale projects, optimising data flows and processing for over 180,000 users, and improving system performance through advanced architectural design. My ability to work effectively both independently and as part of cross-functional teams has allowed me to consistently deliver high-quality software solutions, all while maintaining a strong focus on user satisfaction and business impact. I am passionate about staying current with emerging technologies, and I am eager to contribute to a forward-thinking organisation that values growth, collaboration, and cutting-edge innovation. My commitment to lifelong learning, combined with a proactive approach to solving complex challenges, makes me a valuable asset to any team.", "technical_skills": [ { "category": "Programming Languages", diff --git a/styles/_print.scss b/styles/_print.scss index e2c2c2e..ebba395 100644 --- a/styles/_print.scss +++ b/styles/_print.scss @@ -4,6 +4,10 @@ // margin: 1in; } + html { + font-size: 40%; /* Reducing the base font size by 90% */ + } + header, footer { // display: none; diff --git a/styles/_resume.scss b/styles/_resume.scss index 8e87c39..acf4208 100644 --- a/styles/_resume.scss +++ b/styles/_resume.scss @@ -1,3 +1,6 @@ + +$ul-padding-1: 1.8rem; + #resume-main { // Section Styles @@ -25,7 +28,7 @@ } ul { - padding: 0 0 0rem 1.8rem; + padding: 0 0 0rem $ul-padding-1; display: flex; flex-direction: column; gap: .3rem; @@ -47,6 +50,7 @@ @media screen and (max-width: $screen_sm) { flex-direction: column; align-items: flex-start; + p { text-align: right; width: 100%; @@ -87,8 +91,14 @@ } } - &#experience-section { - .job-header {} + &#experience-section {} + + + .single-job:not(:last-child), + .single-project:not(:last-child) { + ul { + padding: 0 0 1.3rem $ul-padding-1; + } } }