| | <!DOCTYPE html> |
| | <html lang="en"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <title>GRaPE-Mini-Beta: About Me | GRaPE</title> |
| | |
| | |
| | <style> |
| | :root { |
| | --primary-color: #2c3e50; |
| | --secondary-color: #f1674d; |
| | --accent-color: #bda290; |
| | } |
| | |
| | body { |
| | font-family: 'Arial', sans-serif; |
| | line-height: 1.6rem; |
| | margin: 0 auto; |
| | max-width: 80%; |
| | padding: 1rem; |
| | background-color: var(--secondary-color); |
| | } |
| | |
| | header { |
| | |
| | display: flex; |
| | flex-direction: column; |
| | align-items: center; |
| | margin-bottom: 2rem; |
| | } |
| | |
| | nav { |
| | background-color: var(--primary-color); |
| | padding: 1.5rem; |
| | border-radius: 8px; |
| | box-shadow: 0 4px 6px rgba(0,0,0,.1); |
| | margin-bottom:2rem; |
| | } |
| | |
| | .nav-item a { |
| | color: white; |
| | text-decoration: none; |
| | padding-left: 2rem; |
| | } |
| | |
| | main { |
| | |
| | padding: 3rem; |
| | } |
| | |
| | section { |
| | background-color: #f9e8c7; |
| | border-radius: 4px; |
| | box-shadow: 0 4px 6px rgba(0,0,0,.1); |
| | margin-bottom:2.5rem; |
| | padding: 2rem; |
| | |
| | } |
| | |
| | .skills-section { |
| | background-color: #f9e8c7; |
| | border-radius: 4px; |
| | box-shadow: 0 4px 6px rgba(0,0,0,.1); |
| | padding:2rem; |
| | } |
| | |
| | footer { |
| | text-align:center; |
| | background-color: var(--primary-color); |
| | color:#fff; |
| | border-top-left-radius:8px; |
| | box-shadow: 0 4px 6px rgba(0,0,0,.1); |
| | padding:2rem; |
| | } |
| | |
| | .card { |
| | max-width:300px; |
| | background-color:white; |
| | margin:1.5rem auto; |
| | padding:2rem; |
| | border-radius:8px; |
| | } |
| | |
| | </style> |
| | </head> |
| |
|
| | <body> |
| | |
| | <header> |
| | <img src="" alt="GRaPE-Mini-Beta Logo" style="width: 20rem; margin-bottom:1.5rem;"> |
| | |
| | |
| | <h1>GRaPE-Mini-Beta: About Me | GRaPE</h1> |
| | </header> |
| |
|
| | <nav id="main-nav"></nav> |
| |
|
| | |
| | <main> |
| | |
| | <section id="education" class="card skills-section"> |
| | <div class="card-header">Experience</div> |
| | <ul> |
| | <li>20+ years of Python and web development expertise</li> |
| | <li>Mentorship in advanced machine learning frameworks like TensorFlow or PyTorch</li> |
| | |
| | </ul> |
| | </section> |
| |
|
| | |
| | <section id="skills" class="card skills-section"> |
| | <div class="card-header">Technical Proficiencies</div> |
| | <p>Core Technologies: Python, JavaScript (Node.js), HTML/CSS/JS Frameworks, |
| | React/Django/Svelte for client-side rendering.</p> |
| |
|
| | |
| | <ul> |
| | <li>CUDA and Numba for high-performance computing</li> |
| | <li>Rust programming language optimizations in systems software</li> |
| | |
| | </ul> |
| | </section> |
| |
|
| | |
| | <section id="publications" class="card skills-section"> |
| | <div class="card-header">Publications and Research</div> |
| | <p>Contributed to open-source projects in the following areas:</p> |
| | <ol type="1"> |
| | <li>AutoML: a Python library for automated machine learning pipeline development.</li> |
| | <li>Data visualization tools with Pandas, Matplotlib, Seaborn.</li> |
| | |
| | </ol> |
| |
|
| | </section> |
| |
|
| | |
| | <section id="portfolio" class="card skills-section"> |
| | <div class="card-header">Portfolio</div> |
| | <ul> |
| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | </ul> |
| | </section> |
| |
|
| | |
| | <section id="contributions" class="card skills-section"> |
| | <div class="card-header">Contributions</div> |
| | <p>Worked on open-source projects like "PyTorch Lightning" |
| | and community-driven initiatives.</p> |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | </section> |
| |
|
| | |
| | <section id="achievements" class="card skills-section"> |
| | <div class="card-header">Achievements</div> |
| | <p>Received certifications in Python, JavaScript (ES6), and C++ programming languages.</p> |
| | |
| | |
| | |
| | |
| | </section> |
| |
|
| | |
| | <section id="influences" class="card skills-section"> |
| | <div class="card-header">Influences</div> |
| | <p>Mentored by leading Python developers like Guido van Rossum |
| | and contributed to projects such as "NumPy's advanced indexing algorithm." |
| | |
| | </section> |
| |
|
| | |
| | <form id="contact-form"> |
| | <div class="card" style="margin-bottom: 3rem;"> |
| | <h2>Contact GRaPE-Mini-Beta</h2> |
| | <label for="name">Name:</label><br> |
| | <input type="text" name="name"><br> |
| |
|
| | |
| |
|
| | <button type="submit">Submit Your Inquiry!</button> |
| | </div> |
| | </form> |
| | </main> |
| |
|
| |
|
| | <script src=""></script> |
| |
|
| | <footer role="contentinfo"> |
| | Copyright GRaPE-Mini-Beta 2025 - All rights reserved |
| | </footer> |
| |
|
| | </body> |
| | </html> |