diff options
author | Arnav Bhatt <arnav@ghativega.in> | 2023-11-20 01:40:06 +0530 |
---|---|---|
committer | Arnav Bhatt <arnav@ghativega.in> | 2023-11-20 01:40:06 +0530 |
commit | 8b6fc44b0b4afc0a0f2b4c5dac1f6aeb6144179e (patch) | |
tree | ca96c6f151b306434c60fef24b0320c247d0fbe2 /data/projects.html | |
parent | 5c8fb008af37f15e6b0d02f0e5ec031ca2407847 (diff) |
change thingies
Diffstat (limited to 'data/projects.html')
-rw-r--r-- | data/projects.html | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/data/projects.html b/data/projects.html new file mode 100644 index 0000000..905aff7 --- /dev/null +++ b/data/projects.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> + +<html> + <head> + <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> + <link rel='stylesheet' type='text/css' href='style.css'> + <meta property="og:title" content="Ghativega.in"> + <meta property="og:description" content="Personal site of arnavbhatt288."> + <meta http-equiv="pragma" content="no-cache"> + <meta http-equiv="cache-control" content="no-cache"> + <title>Ghativega - Projects</title> + <style> + img { border: none ;} + </style> + </head> + +<body> + <div class = logo><img src="assets/images/logo.png" alt="Ghativega"></div> + <ul class = navbar> + <li><a href="index.html">Home</a></li> + <li><a href="about.html">About</a></li> + <li><a href="contact.html">Contact</a></li> + <li><a class="active" href="projects.html">Projects</a></li> + </ul> + <hr> + + <main> + <h3>Personal</h3> + <table> + <tr> + <th id = "border-special">Name</th> + <th>Description</th> + </tr> + + <tr> + <td><a href = "https://github.com/arnavbhatt288/utkirna">utkirna</a></td> + <td>A cross-platform GUI program for reading or writing raw images to removable drives</td> + </tr> + + <tr> + <td><a href = "https://github.com/arnavbhatt288/ros-ramdisk-creator-gui">ros-ramdisk-creator-gui</a></td> + <td>A GUI tool written in C with Nuklear for creating bootable disks of ReactOS for Windows and Linux</td> + </tr> + </table> + + <br> + + <h3>Contributions</h3> + <table> + <tr> + <th id = "border-special">Name</th> + <th>Description</th> + </tr> + + <tr> + <td><a href = "https://github.com/reactos/reactos/pull/3575">environment-dialog-improvement</a></td> + <td>Modernisation of edit environment variable dialog box of ReactOS which includes reworked UI and new features</td> + </tr> + + <tr> + <td><a href = "https://github.com/reactos/reactos/pull/3399">shutdown-logoff-rework</a></td> + <td>Implementing the re-worked shut down dialog box as well as implementing friendly log off dialog box for MSGINA +component of ReactOS</td> + </tr> + + <tr> + <td><a href = "https://gitlab.com/postmarketOS/pmaports/-/merge_requests/1200">pmaports-ms013g</a></td> + <td>Porting postmarketOS to Samsung Galaxy Grand 2 (ms013g)</td> + </tr> + </table> + + <br> + + <h3>Competitions</h3> + <table> + <tr> + <th id = "border-special">Name</th> + <th>Description</th> + </tr> + + <tr> + <td>Google Code-In 2018</td> + <td><a href = "https://github.com/haikuports/haikuports/commits/master?author=arnavbhatt288">Ported softwares to Haiku</a></td> + </tr> + </table> + </main> + + <br> + + <div class = footer> + <p>2023 ghativega.in</p> + </div> +</body> +</html> |