mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 02:53:51 +00:00
Begin work on writing project mdx
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -19,7 +19,7 @@ node_modules/
|
||||
|
||||
# production
|
||||
/build
|
||||
/dist
|
||||
dist/
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
|
||||
@@ -8,16 +8,16 @@
|
||||
"preview": "astro preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@astrojs/react": "^4.1.1",
|
||||
"@astrojs/tailwind": "^5.1.3",
|
||||
"@astrojs/react": "^4.1.2",
|
||||
"@astrojs/tailwind": "^5.1.4",
|
||||
"@tailwindcss/typography": "^0.5.15",
|
||||
"@types/react": "^18.3.12",
|
||||
"@types/react-dom": "^18.3.1",
|
||||
"astro": "^5.0.9",
|
||||
"astro": "^5.1.2",
|
||||
"tailwindcss": "^3.4.15"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/mdx": "^4.0.2",
|
||||
"@astrojs/mdx": "^4.0.3",
|
||||
"@astrojs/sitemap": "^3.2.1",
|
||||
"framer-motion": "^11.11.11",
|
||||
"lucide-react": "^0.468.0",
|
||||
|
||||
471
src/pnpm-lock.yaml
generated
471
src/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
BIN
src/public/projects/fhccenter/thumbnail.jpeg
Normal file
BIN
src/public/projects/fhccenter/thumbnail.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.3 MiB |
BIN
src/public/projects/iridescent/thumbnail.jpeg
Normal file
BIN
src/public/projects/iridescent/thumbnail.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
@@ -1 +0,0 @@
|
||||
My gruvbox theme, with a pure black background
|
||||
10
src/src/content/projects/darkbox.mdx
Normal file
10
src/src/content/projects/darkbox.mdx
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: "Darkbox"
|
||||
description: "My gruvbox theme, with a pure black background"
|
||||
githubUrl: "https://github.com/timmypidashev/web"
|
||||
techStack: ["Neovim", "Lua"]
|
||||
date: "2025-01-03"
|
||||
image: "/projects/darkbox/thumbnail.jpeg"
|
||||
---
|
||||
|
||||
My gruvbox theme, with a pure black background
|
||||
8
src/src/content/projects/discord-bot.mdx
Normal file
8
src/src/content/projects/discord-bot.mdx
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: "Discord Bot"
|
||||
description: "A discord bot template"
|
||||
githubUrl: "https://github.com/timmypidashev/pycord-bot-template"
|
||||
techStack: ["Python", "SQlite", "Docker"]
|
||||
date: "2025-01-03"
|
||||
image: "/projects/web/thumbnail.jpeg"
|
||||
---
|
||||
10
src/src/content/projects/fhccenter.mdx
Normal file
10
src/src/content/projects/fhccenter.mdx
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: "Fhccenter"
|
||||
description: "Website made for a private school"
|
||||
demoUrl: "https://fhccenter.org"
|
||||
techStack: ["Nextjs", "Typescript", "Prisma"]
|
||||
date: "2025-01-03"
|
||||
image: "/projects/fhccenter/thumbnail.jpeg"
|
||||
---
|
||||
|
||||
|
||||
8
src/src/content/projects/iridescent.mdx
Normal file
8
src/src/content/projects/iridescent.mdx
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: "Iridescent"
|
||||
description: "An open-source graphics engine."
|
||||
githubUrl: "https://github.com/timmypidashev/iridescent"
|
||||
techStack: ["Cmake", "Glad", "Imgui"]
|
||||
date: "2025-01-03"
|
||||
image: "/projects/iridescent/thumbnail.jpeg"
|
||||
---
|
||||
@@ -2,7 +2,7 @@
|
||||
title: "Revive Auto Parts"
|
||||
description: "A car parts listing site built for a client."
|
||||
demoUrl: "https://reviveauto.parts"
|
||||
techStack: ["Typescript", "Tanstack Router", "React Query"]
|
||||
techStack: ["Tanstack", "React Query", "Fastapi"]
|
||||
date: "2024-12-15"
|
||||
image: "/projects/reviveauto/thumbnail.jpeg"
|
||||
---
|
||||
@@ -166,7 +166,7 @@ For the most part, there were really no challenges, say for some hiccups here an
|
||||
Probably the most painful parts were creating unit tests for the frontend, and scraping
|
||||
Facebook for a total of 1,384 posts for my client, who wanted the posts imported over.
|
||||
As one can imagine, that process is not simple to do manually by hand, so I wrote multiple
|
||||
python scriptsusing the seleneum library to fetch the posts from the sellers account, a process
|
||||
python scripts using the seleneum library to fetch the posts from the sellers account, a process
|
||||
which took multiple attempts, several overnight scrapes, and lots of data sanitation afterwards.
|
||||
Other than that, everything else was an absolute joy to work on, and I finished the project in under
|
||||
15K LOC.
|
||||
|
||||
9
src/src/content/projects/web.mdx
Normal file
9
src/src/content/projects/web.mdx
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
title: "Website"
|
||||
description: "My personal website and blog"
|
||||
githubUrl: "https://github.com/timmypidashev/web"
|
||||
demoUrl: "https://timmypidashev.dev"
|
||||
techStack: ["Astro", "Typescript", "MDX"]
|
||||
date: "2025-01-03"
|
||||
image: "/projects/web/thumbnail.jpeg"
|
||||
---
|
||||
Reference in New Issue
Block a user