nvm lol I just broke it

This commit is contained in:
IanSkinner1982 2022-08-25 19:32:51 -04:00
parent 6af80cae64
commit da4198763e
12 changed files with 40 additions and 10 deletions

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.2.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2022-08-25T19:17:05-04:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">rmcs site</title><entry><title type="html">Bringing RNGTool to Your Wrist (Maybe)</title><link href="http://localhost:4000/2022/02/01/bringing-rngtool-to-apple-watch.html" rel="alternate" type="text/html" title="Bringing RNGTool to Your Wrist (Maybe)" /><published>2022-02-01T00:00:00-05:00</published><updated>2022-02-01T00:00:00-05:00</updated><id>http://localhost:4000/2022/02/01/bringing-rngtool-to-apple-watch</id><content type="html" xml:base="http://localhost:4000/2022/02/01/bringing-rngtool-to-apple-watch.html"><![CDATA[<p>Hmm this title sounds familiar...</p> <?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.2.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2022-08-25T19:31:49-04:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">rmcs site</title><entry><title type="html">Bringing RNGTool to Your Wrist (Maybe)</title><link href="http://localhost:4000/2022/02/01/bringing-rngtool-to-apple-watch.html" rel="alternate" type="text/html" title="Bringing RNGTool to Your Wrist (Maybe)" /><published>2022-02-01T00:00:00-05:00</published><updated>2022-02-01T00:00:00-05:00</updated><id>http://localhost:4000/2022/02/01/bringing-rngtool-to-apple-watch</id><content type="html" xml:base="http://localhost:4000/2022/02/01/bringing-rngtool-to-apple-watch.html"><![CDATA[<p>Hmm this title sounds familiar...</p>
<p>More RNGTool updates! This time I'm porting RNGTool to watchOS rather than iOS. And it's interesting. The most difficult part of this is dealing with the limited screen real estate that the Apple Watch has. The solution? Cutting out the fat.</p> <p>More RNGTool updates! This time I'm porting RNGTool to watchOS rather than iOS. And it's interesting. The most difficult part of this is dealing with the limited screen real estate that the Apple Watch has. The solution? Cutting out the fat.</p>
<p>RNGTool is by no means a visually simple app. I've definitely overcomplicated its UI. This gives me a good chance to really cut out any parts of the app's UI that aren't needed so that you can fit the parts that matter. The actual process of porting the app's code was a lot easier than from macOS to iOS because most of the parts that aren't support on watchOS were being removed anyway, so I won't go over it here.</p> <p>RNGTool is by no means a visually simple app. I've definitely overcomplicated its UI. This gives me a good chance to really cut out any parts of the app's UI that aren't needed so that you can fit the parts that matter. The actual process of porting the app's code was a lot easier than from macOS to iOS because most of the parts that aren't support on watchOS were being removed anyway, so I won't go over it here.</p>
<p>Here's the interesting part, a comparison of the iOS and watchOS apps:</p> <p>Here's the interesting part, a comparison of the iOS and watchOS apps:</p>

View File

