blob: 1d6ce8d7926da33b8af6ed97bf84dd21bbfa4849 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
---
import Layout from "../layouts/Layout.astro";
import SocialNavbar from "../components/SocialNavbar.astro";
import Card from "../components/Card.astro";
---
<Layout title="Projects">
<main>
<h1 class="text-4xl font-semibold text-center py-6">Projects</h1>
<p class="text-center mb-4">
Here are some of my projects. For a more complete list, visit my <a class="font-bold" href="https://github.com/pinapelz">Github</a>
<br/>
Visit here for my <a class="font-bold" href="/contributions">open source contributions</a>
</p>
<ul role="list" class="link-card-grid">
<Card
href="https://github.com/pinapelz/ytmp3AutoTag"
title="ytID3AutoTag"
body="JSwing application that downloads YouTube videos as MP3 and automatically tags the ID3 fields throughing inferring the video metadata"
language="Java"
languageColor="#b07219"
logoSrc="https://user-images.githubusercontent.com/21994085/232991117-a41a33e1-f45a-4043-aa6a-e886a31d2f11.png"
/>
<Card
href="https://github.com/Patchwork-Archive/Patchwork-Karaoke"
title="Patchwork Karaoke"
body="A client-side web app that allows the playback of video files synchronzied with both .lrc lyrics and .srv3 subtitles"
language="Typescript"
languageColor="#3178c6"
logoWidth="250px"
logoSrc="https://github.com/Patchwork-Archive/Patchwork-Karaoke/assets/21994085/758422b4-4be1-4e4e-a5a0-81b06f3930e5"
/>
<Card
href="https://github.com/pinapelz/NijiTrack"
title="Nijitrack"
body="Python and Next.JS application that records and collects historical subscriber count for any subset of YouTube channels."
language="Python"
languageColor="#3572A5"
logoSrc="https://github.com/pinapelz/NijiTrack/assets/21994085/c50e959a-34a9-4509-b892-921f6121c33b"
logoWidth="300px"
/>
<Card
href="https://github.com/pinapelz/JHolodex"
title="JHolodex"
body="Object-Oriented Java wrapper for the Holodex API written with Retrofit2. Published on Maven Central"
language="Java"
languageColor="#b07219"
logoSrc="https://cdn-icons-png.flaticon.com/512/25/25231.png"
logoWidth="150px"
/>
<Card
href="https://github.com/Patchwork-Archive"
title="Patchwork Archive"
body="An archival system to help streamline the preservation of any subset of YouTube videos"
language="Javascript"
languageColor="#f1e05a"
logoSrc="https://user-images.githubusercontent.com/21994085/277150135-30b2cabf-07b4-4331-8ebf-709520d42baa.png"
logoWidth="300px"
/>
<Card
href="https://github.com/pinapelz/yet-another-lavaplayer-bot"
title="Yet Another Lavaplayer Bot"
body="Self-hosted JDA Discord music bot that uses Lavaplayer to play music from YouTube, Soundcloud, etc in Discord voice channels"
language="Java"
languageColor="#b07219"
logoWidth="300px"
logoSrc="https://user-images.githubusercontent.com/21994085/227810542-26cfb171-9445-4ebf-b57f-575cb5749740.png"
/>
<Card
href="https://github.com/pinapelz/vtuber-captcha"
title="VTuber Captcha"
body="Python Flask API that serves fun VTuber related captcha data. Answers are checked server-side and are not stored locally"
language="Python"
languageColor="#3572A5"
logoWidth="200px"
logoSrc="https://github.com/pinapelz/vtuber-captcha/assets/21994085/0a286fab-26bd-4865-93bb-be6830db624e"
/>
<Card
href="https://github.com/pinapelz/link-shortener-moe-vercel"
title="Vercel Link Shortener (moekyun.me)"
body="Python Flask link shortener with built in support for custom URLs, special features, and Vercel deployment."
language="Python"
languageColor="#3572A5"
logoSrc="https://files.catbox.moe/8lgla6.png"
logoWidth="350px"
/>
<Card
href="https://github.com/pinapelz/cloudflare-worker-d1-url-shortener"
title="Cloudflare D1 Link Shortener"
body="Link shortener that uses Cloudflare Workers and Severless SQL D1 database. Fully serverless and free to host for anyone with a domain"
language="Javascript"
languageColor="#f1e05a"
logoWidth="300px"
logoSrc="https://cf-assets.www.cloudflare.com/slt3lc6tev37/1W5QoaWTrKT8IwoTrV0uU3/d1deb0a1881d756d346b9a7f04aa5f51/D1.png"
/>
</ul>
</main>
<SocialNavbar />
<style>
main {
margin: auto;
padding: 1rem;
max-width: 1200px;
color: white;
font-size: 20px;
line-height: 1.6;
}
a{
color: white;
}
.link-card-grid {
display: grid;
grid-template-columns: repeat(3, minmax(24ch, 1fr));
gap: 2rem;
padding: 0;
}
@media (max-width: 1020px) {
.link-card-grid {
display: grid;
grid-template-columns: repeat(1, minmax(24ch, 1fr));
gap: 2rem;
padding: 0;
width: 100%;
}
}
</style>
</Layout>
|