1

Add ultralight to projects

This commit is contained in:
Evan Pratten 2020-09-03 21:29:45 -04:00
parent da292c419e
commit 130be123d7
No known key found for this signature in database
GPG Key ID: 93AC7B3D071356D3

View File

@ -92,6 +92,8 @@ title: Home
class="fab fa-github"></i></a>
<a href="https://frc5024.github.io/lib5k" class="btn btn-dark"><i
class="fas fa-book"></i></a>
<a href="https://ultralight.retrylife.ca/?a=lib5k&g=io.github.frc5024"
class="btn btn-dark"><i class="fas fa-download"></i></a>
</div>
</div>
</div>
@ -99,8 +101,10 @@ title: Home
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>MCInfo</strong></h5>
<p class="card-text">MCInfo is a simple web app for viewing information about any public
Minecraft server or user. The site is powered by the RetryLife API, and communicates
<p class="card-text">MCInfo is a simple web app for viewing information about any
public
Minecraft server or user. The site is powered by the RetryLife API, and
communicates
to servers via TCP connections using <a
href="https://github.com/dinnerbone">Dinnerbone</a>'s Python library.</p>
<a href="https://mcinfo.retrylife.ca/" class="btn btn-primary">Open App</a>
@ -113,31 +117,54 @@ title: Home
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>Easy Pose Notation library</strong></h5>
<p class="card-text">LibEPN is a Java library I built that provides a common interface
for working with the position and orientation of objects in 3-dimensional space by making heavy
<p class="card-text">LibEPN is a Java library I built that provides a common
interface
for working with the position and orientation of objects in 3-dimensional space
by
making heavy
use of Quaternions.</p>
<a href="https://github.com/Ewpratten/libepn" class="btn btn-dark"><i
class="fab fa-github"></i></a>
<a href="https://ewpratten.retrylife.ca/libepn" class="btn btn-dark"><i
class="fas fa-book"></i></a>
<a href="https://ultralight.retrylife.ca/?a=libepn&g=ca.retrylife"
class="btn btn-dark"><i class="fas fa-download"></i></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>GitHub Actions for FRC</strong></h5>
<p class="card-text">A GitHub CI action specifically built for FRC/GradleRIO codebases.
This has been used in production by multiple FRC teams, and has become a core tool
in the Raider Robotics software development pipeline.</p>
<a href="https://github.com/marketplace/actions/frc-build-test"
class="btn btn-primary">GitHub Marketplace</a>
<a href="https://github.com/Ewpratten/FRC-actions" class="btn btn-dark"><i
class="fab fa-github"></i></a>
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>Ultralight</strong></h5>
<p class="card-text">Ultralight is a custom maven server that is designed to run on
machines with very low resources, and almost no storage. I use Ultralight to
host my
personal maven repositories, and welcome other people to set up their own
instances.
</p>
<a href="https://ultralight.retrylife.ca" class="btn btn-primary">Demo</a>
<a href="https://github.com/Ewpratten/ultralight" class="btn btn-dark"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
<!-- <div class="col-sm-4">
<div class="col-sm-4">
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>GitHub Actions for FRC</strong></h5>
<p class="card-text">A GitHub CI action specifically built for FRC/GradleRIO
codebases.
This has been used in production by multiple FRC teams, and has become a core
tool
in the Raider Robotics software development pipeline.</p>
<a href="https://github.com/marketplace/actions/frc-build-test"
class="btn btn-primary">GitHub Marketplace</a>
<a href="https://github.com/Ewpratten/FRC-actions" class="btn btn-dark"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
<!-- <div class="col-sm-4">
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>Remains.xyz</strong></h5>
@ -150,50 +177,54 @@ title: Home
</div>
</div>
</div> -->
<div class="col-sm-4">
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>Shift</strong></h5>
<p class="card-text">Shift is a rotating-key, XOR-based data encryption tool that I
built to learn about the inner workings of simple encryption tools. This tool is
used to obfuscate program data in some of my other applications.</p>
<a href="/blog/2019/08/24/shift2" class="btn btn-primary">Blog Post</a>
<a href="https://github.com/Ewpratten/shift" class="btn btn-dark"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>Rayzor</strong></h5>
<p class="card-text">Rayzor is my final project from my ICS4U computer science class.
This is a 3D raytracer that can generate still images from a scene definition file.
Take a look at the project's README file for some examples.</p>
<a href="https://github.com/Ewpratten/Rayzor" class="btn btn-dark"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>Pi-hole API</strong></h5>
<p class="card-text">This is an old project of mine that is used in some of my backend
server management tools, and by many other people in personal projects. Pi-hole API
is a Python3 wrapper around the <a href="https://pi-hole.net/">Pi-hole</a> admin
interface.</p>
<a href="https://github.com/Ewpratten/pihole-api" class="btn btn-dark"><i
class="fab fa-github"></i></a>
<div class="col-sm-4">
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>Shift</strong></h5>
<p class="card-text">Shift is a rotating-key, XOR-based data encryption tool that I
built to learn about the inner workings of simple encryption tools. This tool is
used to obfuscate program data in some of my other applications.</p>
<a href="/blog/2019/08/24/shift2" class="btn btn-primary">Blog Post</a>
<a href="https://github.com/Ewpratten/shift" class="btn btn-dark"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>Rayzor</strong></h5>
<p class="card-text">Rayzor is my final project from my ICS4U computer science
class.
This is a 3D raytracer that can generate still images from a scene definition
file.
Take a look at the project's README file for some examples.</p>
<a href="https://github.com/Ewpratten/Rayzor" class="btn btn-dark"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card home-project">
<div class="card-body">
<h5 class="card-title"><strong>Pi-hole API</strong></h5>
<p class="card-text">This is an old project of mine that is used in some of my
backend
server management tools, and by many other people in personal projects. Pi-hole
API
is a Python3 wrapper around the <a href="https://pi-hole.net/">Pi-hole</a> admin
interface.</p>
<a href="https://github.com/Ewpratten/pihole-api" class="btn btn-dark"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="home-third-panel">
<!-- <div class="home-third-panel">
<div class="inner-content-container home-content container">
</div>