Skip to content

Commit

Permalink
Add projects into main.json
Browse files Browse the repository at this point in the history
  • Loading branch information
SahooBishwajeet committed Apr 17, 2024
1 parent 9a38aea commit c231092
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 16 deletions.
55 changes: 40 additions & 15 deletions main.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,54 @@
"message": "Hello, Welcome To My Portfolio...",
"projects": [
[
"Project",
"Description",
"Link"
"Azzian",
"A funny pixel game about an Asian boy",
"https://github.com/codegasms/Azzian"
],
[
"Project",
"Description",
"Link"
"MooM",
"Revolutionizing Dairy Farm Management",
"https://github.com/codegasms/appathon"
],
[
"Project",
"Description",
"Link"
"Fluxicons",
"Identicons & Canvas Implementation For FLUX (Another Project)",
"https://github.com/codegasms/fluxicons"
],
[
"Project",
"Description",
"Link"
"GameOfLife",
"John Conway's Game Of Life in C++",
"https://github.com/SahooBishwajeet/GameOfLife"
],
[
"Project",
"Description",
"Link"
"MandelbrotFractal",
"Using SDL2 to generate Mandelbrot Fractal",
"https://github.com/SahooBishwajeet/MandelbrotFractal"
],
[
"SudoGS",
"A Sudoku Generator & Solver In C++",
"https://github.com/SahooBishwajeet/SudoGS"
],
[
"Asciify",
"Live camera feeds and images into beautiful ASCII art. ",
"https://github.com/SahooBishwajeet/Asciify"
],
[
"RCharG",
"Random Character Generator In C",
"https://github.com/SahooBishwajeet/RCharG"
],
[
"cnut",
"Terminal Animated Donut Written In C",
"https://github.com/SahooBishwajeet/cnut"
],
[
"ColorEase",
"User-friendly color-centric toolkit",
"https://github.com/SahooBishwajeet/ColorEase"
]
],
"colors": {
Expand Down
2 changes: 1 addition & 1 deletion modules/commands/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const createProject = (): string[] => {
let link = `<a href="${ele[2]}" target="_blank">${ele[0]}</a>`
string += SPACE.repeat(2);
string += link;
string += SPACE.repeat(17 - ele[0].length);
string += SPACE.repeat(24 - ele[0].length);
string += ele[1];
projects.push(string);
string = '';
Expand Down

0 comments on commit c231092

Please sign in to comment.