@ -7,7 +7,7 @@
<script type="text/javascript" src="ec_example.js"></script> <script type="text/javascript" src="ec_example.js"></script>
<style type="text/css"> <style type="text/css">
body, p, td, div, span, a { font-size: 12px; color: #000000; font-family: tahoma,arial,verdana,sans-serif; } body, p, td, div, span, a { font-size: 12px; color: #000000; font-family: tahoma,arial,verdana,sans-serif;background-color: #FFFFFF;}
option, input, textarea, select, .formText { font-family: tahoma,arial,verdana,sans-serif; } option, input, textarea, select, .formText { font-family: tahoma,arial,verdana,sans-serif; }
<!-- /*.tdButton{width:100%} Doesn't work with opera*/ --> <!-- /*.tdButton{width:100%} Doesn't work with opera*/ -->
.tdButton{} .tdButton{}

View File

@ -5,6 +5,11 @@
<title>NCL index_d</title> <title>NCL index_d</title>
<link rel="stylesheet" type="text/css" href="../common/css/default.css"> <link rel="stylesheet" type="text/css" href="../common/css/default.css">
<script type="text/javascript" src="../common/js/default.js"></script> <script type="text/javascript" src="../common/js/default.js"></script>
<style>
body {
background-color: #FFFFFF;
}
</style>
<script> <script>
<!-- <!--
window.name = "DownWindow"; window.name = "DownWindow";

View File

@ -7,7 +7,7 @@
<script type="text/javascript" src="ec_example.js"></script> <script type="text/javascript" src="ec_example.js"></script>
<style type="text/css"> <style type="text/css">
body, p, td, div, span, a { font-size: 12px; color: #000000; font-family: tahoma,arial,verdana,sans-serif; } body, p, td, div, span, a { font-size: 12px; color: #000000; font-family: tahoma,arial,verdana,sans-serif;background-color: #FFFFFF;}
option, input, textarea, select, .formText { font-family: tahoma,arial,verdana,sans-serif; } option, input, textarea, select, .formText { font-family: tahoma,arial,verdana,sans-serif; }
<!-- /*.tdButton{width:100%} Doesn't work with opera*/ --> <!-- /*.tdButton{width:100%} Doesn't work with opera*/ -->
.tdButton{} .tdButton{}

View File

@ -5,6 +5,11 @@
<title>SMC index_d</title> <title>SMC index_d</title>
<link rel="stylesheet" type="text/css" href="../common/css/default.css"> <link rel="stylesheet" type="text/css" href="../common/css/default.css">
<script type="text/javascript" src="../common/js/default.js"></script> <script type="text/javascript" src="../common/js/default.js"></script>
<style>
body {
background-color: #FFFFFF;
}
</style>
<script> <script>
<!-- <!--
window.name = "DownWindow"; window.name = "DownWindow";

View File

@ -5,6 +5,11 @@
<title>StartPage</title> <title>StartPage</title>
<link rel="stylesheet" type="text/css" href="common/css/default.css"> <link rel="stylesheet" type="text/css" href="common/css/default.css">
<script type="text/javascript" src="common/js/default.js"></script> <script type="text/javascript" src="common/js/default.js"></script>
<style>
body {
background-color: #FFFFFF;
}
</style>
<script> <script>
<!-- <!--
window.name = "DownWindow"; window.name = "DownWindow";

View File

@ -161,7 +161,7 @@
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/NCL/ec/ec_example.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/NCL/ec/ec_example.html</loc>
<lastmod>2022-08-24T14:09:40-04:00</lastmod> <lastmod>2022-08-25T19:29:24-04:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/NCL/ec/ec_point.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/NCL/ec/ec_point.html</loc>
@ -173,7 +173,7 @@
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/NCL/index_d.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/NCL/index_d.html</loc>
<lastmod>2022-08-25T13:20:22-04:00</lastmod> <lastmod>2022-08-25T19:31:49-04:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/NCL/index_u.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/NCL/index_u.html</loc>
@ -193,7 +193,7 @@
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/SMC/ec/ec_example.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/SMC/ec/ec_example.html</loc>
<lastmod>2022-08-25T13:25:31-04:00</lastmod> <lastmod>2022-08-25T19:28:41-04:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/SMC/ec/ec_u.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/SMC/ec/ec_u.html</loc>
@ -241,7 +241,7 @@
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/SMC/index_d.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/SMC/index_d.html</loc>
<lastmod>2022-08-24T14:09:40-04:00</lastmod> <lastmod>2022-08-25T19:31:14-04:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/SMC/index_u.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/SMC/index_u.html</loc>
@ -253,7 +253,7 @@
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/startup_d.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/startup_d.html</loc>
<lastmod>2022-08-24T14:09:40-04:00</lastmod> <lastmod>2022-08-25T19:28:15-04:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/startup_u.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/startup_u.html</loc>

View File

@ -7,7 +7,7 @@
<script type="text/javascript" src="ec_example.js"></script> <script type="text/javascript" src="ec_example.js"></script>
<style type="text/css"> <style type="text/css">
body, p, td, div, span, a { font-size: 12px; color: #000000; font-family: tahoma,arial,verdana,sans-serif; } body, p, td, div, span, a { font-size: 12px; color: #000000; font-family: tahoma,arial,verdana,sans-serif;background-color: #FFFFFF;}
option, input, textarea, select, .formText { font-family: tahoma,arial,verdana,sans-serif; } option, input, textarea, select, .formText { font-family: tahoma,arial,verdana,sans-serif; }
<!-- /*.tdButton{width:100%} Doesn't work with opera*/ --> <!-- /*.tdButton{width:100%} Doesn't work with opera*/ -->
.tdButton{} .tdButton{}

View File

@ -5,6 +5,11 @@
<title>NCL index_d</title> <title>NCL index_d</title>
<link rel="stylesheet" type="text/css" href="../common/css/default.css"> <link rel="stylesheet" type="text/css" href="../common/css/default.css">
<script type="text/javascript" src="../common/js/default.js"></script> <script type="text/javascript" src="../common/js/default.js"></script>
<style>
body {
background-color: #FFFFFF;
}
</style>
<script> <script>
<!-- <!--
window.name = "DownWindow"; window.name = "DownWindow";

View File

@ -7,7 +7,7 @@
<script type="text/javascript" src="ec_example.js"></script> <script type="text/javascript" src="ec_example.js"></script>
<style type="text/css"> <style type="text/css">
body, p, td, div, span, a { font-size: 12px; color: #000000; font-family: tahoma,arial,verdana,sans-serif; } body, p, td, div, span, a { font-size: 12px; color: #000000; font-family: tahoma,arial,verdana,sans-serif;background-color: #FFFFFF;}
option, input, textarea, select, .formText { font-family: tahoma,arial,verdana,sans-serif; } option, input, textarea, select, .formText { font-family: tahoma,arial,verdana,sans-serif; }
<!-- /*.tdButton{width:100%} Doesn't work with opera*/ --> <!-- /*.tdButton{width:100%} Doesn't work with opera*/ -->
.tdButton{} .tdButton{}

View File

@ -5,6 +5,11 @@
<title>SMC index_d</title> <title>SMC index_d</title>
<link rel="stylesheet" type="text/css" href="../common/css/default.css"> <link rel="stylesheet" type="text/css" href="../common/css/default.css">
<script type="text/javascript" src="../common/js/default.js"></script> <script type="text/javascript" src="../common/js/default.js"></script>
<style>
body {
background-color: #FFFFFF;
}
</style>
<script> <script>
<!-- <!--
window.name = "DownWindow"; window.name = "DownWindow";

View File

@ -5,6 +5,11 @@
<title>StartPage</title> <title>StartPage</title>
<link rel="stylesheet" type="text/css" href="common/css/default.css"> <link rel="stylesheet" type="text/css" href="common/css/default.css">
<script type="text/javascript" src="common/js/default.js"></script> <script type="text/javascript" src="common/js/default.js"></script>
<style>
body {
background-color: #FFFFFF;
}
</style>
<script> <script>
<!-- <!--
window.name = "DownWindow"; window.name = "DownWindow";