-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (107 loc) · 3.79 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<title>dm4rnde</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="lib/bootstrap.min.css">
<script src="lib/jquery.min.js"></script>
<script src="lib/bootstrap.min.js"></script>
</head>
<style>
.box {
max-width: 20px;
max-height: 20px;
}
.compressalertbox {
padding: 2px;
color: white;
font-size: 80%;
text-align: right;
}
body {
margin: 20px;
}
</style>
<body>
<div class="container">
<div class="media">
<div class="media-left" style="opacity:0.5;">
<img class="img-rounded" src="imgs/29925240.jpeg" class="media-object" style="width:45px">
</div>
<div class="media-body media-middle">
dm4rnde projects and their statuses
</div>
</div>
<table class="table table-hover">
<thead>
<tr>
<th>Project</th>
<th>Description</th>
<th>Written In / Specifics</th>
<th>Status (Works?)</th>
<th>Working Actively (Being Managed)?</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/dm4rnde/StockPriceOverviewAppl">StockPriceOverviewAppl</a></td>
<td>GUI application to see stock's current price and historical prices from stock markets</td>
<td>Python</td>
<td>
<div class="alert alert-danger box" title="might not work at all; some dependencies might be outdated"> </div>
</td>
<td>
<div class="alert alert-danger box" title="have not checked for longer time; not being managed"> </div>
</td>
</tr>
<tr>
<td><a href="https://github.com/dm4rnde/kivylearn">kivylearn</a></td>
<td>Some assisting code snippets for learning kivy</td>
<td>Python</td>
<td>
<div class="alert alert-success box" title="works"> </div>
</td>
<td>
<div class="alert alert-warning box" title="not working actively"> </div>
</td>
</tr>
<tr>
<td><a href="https://github.com/dm4rnde/tictactoe">tictactoe</a></td>
<td>Tic-tac-toe game</td>
<td>Java</td>
<td>
<div class="alert alert-success box" title="works"> </div>
</td>
<td>
<div class="alert alert-warning box" title="not working actively"> </div>
</td>
</tr>
<tr>
<td><a href="https://github.com/dm4rnde/docker-flask-app-base-apache2-wsgi-py3">docker-flask-app-base-apache2-wsgi-py3</a></td>
<td>Docker image to create Docker container from, that accommodates Flask web app (which relies on Apache 2, wsgi, Python 3, and Ubuntu)</td>
<td>Docker, Flask app, Python 3, Apache 2, wsgi, Ubuntu</td>
<td>
<div class="alert alert-success box" title="works"> </div>
</td>
<td>
<div class="alert alert-warning box" title="not working actively"> </div>
</td>
</tr>
<tr>
<td><a href="https://github.com/dm4rnde/tutlearnnodejspart3fe">tutlearnnodejspart3fe</a></td>
<td>Code accompanying Node.js tutorial (part 3). Focus on front end.</td>
<td>JavaScript, Node.js, Express.js, MongoDB, Mongoose, Mocha, Chai, HTML, CSS</td>
<td>
<div class="alert alert-success box" title="works"> </div>
</td>
<td>
<div class="alert alert-warning box" title="not working actively"> </div>
</td>
</tr>
</tbody>
</table>
<div class="alert alert-info compressalertbox" title="last edit at"> 21 March 2019 </div>
</div>
</body>
</html>