Skip to content

Commit 378f237

Browse files
Decided to use HTML for index
1 parent 2d3d86e commit 378f237

File tree

4 files changed

+43
-29
lines changed

4 files changed

+43
-29
lines changed

_config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
markdown: GFM
2-
#remote_theme: pages-themes/hacker@v0.2.0
3-
#plugins:
4-
#- jekyll-remote-theme # add this line to the plugins list if you already have one
2+
remote_theme: pages-themes/hacker@v0.2.0
3+
plugins:
4+
- jekyll-remote-theme # add this line to the plugins list if you already have one

index.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<link rel = "stylesheet" href = "style.css">
5+
</head>
6+
<body>
7+
<div id = "content">
8+
<h1 id="thepython10110">ThePython10110</h1>
9+
<p>I am a programmer/musician.</p>
10+
<h1 id="music">Music</h1>
11+
<p>Find my music (mostly video game transcriptions) on <a href="https://musescore.com/thepython10110">MuseScore.com</a> and <a href="https://github.com/thepython10110/musescore">GitHub</a>.</p>
12+
<h1 id="software-on-my-computer"><a href="software-on-my-computer.html">Software on my computer</a></h1>
13+
<p>A list of software on my computer.</p>
14+
<h1 id="programming-projects">Programming projects</h1>
15+
<h3 id="tengwar-transcriber">Tengwar Transcriber</h3>
16+
<p><a href="https://github.com/thepython10110/tengwar-transcriber">GitHub</a>, <a href="Tengwar-Transcriber">Demo</a></p>
17+
<p>A program that converts English into Lord of the Rings Elvish Tengwar. I&#39;m unlikely to finish it, especially since <a href="https://tecendil.com">Tecendil</a> already exists.</p>
18+
<h3 id="countdown">Countdown</h3>
19+
<p><a href="https://github.com/thepython10110/countdown">GitHub</a></p>
20+
<p>A Python/Tkinter program that counts down the time until user-specified events, with the ability to make custom themes. It requires Python 3 on a Windows computer (although using it on other OS&#39;s shouldn&#39;t take much modification), and several Python modules that <em>should</em> automatically be installed. It saves either to a JSON file or to a <a href="https://home-assistant.io">Home Assistant</a> server via the REST API. It uses my Python script (<code>hass.py</code>) which has several functions that make the Home Assistant REST API relatively easy to use.</p>
21+
<h3 id="clonetron">Clonetron</h3>
22+
<p><a href="https://thepython10110/clonetron">GitHub</a></p>
23+
<p>Hopefully a <a href="https://minetest.net">Minetest</a> mod that&#39;s a port of <a href="https://github.com/minetest-mods/digtron">Digtron</a> for <a href="https://content.minetest.net/packages/Wuzzy/mineclone2">MineClone</a> It doesn&#39;t work, and I know basically nothing about the Minetest/MineClone API (?), and I&#39;m also very new to Lua, so I don&#39;t know how to fix it. Basically, all I did was change the crafting recipes, change the dependencies, and find/replace &quot;digtron&quot; with &quot;clonetron.&quot; <em>PLEASE</em> look through it and open an issue telling me how to fix it...</p>
24+
</div>
25+
</body>
26+
</html>

index.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

style.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
body {
2+
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
3+
background-color: #222;
4+
color: #ddd;
5+
}
6+
a {
7+
/* font-weight: bold; */
8+
color: #07c;
9+
text-shadow: 1px 1px 5px #07c;
10+
}
11+
#content {
12+
margin-left: 20%;
13+
margin-right: 20%;
14+
}

0 commit comments

Comments
 (0)