sw
This commit is contained in:
parent
a0637c896f
commit
6706d07f00
102
content/software/_index.md
Normal file
102
content/software/_index.md
Normal file
@ -0,0 +1,102 @@
|
||||
---
|
||||
title: Software
|
||||
---
|
||||
|
||||
# Software Showcase
|
||||
|
||||
This page showcases a *small* subset of my personal projects.
|
||||
|
||||
Looking for a full list of things I've worked on?
|
||||
<span style="background-color:#dbffdb"><strong>Check out my <a href="https://github.com/ewpratten">GitHub profile</a>.</strong></span>
|
||||
|
||||
## Libraries
|
||||
|
||||
<div class="card card-dropshadow">
|
||||
<h3>Raylib FFI</h3>
|
||||
|
||||
`raylib-ffi` is a very low-level Rust FFI binding to the raylib graphics library.
|
||||
|
||||
The goal of this library is to provide something that tracks the latest version of upstream raylib, and gets in the way as little as possible. The core features are:
|
||||
|
||||
- Direct FFI bindings to C functions
|
||||
- Rust-ified enums & structs
|
||||
- Rust-ified default palette definitions
|
||||
|
||||
Thats it! Go use this library directly, or build a higher-level abstraction on top of it if you'd like.
|
||||
|
||||
The whole binding, mapping, and documentation process is entirely automated. Targeting a new raylib version just takes a `git pull` and `cargo build`.
|
||||
|
||||
Check out the [Source Code](https://github.com/ewpratten/raylib-ffi) and [Documentation](https://docs.rs/raylib-ffi).
|
||||
</div>
|
||||
|
||||
<div class="card card-dropshadow">
|
||||
<h3>Amateur Data Interchange Format library for Rust</h3>
|
||||
|
||||
`adif-rs` is a Rust implementation of the Amateur Data Interchange Format.
|
||||
|
||||
This library is used to read and write ADIF files, allowing Rust programs to exchange logging data with other pieces of amateur radio software.
|
||||
|
||||
Check out the [Source Code](https://github.com/ewpratten/adif-rs) and [Documentation](https://docs.rs/adif).
|
||||
</div>
|
||||
|
||||
## Programs, Tools, Add-ons, and Scripts
|
||||
|
||||
<div class="card card-dropshadow">
|
||||
<h3>Protomask</h3>
|
||||
|
||||
Protomask is a user space NAT64 implementation.
|
||||
|
||||
The protomask NAT64 daemon currently powers single-stack networking inside AS54041. The project also encompasses some general-purpose Rust libraries for working with inter-protocol networking.
|
||||
|
||||
For more information, see the [GitHub page](https://github.com/ewpratten/protomask) for this project.
|
||||
</div>
|
||||
|
||||
## Things that were made for fun
|
||||
|
||||
Hey, I'm allowed to have fun with software sometimes too right?!
|
||||
|
||||
The following projects were mostly made as one-offs for friends in tight time constraints, so don't judge 'em too hard <em class="gray">..ok?</em>. Do keep in mind, that if you want to self-host any of these, you *might* need to tweak some hard-coded UUIDs and endpoints.
|
||||
|
||||
<div class="card card-dropshadow">
|
||||
<h3>UwU Types</h3>
|
||||
|
||||
UwU and OwO your Rust integer types.
|
||||
|
||||
`u8` becomes `uwu8`, `i16` becomes `owo16`, and of course, `usize` is now `uwusize`.
|
||||
|
||||
Check out the [Source Code](https://github.com/ewpratten/uwu-types) or [use it in a project](https://crates.io/crates/uwu-types) <em class="gray">(please don't)</em>.
|
||||
</div>
|
||||
|
||||
<div class="card card-dropshadow">
|
||||
<h3>Other names for Rust's <code>unsafe</code> keyword</h3>
|
||||
|
||||
The `foot-gun` Rust library adds some additonal names for the `unsafe` keyword.
|
||||
|
||||
```rust
|
||||
foot_gun!({
|
||||
// Unsafe code here
|
||||
});
|
||||
|
||||
here_be_dragons!({
|
||||
// Unsafe code here
|
||||
});
|
||||
|
||||
beware!({
|
||||
// Unsafe code here
|
||||
});
|
||||
|
||||
// ... etc
|
||||
```
|
||||
|
||||
Check out the [Source Code](https://github.com/ewpratten/foot-gun) or [use it in a project](https://crates.io/crates/foot-gun).
|
||||
</div>
|
||||
|
||||
<div class="card card-dropshadow">
|
||||
<h3>No Bitches? Discord Bot</h3>
|
||||
|
||||
A discord bot that tries its very best to turn images of people into the "No Bitches?" meme.
|
||||
|
||||

|
||||
|
||||
[Source Code](https://github.com/ewpratten/no-bitches-bot) available on GitHub.
|
||||
</div>
|
@ -62,3 +62,20 @@
|
||||
max-width: unset !important;
|
||||
}
|
||||
}
|
||||
|
||||
.card {
|
||||
border: 1px solid rgb(194, 194, 194);
|
||||
border-radius: 5px;
|
||||
padding-left: 1em;
|
||||
padding-right: 1em;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
|
||||
h3 {
|
||||
margin-top: 16px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.card.card-dropshadow {
|
||||
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
@ -37,6 +37,9 @@ body {
|
||||
.gray {
|
||||
color: gray;
|
||||
}
|
||||
.grey {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.hover-help {
|
||||
&:hover {
|
||||
@ -66,4 +69,31 @@ body {
|
||||
width:max-content;
|
||||
margin:auto;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
li {
|
||||
img {
|
||||
margin-left: unset !important;
|
||||
margin-right: unset !important;
|
||||
}
|
||||
}
|
||||
|
||||
blink {
|
||||
animation: blinker 1s linear infinite;
|
||||
}
|
||||
|
||||
blink-lightly {
|
||||
animation: blinker_light 1s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes blinker {
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes blinker_light {
|
||||
50% {
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
@ -25,8 +25,8 @@
|
||||
<a href="/">Home</a>
|
||||
·
|
||||
<a href="/blog">Blog</a>
|
||||
{# ·
|
||||
<a href="/projects">Projects</a> #}
|
||||
·
|
||||
<a href="/software">Software</a>
|
||||
·
|
||||
<a href="/radio">Radio</a>
|
||||
·
|
||||
|
Loading…
x
Reference in New Issue
Block a user