Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion src/components/ProjectEntryCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const { title, pubDate, description, url, projURL, thumbnail, technologies } = A

<CardContent className="flex flex-col border-0 shadow-none rounded-non">
<p>{description}</p>
<img class="w-50 pt-4" src={`https://skillicons.dev/icons?i=${technologies.join(",")}`} />
<img class="w-50 pt-4" src={`https://go-skill-icons.vercel.app/api/icons?i=${technologies.join(",")}`} />
</CardContent>

<CardFooter className="mt-auto gap-3 pt-4">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
---
title: "GSoC'25 KWin Project Blog Post: Week 5-6"
title: "KWin Plugin"
discourse: yorisoft
authors:
- yorisoft
date: 2025-10-03
description: project description foo
url: https://foo.co
thumbnail: /images/kwin_plugin_gamepad_kcm.png
technologies:
description: Implement Game Controller Support in Plasma Desktop
url: https://invent.kde.org/plasma/kwin
thumbnail: /images/games.svg
technologies:
- cpp
- java
- go
- python
- qt
- cmake
- kde
- qt
- linux
---

It's been another few weeks of progress on the KWin GameController Plugin and I've got a lot to share! After spending the previous weeks setting up the foundation, I've progressed things forward by improving the logic a bit more, creating a few integration tests, integrating it into System Settings, and making sure it runs well on real hardware like the steamdeck.
Expand Down Expand Up @@ -45,7 +44,7 @@ void GameController::handleEvdevEvent()
if (m_usageCount == 0 || isTestEnvironment)
m_inputdevice->emulateInputDevice(ev);

..
..

// EmulatedInputDevice
void EmulatedInputDevice::emulateInputDevice(const input_event &ev)
Expand Down Expand Up @@ -159,10 +158,10 @@ As some put it:

> ![timonoj](https://bugs.kde.org/show_bug.cgi?id=328987#c39)
> Wow this is an ELEVEN (!) year old bug.
>
>
> ![WS](https://bugs.kde.org/show_bug.cgi?id=328987#c68)
> This issue is so old it can go to middle school.
>
>
> and my favorite
>
> ![Holmes](https://bugs.kde.org/show_bug.cgi?id=328987#c45)
Expand Down
6 changes: 4 additions & 2 deletions src/content/project/puppet-purchase/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Puppet-Purchase: Auto Purchase Scripts"
title: "Puppet-Purchase"
authors:
- yorisoft
date: 2010-01-10
Expand All @@ -11,7 +11,9 @@ technologies:
- nodejs
- docker
- jenkins
- shell
- bash
- wsl
- chromedevtools
---

puppet-purchase is a bot that automates the process of purchasing an item from a few of the major online retailers. In attempt to combat scalping, I've created puppet-purchase bot and am making it publicly available with you all. Not perfect, but has helped me. Please share && contribute.
Expand Down
28 changes: 27 additions & 1 deletion src/content/project/retro-dex/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,38 @@ technologies:
<img align="center" width="400" src="https://github.com/user-attachments/assets/7080b6cd-66a1-4a10-88d9-bf5364bdd3cc"/>
</p>

<p align="center">

<!-- Project status -->
<img src="https://img.shields.io/badge/status-work%20in%20progress-orange?style=for-the-badge" />

<!-- Platform -->
<img src="https://img.shields.io/badge/platform-Miyoo%20Mini%20%7C%20OnionOS-8A2BE2?style=for-the-badge" />

<!-- Toolchain -->
<img src="https://img.shields.io/badge/toolchain-union--miyoomini-lightgrey?style=for-the-badge" />

</p>

<p align="center">

<!-- C++ -->
<img src="https://img.shields.io/badge/C%2B%2B-17-blue?logo=c%2B%2B&logoColor=white&style=for-the-badge" />

<!-- SDL2 -->
<img src="https://img.shields.io/badge/graphics-SDL2-success?logo=sdl&logoColor=white&style=for-the-badge" />

<!-- SQLite -->
<img src="https://img.shields.io/badge/database-SQLite-blue?logo=sqlite&logoColor=white&style=for-the-badge" />

</p>


</br>
</br>

<p align="center">This app was made from scratch for the MiyooMini devices running OnionOS. The goal is to design a pokedex that targets generations 1 - 5. </p>


### PLEASE READ! This is not yet stable - this is a work in progress - there are bugs - install at your own peril.

</br>
Expand Down