Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
81d6619
feat: added dstore
john20xdoe Mar 10, 2026
67d4eb9
feat: dsstore
john20xdoe Mar 10, 2026
3a76ca7
initial implem
john20xdoe Mar 10, 2026
5efe7e3
feat: updated dsstore
john20xdoe Mar 10, 2026
6ce3fbf
feat:
john20xdoe Mar 10, 2026
7b100d7
Initial plan
Copilot Mar 10, 2026
78b0cb0
Move JSX files to src directory and update gitignore
Copilot Mar 10, 2026
9d4042c
Merge pull request #7 from john20xdoe/copilot/fix-dev-build-scripts
john20xdoe Mar 10, 2026
60f29ed
Initial plan
Copilot Mar 10, 2026
2b29c71
Update copyright and remove REST API dependency for JSON data
Copilot Mar 10, 2026
c3253bd
Move JSON files to root data/ folder and fetch via relative URLs
Copilot Mar 10, 2026
1e89db7
Improve vite plugin with error handling and scalability
Copilot Mar 10, 2026
5ced623
Add proper loading state, abort controller, and improved error handling
Copilot Mar 10, 2026
a81377c
Merge pull request #8 from john20xdoe/copilot/update-footer-copyright
john20xdoe Mar 10, 2026
145e780
feat: dsstore
john20xdoe Mar 10, 2026
edfc7de
gitignore dsstore
john20xdoe Mar 10, 2026
ed60a5c
feat: remove dssstore
john20xdoe Mar 10, 2026
613947f
fix: remove dsstore
john20xdoe Mar 10, 2026
e6ec472
Merge branch 'master' into newmaster
john20xdoe Mar 10, 2026
2bc9df1
fix: remove dsstore
john20xdoe Mar 10, 2026
e3b330d
Merge branch 'feat/upgrade-to-jsx' into newmaster
john20xdoe Mar 10, 2026
da025c5
Update robots.txt
john20xdoe Mar 10, 2026
8865eaf
Update src/App.jsx
john20xdoe Mar 10, 2026
386eb1e
Update src/App.jsx
john20xdoe Mar 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
node_modules
.DS_Store
dist
34 changes: 34 additions & 0 deletions data/links.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[
{
"group": "Employment",
"open": true,
"links": [
{ "label": "linked<b>in</b>", "url": "https://linkedin.com/in/labermejo", "variant": "primary", "pulse": true }
]
},
{
"group": "Gaming and Hardware",
"open": false,
"links": [
{ "label": "hw<b>bot</b>", "url": "https://hwbot.org/user/la1255/", "variant": "dark" }
]
},
{
"group": "Blogs and Contact",
"open": false,
"links": [
{ "label": "keybase", "url": "https://keybase.io/arekkushisu", "variant": "secondary" },
{ "label": "weblog | <b>atangleofyarn</b>", "url": "https://tangleofyarn.wordpress.com", "variant": "secondary" },
{ "label": "techblog | <b>pinoy.dev</b>", "url": "https://pinoy.dev", "variant": "secondary" }
]
},
{
"group": "Work",
"open": false,
"links": [
{ "label": "git<b>hub</b>", "url": "https://github.com/john20xdoe", "variant": "dark" },
{ "label": "git<b>lab</b>", "url": "https://gitlab.com/lee.alexis", "variant": "dark" },
{ "label": "hugging<b>face</b>", "url": "https://huggingface.co/rxcs", "variant": "dark" }
]
}
]
96 changes: 96 additions & 0 deletions data/skills.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
[
{
"category": "language",
"items": [
{ "name": "javascript" },
{ "name": "typescript" },
{ "name": "c#" },
{ "name": "dart" },
{ "name": "php", "stale": true },
{ "name": "java", "stale": true }
]
},
{
"category": "web",
"items": [
{ "name": "reactjs" },
{ "name": "html5" },
{ "name": "css3" },
{ "name": "next.js" },
{ "name": "sveltejs" },
{ "name": "angular", "stale": true }
]
},
{
"category": "mobile",
"items": [
{ "name": "flutter" },
{ "name": "react-native" },
{ "name": "android" }
]
},
{
"category": "hybrid",
"items": [
{ "name": "expo.dev" },
{ "name": "next.js" }
]
},
{
"category": "infrastructure",
"items": [
{ "name": "docker" },
{ "name": "aws" },
{ "name": "gcp" },
{ "name": "azure", "stale": true }
]
},
{
"category": "backend",
"items": [
{ "name": "node" },
{ "name": "expressjs" },
{ "name": "nestjs" },
{ "name": "dotnet" }
]
},
{
"category": "database",
"items": [
{ "name": "postgres" },
{ "name": "mysql" },
{ "name": "dynamodb" }
]
},
{
"category": "platforms",
"items": [
{ "name": "github" },
{ "name": "gitlab" },
{ "name": "bitbucket" },
{ "name": "azure devops" },
{ "name": "heroku", "stale": true },
{ "name": "vercel", "stale": true },
{ "name": "netlify", "stale": true }
]
},
{
"category": "team",
"items": [
{ "name": "slack" },
{ "name": "jira" },
{ "name": "google workspace" },
{ "name": "ms teams" },
{ "name": "trello", "stale": true }
]
},
{
"category": "management",
"items": [
{ "name": "agile" },
{ "name": "scrum" },
{ "name": "kanban" },
{ "name": "grows" }
]
}
]
39 changes: 39 additions & 0 deletions deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy to GitHub Pages

on:
push:
branches: [main]

Comment on lines +1 to +6
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This GitHub Actions workflow file won’t run from the repository root. GitHub only loads workflows from .github/workflows/*.yml. Move this file into .github/workflows/ (or adjust the PR to add it there) so the Pages deployment actually triggers on pushes to main.

Copilot uses AI. Check for mistakes.
permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages
cancel-in-progress: true

jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm

- run: npm ci
- run: npm run build

- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: dist

- uses: actions/deploy-pages@v4
id: deployment
Loading