-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 3.8 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Matthew Stobbs Github Projects</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h2 class="display-3">Project list</h2>
<p class="lead">A list of projects that I have, with a short description. Feel free to browse, clone, submit a PR, or use whatever you like.</p>
<hr class="my-2">
<p>It's random, it's different, and it's fun. Coding is life.</p>
</div>
<ul class="list-group">
<li class="list-group-item list-group-item-secondary"><a href="https://github.com/stobbsm/go-semver">go-semver</a> is a semantic version library for your go projects. I've used it with clients, and it simplifies having a semantic version consistent with the rest of the world.</li>
<li class="list-group-item list-group-item-primary"><a href="https://github.com/stobbsm/filebrowser">filebrowser</a> provides abstractions for working with files in PHP. Very basic right now, but has potential. I'm going to be working on this a lot.</li>
<li class="list-group-item list-group-item-primary"><a href="https://github.com/stobbsm/photogallery">photogallery</a> is a laravel based web application. I made it so my wife could more easily browse our photo library that is stored on our home server. Has potential to be more.</li>
<li class="list-group-item list-group-item-primary"><a href="https://github.com/stobbsm/sysmanager">sysmanager</a> was started because I don't like webmin, and don't see any real competition for it yet. Very slowly working on it, with the key to it being a modern design.</li>
<li class="list-group-item list-group-item-warning"><a href="https://github.com/stobbsm/diceroll">diceroll</a> parses DND style dice roll strings and rolls the dice. Made in PHP to integrate into other web applications I'm planning on making.</li>
<li class="list-group-item list-group-item-warning"><a href="https://github.com/stobbsm/go-externalip">go-externalip</a> gets your external ip address (v4 and v6, if available) from behind a nat. Very basic, should probably be made to not rely on external sites.</li>
<li class="list-group-item list-group-item-danger"><a href="https://github.com/stobbsm/bashext">bashext</a> is a basic (very basic) bash plugin system I made to provide some more useful commands. Don't really use it much anymore, but it exists and maybe it's useful.</li>
</ul>
<hr class="my-4">
<ul class="list-group">
<li class="list-group-item list-group-item-dark">Key:</li>
<li class="list-group-item list-group-item-primary">Active development</li>
<li class="list-group-item list-group-item-secondary">Not done, some development still happening</li>
<li class="list-group-item list-group-item-warning">Not abandoned, but not under active development right now</li>
<li class="list-group-item list-group-item-danger">Abandoned</li>
</ul>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
</body>
</html>