added other projects

This commit is contained in:
Surferlul 2022-07-22 00:32:08 +02:00
parent 3064100288
commit 0d52cffb00
10 changed files with 91 additions and 3 deletions

7
_posts/2021-05-22-vcc.md Normal file
View File

@ -0,0 +1,7 @@
---
title: Vanilla ComputerCraft
---
A project with the goal to build the fastest and most powerfull computer in minecraft
### [View on Github](https://github.com/Surferlul/Vanilla-ComputerCraft)

View File

@ -0,0 +1,13 @@
---
title: AwesomeWM Configurations
---
My AwesomeWM configurations featuring a verrtical task bar and vertical battery indicator. Uses the Blueish theme.
# Screenshots
(Blur/Tranceparency is not present anymore in the current version of blueish)
![](https://raw.githubusercontent.com/Surferlul/awesome/screenshots/desktop_1_1.0.png)
![](https://raw.githubusercontent.com/Surferlul/awesome/screenshots/desktop_2_1.0.png)
### [View on Github](https://github.com/Surferlul/awesome)

View File

@ -16,6 +16,5 @@ title: My Themes
## AwesomeWM
- [Main Configs](https://github.com/Surferlul/awesome)
- [Blueish](https://github.com/Surferlul/blueish)
- [Main Configs](/Projects/awesome)
- [Blueish](/Projects/blueish)

View File

@ -0,0 +1,11 @@
---
title: Godot Mendel's principles
---
This is my old version of an implementation of Mendel's principles.
The program works but its UI looks really bad and the code is absolutely horrible.
I am working on a new version written in rust and with gtk3 as the UI with a much smaller and more efficient code base. I will post the link to the new repo here when I'm done.
### [View on Github](https://github.com/Surferlul/Mendel_old)

View File

@ -0,0 +1,7 @@
---
title: Manschaftswettbewerb Informatik 2021
---
Attempt at solving the problem in the "Manschaftswettbewerb Informatik" 2021
### [View on Github](https://github.com/Surferlul/Manschaftswettbewerb2021)

View File

@ -0,0 +1,12 @@
---
title: Blueish theme for AwesomeWM
---
Based on Zenburn
modified by Me
![](https://raw.githubusercontent.com/Surferlul/awesome/screenshots/desktop_1_1.0.png)
![](https://raw.githubusercontent.com/Surferlul/awesome/screenshots/desktop_2_1.0.png)
### [View on Github](https://github.com/Surferlul/blueish)

View File

@ -0,0 +1,12 @@
---
title: Python CPU frequency plotter
---
A simple python script to plot the CPU frequency on linux
## run with optional arguments:
cpufreq-plot \<interval\> \<time\>
- interval in milliseconds
- time in seconds
### [View on Github](https://github.com/Surferlul/cpufreq-plot)

View File

@ -0,0 +1,11 @@
---
title: Remote evdev Python
---
Implementation of remote-evdev module with usage examples
Can give completely seamless experience in VM with any input devices if set up properly
Read [Native behavior for input devices in VMs](https://surferlul.github.io/input-to-vm/) for more info about setup
### [View on Github](https://github.com/Surferlul/remote-evdev-python)

View File

@ -0,0 +1,7 @@
---
title: Remote evdev Rust
---
Pass evdev devices to remote devices and control them. Rust version. The evdev crate seems to be broke (for tasks like this) tho, since input on guest is very limited. For a working Implementation check out my [python version](/Projects/remote-evdev-python)
### [View on Github](https://github.com/Surferlul/remote-evdev-rs)

View File

@ -0,0 +1,9 @@
---
title: remote-evdev Python module
---
Python module to share evdev devices (unix input devices) over network
Check out my [example implementation](/Projects/remote-evdev-python)
### [View on Github](https://github.com/Surferlul/remote-evdev)