Skip to content

Commit 1694c5b

Browse files
committed
Fix skills display - convert to proper YAML arrays
- Convert skills from comma-separated strings to YAML arrays - Fix ASCII character encoding issue in project cards - Skills now display properly as readable text
1 parent 94321c2 commit 1694c5b

File tree

3 files changed

+37
-9
lines changed

3 files changed

+37
-9
lines changed

.github/workflows/hugo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ jobs:
7575
steps:
7676
- name: Deploy to GitHub Pages
7777
id: deployment
78-
uses: actions/deploy-pages@v4
78+
uses: actions/deploy-pages@v4

data/projects.yaml

Lines changed: 35 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,67 @@
22
period: Jun 2024
33
org: DevRev
44
description: AI-powered digital personal assistant that filters out noise in your life by acting as your sidekick. It performs actions and handles communication when it can and only leaves the important stuff for you.
5-
skills: LangChain, Large Language Models (LLM), GPT-4, Python
5+
skills:
6+
- LangChain
7+
- Large Language Models (LLM)
8+
- GPT-4
9+
- Python
610
- name: Second Brain
711
period: Aug 2023
812
org: Personal Project
913
description: Digital assistant implementing four-step process to capture, organize, refine, and share information. Designed algorithms for task prioritization and searchable knowledge base, enhancing information management.
10-
skills: LangChain, Slack, Large Language Models (LLM)
14+
skills:
15+
- LangChain
16+
- Slack
17+
- Large Language Models (LLM)
1118
link: https://github.com/singhcoder/second-brain
1219
- name: Compiler Construction
1320
period: Jan 2020 - Apr 2020
1421
org: BITS Pilani
1522
description: Implemented compiler for custom language in C. Implemented lexical analyzer, syntax analyzer, semantic analyzer, and code generator modules.
16-
skills: C, Compiler Design
23+
skills:
24+
- C
25+
- Compiler Design
1726
- name: Concurrent TCP Webserver
1827
period: Apr 2020
1928
org: BITS Pilani
2029
description: Implemented pre-threaded webserver supporting HTTP GET requests. Client requests handled in stages by pool of threads created in beginning. All I/O on sockets is nonblocking.
21-
skills: C, Network Programming, Threading
30+
skills:
31+
- C
32+
- Network Programming
33+
- Threading
2234
- name: Shell Development
2335
period: Apr 2020
2436
org: BITS Pilani
2537
description: Implemented command-line shell with custom features using low-level system programming and network programming in Unix. Features include pipelining, I/O redirection, creating shared memory and TCP connection with server.
26-
skills: C, Unix Programming, System Programming
38+
skills:
39+
- C
40+
- Unix Programming
41+
- System Programming
2742
- name: Web Platform for Spatial Data Analysis
2843
period: Jun 2019 - Jul 2019
2944
org: ISRO/IIRS
3045
description: Web-based platform for time series analysis of various indexes used to analyze vegetation, water level using Landsat satellite data. Added customized indices via GUI and visualized terrain profile along path using DEMs.
31-
skills: Python, Django, HTML/CSS, JavaScript, Open Data Cube
46+
skills:
47+
- Python
48+
- Django
49+
- HTML/CSS
50+
- JavaScript
51+
- Open Data Cube
3252
- name: Web Platform for Blind Coding
3353
period: Feb 2019 - Mar 2019
3454
org: Coding Club BITS Pilani
3555
description: Developed web platform for solving programming problems by writing code but not being able to see what is written. Used HTML, CSS, JavaScript for frontend and integrated JDoodle compiler for handling simultaneous requests from users.
36-
skills: HTML, CSS, JavaScript, JDoodle API
56+
skills:
57+
- HTML
58+
- CSS
59+
- JavaScript
60+
- JDoodle API
3761
- name: Website Development for BOSM 2018
3862
period: Aug 2018 - Sep 2018
3963
org: Coding Club BITS Pilani
4064
description: Designed front end using HTML, CSS and JavaScript for website of BOSM 2018, sports fest of BITS. Website was used by more than 2000 students for accessing registrations, publicity, event schedules during the fest.
41-
skills: HTML, CSS, JavaScript
65+
skills:
66+
- HTML
67+
- CSS
68+
- JavaScript

layouts/partials/home-projects.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ <h3>{{ .name }}</h3>
1414
{{ end }}
1515
</div>
1616
{{ end }}
17+

0 commit comments

Comments
 (0)