Skip to content

Commit

Permalink
Save commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Prasanna Anbazhagan authored and Prasanna Anbazhagan committed Feb 3, 2025
1 parent b8affd7 commit 3b11df0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/update-home-page.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
title=$(grep -m 1 '^title:' $file | cut -d '"' -f 2)
description=$(grep -m 1 '^description:' $file | cut -d '"' -f 2)
status=$(grep -m 1 '^status:' $file | cut -d '"' -f 2)
contributors=$(grep '^ - ' $file | cut -d '"' -f 2 | paste -sd ', ' -)
tech=$(grep -A 1 '^technology:' $file | tail -n +2 | grep -v '^---' | sed 's/ - //g' | paste -sd ', ' -)
tags=$(grep -A 1 '^tags:' $file | tail -n +2 | grep -v '^---' | sed 's/ - //g' | paste -sd ', ' -)
contributors=$(grep -A 1 '^contributors:' $file | tail -n +2 | grep -v '^---' | sed 's/ - //g' | paste -sd '<br>' -)
tech=$(grep -A 1 '^technology:' $file | tail -n +2 | grep -v '^---' | sed 's/ - //g' | paste -sd '<br>' -)
tags=$(grep -A 1 '^tags:' $file | tail -n +2 | grep -v '^---' | sed 's/ - //g' | paste -sd '<br>' -)
if [[ $status == "Completed" ]]; then
status_icon="✅"
elif [[ $status == "Ongoing" ]]; then
Expand Down
13 changes: 7 additions & 6 deletions projects/wealthwave.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ contributors:
tags:
- Finance
- Tool
screenshots:
- "https://raw.githubusercontent.com/sahajsoft/skunkworks/main/assets/wealth_wave_1.png"
- "https://raw.githubusercontent.com/sahajsoft/skunkworks/main/assets/wealth_wave_2.png"
- "https://raw.githubusercontent.com/sahajsoft/skunkworks/main/assets/wealth_wave_3.png"
- "https://raw.githubusercontent.com/sahajsoft/skunkworks/main/assets/wealth_wave_4.png"
technology:
- Flutter
- AWS
- TypeScript
progress:
- 2024-10-01: Added expense tracker.
- 2024-08-01: Added way to sync the funds value from API.
- 2024-08-01: Added way to sync the funds value from API.

## Screenshots
![Screenshot 1](https://raw.githubusercontent.com/sahajsoft/skunkworks/main/assets/wealth_wave_1.png)
![Screenshot 2](https://raw.githubusercontent.com/sahajsoft/skunkworks/main/assets/wealth_wave_2.png)
![Screenshot 3](https://raw.githubusercontent.com/sahajsoft/skunkworks/main/assets/wealth_wave_3.png)
![Screenshot 4](https://raw.githubusercontent.com/sahajsoft/skunkworks/main/assets/wealth_wave_4.png)

0 comments on commit 3b11df0

Please sign in to comment.