-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (31 loc) · 1.17 KB
/
index.html
File metadata and controls
44 lines (31 loc) · 1.17 KB
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
<html>
<head>
<title>MightyCreak's GitHub</title>
<script src="//cdn.jsdelivr.net/markdown-it/4.2.2/markdown-it.min.js"></script>
</head>
<body>
<div id="mdcontent">
I'm maintaining two main projects:
# Mesamatrix
Mesamatrix is a web site that tracks the commits of the open-source [mesa](http://mesa3d.org/) drivers. It parses
the
[features.txt](https://cgit.freedesktop.org/mesa/mesa/tree/docs/features.txt) file for each commits and track, in
time,
when a feature appeared and for which driver.
URL: [https://github.com/MightyCreak/mesamatrix](https://github.com/MightyCreak/mesamatrix)
# Diffuse
Diffuse is a GUI application that allows to compare text files. It is written in Python and is a fork of the
original
application [here](http://diffuse.sourceforge.net/).
My first work has been to modernize the source code and convert it from Python 2 to 3, and from GTK 2 to 3.
URL: [https://github.com/MightyCreak/diffuse](https://github.com/MightyCreak/diffuse)
</div>
<script>
var mdtag = document.getElementById("mdcontent");
if (mdtag) {
var md = window.markdownit();
mdtag.innerHTML = md.render(mdtag.innerHTML);
}
</script>
</body>
</html>