mirror of
https://github.com/rvtr/rmc_website.git
synced 2025-10-31 13:31:21 -04:00
I'm dumb
This commit is contained in:
parent
254f3c8705
commit
db289e23a3
@ -1,30 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>{{ page.title }} | {{ site.title }}</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ncxprogramming.com/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
{% if page.title == "Home" %}
|
||||
<meta property="og:title" content="Welcome">
|
||||
{% else %}
|
||||
<meta property="og:title" content="{{ page.title }}">
|
||||
{% endif %}
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="{{ page.title }} | {{ site.title }}">
|
||||
<meta property="og:description" content="{{ page.title }} | {{ site.title }}">
|
||||
<link rel="canonical" href="https://ncxprogramming.com">
|
||||
<meta property="og:url" content="https://ncxprogramming.com">
|
||||
<meta property="og:site_name" content="NCX Programming">
|
||||
{% if page.custicon == true %}
|
||||
<meta property="og:image" content="{{ page.iconurl }}">
|
||||
{% else %}
|
||||
<meta property="og:image" content="https://ncxprogramming.com/icon.png">
|
||||
{% endif %}
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
{{ content }}
|
||||
</div>
|
||||
</html>
|
||||
@ -1,26 +0,0 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<div class="container text-center">
|
||||
{% if page.archived == true %}
|
||||
<img src="https://cdn.ncxprogramming.com/file/image/banner/archived.svg" class="projectimg" style="width:80%;" alt="A banner that says 'Archved'.">
|
||||
{% endif %}
|
||||
<img src="{{ page.iconurl }}" class="projectimg" style="width:256px;height:256px;padding-top:8px;" alt="The program's icon.">
|
||||
<div class="text-center pb-3">
|
||||
<h1>{{ page.title }}</h1>
|
||||
<p><b>By {{ page.author }}</b></p>
|
||||
<p><b>Platform(s): </b>{{ page.platform }}</p>
|
||||
<div class="dropdown pb-3">
|
||||
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Project Links
|
||||
</button>
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
|
||||
{% for item in page.links %}
|
||||
<li><a class="dropdown-item" href="{{ item.link }}">{{ item.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
||||
@ -1,27 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Error 404 | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ncxprogramming.com/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
|
||||
<meta property="og:title" content="Error 404">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="Error 404 | rmc's site">
|
||||
<meta property="og:description" content="Error 404 | rmc's site">
|
||||
<link rel="canonical" href="https://ncxprogramming.com">
|
||||
<meta property="og:url" content="https://ncxprogramming.com">
|
||||
<meta property="og:site_name" content="NCX Programming">
|
||||
|
||||
<meta property="og:image" content="https://ncxprogramming.com/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-black">
|
||||
|
||||
<div class="container-fluid">
|
||||
@ -51,6 +28,3 @@
|
||||
<p><a href="javascript:window.history.back()">Previous page</a></p>
|
||||
<p><a href="/">Home</a></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
# IanSkinner1982.github.io
|
||||
|
||||
DSi dev app documentation, and some personal stuff. Enjoy.
|
||||
|
||||
https://ianskinner1982.github.io/dsidev/
|
||||
|
||||
@ -1,5 +1,12 @@
|
||||
<head>
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
body {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
@ -1,4 +1,11 @@
|
||||
/* Common CSS */
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
h1
|
||||
{
|
||||
font-size: 16px;
|
||||
@ -29,4 +36,4 @@ ul
|
||||
#up_url, #down_url
|
||||
{
|
||||
width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
/* ---- common style ------------------------------- */
|
||||
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
body {
|
||||
margin : 0 0 0 0;
|
||||
padding : 0;
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
/* ---- common style ------------------------------- */
|
||||
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
body {
|
||||
font-size : 12px;
|
||||
color : #555555;
|
||||
|
||||
@ -1,4 +1,11 @@
|
||||
/* Common CSS */
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
h1
|
||||
{
|
||||
font-size: 16px;
|
||||
@ -35,4 +42,4 @@ ul
|
||||
{
|
||||
text-align: right;
|
||||
background-color: #CCC;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,4 +1,11 @@
|
||||
/* Common CSS */
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
h1
|
||||
{
|
||||
font-size: 16px;
|
||||
|
||||
@ -1,4 +1,11 @@
|
||||
/* Common CSS */
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
h1
|
||||
{
|
||||
font-size: 16px;
|
||||
|
||||
@ -324,14 +324,12 @@ body {
|
||||
</style>
|
||||
<!--<span style="color:red;"><h1>Apps wanted!</h1><h2>If you've got anything not shown <a href="https://archive.org/download/rmc-dsi">here</a>, send it to me at <i>ianskinner519@gmail.com</i></h2></span>-->
|
||||
<marquee><code style="font-size:2.5vw;color:green;" scrollamount="10">Greetings to ufo, lasscat, togemet2, Rolfie, HudU, and Trash_Bandatcoot! Thanks to everyone across the web who has dumped, mirrored, or documented these programs. This entire website was designed and created by me, and me alone (unless you count stack overflow). Sure, it's barely working, but at least it looks nicer and has more information than any other public sites. Y'all need to remember that there's more than just TwlNmenu and NandFiler. Also just include damn links! These programs don't do any good when you can't download and use them. Oh well, at least I've fixed that now... unless you're on my GBAtemp branch. Sorry for the stripped down site. I don't have much of a choice with GBAtemp's silly rules.</code></marquee>
|
||||
<h2>Welcome to the site!</h2>Hey there! This website is aimed at documenting every single Nintendo DS(i) development and factory test program. Many programs have been leaked or dumped, but nobody discusses them, and I worry that they will get lost to time. This site will ensure that these apps are never forgotten.
|
||||
<h2>Welcome to the DS(i) dev app archive!</h2>Hey there! This website is aimed at documenting every single Nintendo DS(i) development and factory test program ever released. Many programs have been leaked or dumped, but nobody discusses them and I worry that they will get lost to time. This site is here to ensure that these apps are never forgotten.
|
||||
<br><br>
|
||||
I've gathered one of the most complete collections of programs on the web (feel free to prove me otherwise), and I feel it's important to make sure every last item in my collection is shared. If you want to support my work, send me programs/documents/information at <code>ianskinner519@gmail.com</code>, or click the discord icon on the top of the page.
|
||||
If you want to support my work, send me programs/documents/information at <code>ianskinner519@gmail.com</code>, or join my <a href="https://discord.com/invite/XZxxZngwDQ">discord server</a>.
|
||||
<br><br>
|
||||
I'm happy to answer any questions you have (no matter how silly they may be), so don't be afraid to shoot me a message.
|
||||
<br><br>
|
||||
Enjoy browsing the site!<br>
|
||||
- Ian Skinner (rmc)<br><hr><br>
|
||||
<br><hr><br>
|
||||
<div class="container">
|
||||
<ul class="titleimg">
|
||||
<div class="container">
|
||||
|
||||
@ -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.3.2">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>2023-02-16T23:34:25-05:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">rmc’s site</title><entry><title type="html">Turning my Nintendo DS into an iQue DS</title><link href="http://localhost:4000/2023/02/05/turning_my_nintendo_ds_into_an_ique_ds.html" rel="alternate" type="text/html" title="Turning my Nintendo DS into an iQue DS" /><published>2023-02-05T00:00:00-05:00</published><updated>2023-02-05T00:00:00-05:00</updated><id>http://localhost:4000/2023/02/05/turning_my_nintendo_ds_into_an_ique_ds</id><content type="html" xml:base="http://localhost:4000/2023/02/05/turning_my_nintendo_ds_into_an_ique_ds.html"><![CDATA[Recently I've been obsessed with the iQue DSes. It all started during a discussion with my friend @ufo. He was wanting to install iQue firmware on a non-iQue unit, but it wouldn't work. I took a look and noticed that the iQue firmware was 512kb as opposed to the regular 256kb size for other firmwares.
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.2">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>2023-02-18T14:49:58-05:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">rmc’s site</title><entry><title type="html">Turning my Nintendo DS into an iQue DS</title><link href="http://localhost:4000/2023/02/05/turning_my_nintendo_ds_into_an_ique_ds.html" rel="alternate" type="text/html" title="Turning my Nintendo DS into an iQue DS" /><published>2023-02-05T00:00:00-05:00</published><updated>2023-02-05T00:00:00-05:00</updated><id>http://localhost:4000/2023/02/05/turning_my_nintendo_ds_into_an_ique_ds</id><content type="html" xml:base="http://localhost:4000/2023/02/05/turning_my_nintendo_ds_into_an_ique_ds.html"><![CDATA[Recently I've been obsessed with the iQue DSes. It all started during a discussion with my friend @ufo. He was wanting to install iQue firmware on a non-iQue unit, but it wouldn't work. I took a look and noticed that the iQue firmware was 512kb as opposed to the regular 256kb size for other firmwares.
|
||||
<br>@ufo said, "it would be cool to get ique to work on the 256 ones", and that got me thinking...
|
||||
<br><br>
|
||||
The 256kb chip on the DS WiFi card that holds the firmware is the exact same as the 256kb save chip on most DS games. You can swap a firmware and save chip around and everything works perfectly- assuming you correctly flashed the firmware to the now-firmware chip.
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 124 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 72 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 43 KiB |
@ -1,76 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>IanSkinner1982 | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="IanSkinner1982">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="IanSkinner1982 | rmc's site">
|
||||
<meta property="og:description" content="IanSkinner1982 | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="centertext">
|
||||
<h1>IanSkinner1982</h1>
|
||||
<img src="https://cdn.ncxprogramming.com/file/image/profile/IanSkinner1982.png" width=256 height=256 class="projectimg">
|
||||
<h3>Who am I?</h3>
|
||||
<p>Hello! I'm IanSkinner1982, the developer of <a href="https://github.com/IanSkinner1982?tab=repositories&q=&type=source&language=" target="_blank">a few C64 apps (in BASIC and assembly)</a> and a member of <a href="https://github.com/NCX-Programming">NCX-Programming</a>. I helped create some of this website, as well as <a href="/programs/ncxnewsplus">NCX-News+</a>. <br> I touch grass.</p>
|
||||
<h4>Facts:</h4>
|
||||
<p>The 1982 in my name comes from the year the Commodore 64 was released.</p>
|
||||
<p>I was <i>not</i> born in 1982. (a lot of people think that for some reason)</p>
|
||||
<p>The C64 is my favorite computer. (big surprise)</p>
|
||||
<h3>Stuff I've made</h3>
|
||||
<p>I'll put stuff here later, I'm just half asleep right now./p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Members | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="Members">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="Members | rmc's site">
|
||||
<meta property="og:description" content="Members | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<img class="img-fluid" src="https://cdn.ncxprogramming.com/file/image/banner/banner2.svg" alt="A banner that says 'Our Members'.">
|
||||
<h1 class="text-center pt-3">Learn About Our Members</h1>
|
||||
<p class="text-center text-muted">Click the buttons on the cards to read more about a member.</p>
|
||||
<div class="container pt-3 pb-3">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-sm-3">
|
||||
<div class="card">
|
||||
<img src="https://cdn.ncxprogramming.com/file/image/profile/NinjaCheetah.png" class="card-img-top" alt="NinjaCheetah's profile picture.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">NinjaCheetah</h5>
|
||||
<p class="card-text">The lead developer and founder of NCX Programming. Works with a wide selection of languages.</p>
|
||||
<a href="/members/ninjacheetah" class="btn btn-primary">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<div class="card">
|
||||
<img src="https://cdn.ncxprogramming.com/file/image/profile/IanSkinner1982.png" class="card-img-top" alt="IanSkinner1982's profile picture.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">IanSkinner1982</h5>
|
||||
<p class="card-text">The lead writer and co-founder of NCX Programming. Mostly does web design and makes C64 programs.</p>
|
||||
<a href="/members/ianskinner1982" class="btn btn-primary">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,70 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>NinjaCheetah | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="NinjaCheetah">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="NinjaCheetah | rmc's site">
|
||||
<meta property="og:description" content="NinjaCheetah | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="centertext">
|
||||
<h1>NinjaCheetah</h1>
|
||||
<img src="https://cdn.ncxprogramming.com/file/image/profile/NinjaCheetah.png" width=256 height=256 class="projectimg">
|
||||
<h3>Who am I?</h3>
|
||||
<p>Hi! I'm NinjaCheetah, a developer and the creator of NCX Programming. I make programs in C, and have made some programs in C# in the past. I'm a huge supporter of free and open source software, which is why everything I make it open source. I mostly use Linux for things like gaming, and macOS for development. Other than programming, I play a lot of video games and I do some 3D modeling from time to time.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,38 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<title>IanSkinner1982's Website</title>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="nav">
|
||||
<nav>
|
||||
<ul>
|
||||
<li class="navstd"><a href="/">Home</a></li>
|
||||
<li class="navstd"><a href="/pages/programs/">Programs</a></li>
|
||||
<li class="navstd"><a href="/pages/socialmedia/">Social Media</a></li>
|
||||
<li class="navimg"><a href="https://github.com/IanSkinner1982"><img src="https://raw.githubusercontent.com/NCX-Programming/site/main/files/site/images/github64px.png" style="width:32px;height:32px;"/></a></li>
|
||||
<li class="navimg"><a href="https://discord.gg/TbPXuFr"><img src="https://raw.githubusercontent.com/NCX-Programming/site/main/files/site/images/discord.png" style="width:30px;height:32px;"/></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
<h1>CC64 docs</h1>
|
||||
<p>
|
||||
Adding new buildings in v3:
|
||||
<br>First, add the new building data to the end of the <code>STOREDAT</code> file. The format should be as follows:
|
||||
<br>
|
||||
<br><code>Name (max 14 chars)
|
||||
<br>Description (max 22 chars)
|
||||
<br>Gain (cookies per second)
|
||||
<br>Price</code>
|
||||
<br>
|
||||
<br>Now we'll start editing the actual program. You will need to change the old max # of buildings to the new max # of buildings you want, <b>minus one</b>. This can be edited at the start of line 10. (the max # of building is represented as mb)
|
||||
<br>Next, look at line 2010. There are multiple ranges. These determine what building data will be displayed on each page. (a range of 0-4 will print data for buildings 0-4, and 5-9 for 5-9 and so on) <code>I</code> and <code>J</code> are the minimum and maximum values of a range, respectively. <code>SS</code> is the page number on which these values will be printed. Add/edit ranges as needed. Make sure you have <code>ifss>{page #}theni</code>.
|
||||
<br>(notes: page numbers start at 0, and ranges can be no bigger than 5)
|
||||
<br>
|
||||
<br>Lastly, edit line 3095 to be <code>ifss={max page #+1}thenss={max page #}</code>.
|
||||
<br>
|
||||
<br>If, after doing this, the screen becomes messed up, try changing the amount of <code>{downs}</code> in line 2555. Currently there isn't any code that selects the amount of <code>{down}</code>s needed depending on the number of items printed. (that may come later) Everything <i>should</i> now work. If you are experiencing any problems, try updating your CC64 version and repeating the steps.
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,26 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<title>IanSkinner1982's Website</title>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="nav">
|
||||
<nav>
|
||||
<ul>
|
||||
<li class="navstd"><a href="/">Home</a></li>
|
||||
<li class="navstd"><a href="/pages/programs/">Programs</a></li>
|
||||
<li class="navstd"><a href="/pages/socialmedia/">Social Media</a></li>
|
||||
<li class="navimg"><a href="https://github.com/IanSkinner1982"><img src="https://raw.githubusercontent.com/NCX-Programming/site/main/files/site/images/github64px.png" style="width:32px;height:32px;"/></a></li>
|
||||
<li class="navimg"><a href="https://discord.gg/TbPXuFr"><img src="https://raw.githubusercontent.com/NCX-Programming/site/main/files/site/images/discord.png" style="width:30px;height:32px;"/></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
<h1>Programs I'm working on</h1>
|
||||
<ul>
|
||||
<li><a href="/pages/programs/cc64.html">Cookie Clicker C64</a></li>
|
||||
<li><a href="/pages/programs/tt64.html">C64 Title Loader</a></li>
|
||||
<li><a href="/pages/programs/"></a></li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,69 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Ah Counter | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="Ah Counter">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="Ah Counter | rmc's site">
|
||||
<meta property="og:description" content="Ah Counter | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<meta http-equiv="refresh" content="3; url=https://ninjacheetah.github.io/projects/maintained/ahcounter"/>
|
||||
<div class="container text-center pt-3 pb-5">
|
||||
<h1 class="pb-3">Content Moved</h1>
|
||||
<h4 class="text-muted">This page has moved. Redirecting you to this page's new location...</h4>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,104 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>CSharpCollections | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="CSharpCollections">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="CSharpCollections | rmc's site">
|
||||
<meta property="og:description" content="CSharpCollections | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="container text-center">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/image/banner/archived.svg" class="projectimg" style="width:80%;" alt="A banner that says 'Archved'.">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/csharpcollection.png" class="projectimg" style="width:256px;height:256px;padding-top:8px;" alt="The program's icon.">
|
||||
<div class="text-center pb-3">
|
||||
<h1>CSharpCollections</h1>
|
||||
<p><b>By NinjaCheetah</b></p>
|
||||
<p><b>Platform(s): </b>Windows</p>
|
||||
<div class="dropdown pb-3">
|
||||
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Project Links
|
||||
</button>
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/CSharp-Collection">View Source</a></li>
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/CSharp-Collection/releases/latest/download/CSharpCollectionSetup.msi">Download Installer</a></li>
|
||||
|
||||
</ul>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<h3 style="text-align:center;">What is it?</h3>
|
||||
<p style="text-align:center;">This is a collection of C# programs by <a href="https://github.com/ninjacheetah/">NinjaCheetah</a>. These programs were made to help him learn C# and figure out how to use Visual Studio.</p>
|
||||
<p style="text-align:center;">Included mini-apps are:</p>
|
||||
<ul style="text-align:center;list-style-type:none;">
|
||||
<li>- Color Buttons</li>
|
||||
<li>- C#Calc</li>
|
||||
<li>- Tic Tac No </li>
|
||||
<li>- C#Notes</li>
|
||||
<li>- C#Search</li>
|
||||
</ul>
|
||||
<h3 style="text-align:center;">Requirements</h3>
|
||||
<p style="text-align:center;">You will need a 64-bit version of Windows 10 with the .NET 5.0 Runtime installed. (You can download that from <a href="https://dotnet.microsoft.com/download/dotnet-core/">here</a>.)</p>
|
||||
<h3 style="text-align:center;">Installing</h3>
|
||||
<p style="text-align:center;">To install, download the latest MSI installer, using the link at the top of the page, and run in. Follow the instructions in the installer.</p>
|
||||
<h3 style="text-align:center;">Compiling</h3>
|
||||
<p style="text-align:center;margin-left:16px;margin-right:16px;">To compile, use the link at the top of the page to go to the GitHub page, and then clone/download the source code however you'd like. Once you have the source, the easiest way to compile it is to open the solution up in Visual Studio 2019, and then use the compile button.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,138 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>NCX-Core-Lite | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="NCX-Core-Lite">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="NCX-Core-Lite | rmc's site">
|
||||
<meta property="og:description" content="NCX-Core-Lite | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="container text-center">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/image/banner/archived.svg" class="projectimg" style="width:80%;" alt="A banner that says 'Archved'.">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/ncxcore.png" class="projectimg" style="width:256px;height:256px;padding-top:8px;" alt="The program's icon.">
|
||||
<div class="text-center pb-3">
|
||||
<h1>NCX-Core-Lite</h1>
|
||||
<p><b>By NinjaCheetah</b></p>
|
||||
<p><b>Platform(s): </b>macOS, Linux</p>
|
||||
<div class="dropdown pb-3">
|
||||
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Project Links
|
||||
</button>
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/NCX-Core-Lite">View Source</a></li>
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/NCX-Core-Lite/releases">Releases</a></li>
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/NCX-Core-Lite/actions">Nightly Builds</a></li>
|
||||
|
||||
</ul>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<h3>What is it?</h3>
|
||||
<p>NCX-Core-Lite is a CLI application that allows you to quickly download software by <a href="https://github.com/NinjaCheetah">NinjaCheetah</a> and other small develpers.</p>
|
||||
<p>Here is a list of the apps currently available (non-exhaustive):</p>
|
||||
<div class="prg-list">
|
||||
<ul style="text-align:center;list-style-type:none;">
|
||||
<li><a href="https://github.com/NCX-Programming/theVaultC" target="_blank">theVaultC</a></li>
|
||||
<li><a href="https://github.com/YourKalamity/lazy-dsi-file-downloader" target="_blank">Lazy DSi File Downloader</a></li>
|
||||
<li><a href="https://github.com/IanSkinner1982/C64-title-loader" target="_blank">C64 Title Loader</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<h3>Requirements</h3>
|
||||
<p>Full dependency install instructions available <a href="https://github.com/NCX-Programming/NCX-Core-Lite/wiki/Dependencies">on the wiki</a>.</p>
|
||||
<h4>macOS</h4>
|
||||
<ul style="text-align:center;list-style-type:none;">
|
||||
<li>- At least macOS 10.12 (Intel, build available pre-compiled)</li>
|
||||
<li>- At least macOS 11.0 (ARM, build not available pre-compiled)</li>
|
||||
<li>- libcurl (install with <code>brew install curl</code>)</li>
|
||||
<li>- GTK+ 3 (install with <code>brew install gtk+3</code>)</li>
|
||||
</ul>
|
||||
<h4>Linux</h4>
|
||||
<p>(Note that the same package names should work in pacman.)</p>
|
||||
<ul style="text-align:center;list-style-type:none;">
|
||||
<li>- A 64-bit version of Linux</li>
|
||||
<li>- libcurl (install with <code>sudo apt install libcurl4-nss-dev</code>)</li>
|
||||
<li>- GTK+ 3 (install with <code>sudo apt install libgtk-3-0 libgtk-3-dev</code>)</li>
|
||||
</ul>
|
||||
<h3>Installing</h3>
|
||||
<p>Download the zip from the latest successful actions run, which can be accessed using the link at the top of the page, extract it, and run. That's it!</p>
|
||||
<p>Available file formats are:</p>
|
||||
<ul style="text-align:center;list-style-type:none;">
|
||||
<li>- A Linux ELF binary (Linux)</li>
|
||||
<li>- A Unix ELF binary (macOS)</li>
|
||||
<li>- A (experimental) .app binary (macOS)</li>
|
||||
</ul>
|
||||
<h3>Compiling</h3>
|
||||
<p>Full compiling instructions available <a href="https://github.com/NCX-Programming/NCX-Core-Lite/wiki/Compiling">on the wiki</a>.</p>
|
||||
<h4>macOS</h4>
|
||||
<ul style="text-align:center;list-style-type:none;">
|
||||
<li>- Make sure you have all the dependencies installed</li>
|
||||
<li>- Clone/download the source code however you prefer to</li>
|
||||
<li>- Enter the directory and run <code>make mac</code> (for a Unix binary) or <code>make macapp</code> (for a macOS .app binary)</li>
|
||||
</ul>
|
||||
<h4>Linux</h4>
|
||||
<ul style="text-align:center;list-style-type:none;">
|
||||
<li>- Make sure you have all the dependencies installed</li>
|
||||
<li>- Clone/download the source code however you prefer to</li>
|
||||
<li>- Enter the directory and run <code>make linux</code> (makes a Linux binary)</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,101 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>theVault | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="theVault">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="theVault | rmc's site">
|
||||
<meta property="og:description" content="theVault | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="container text-center">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/image/banner/archived.svg" class="projectimg" style="width:80%;" alt="A banner that says 'Archved'.">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/placeholder.svg" class="projectimg" style="width:256px;height:256px;padding-top:8px;" alt="The program's icon.">
|
||||
<div class="text-center pb-3">
|
||||
<h1>theVault</h1>
|
||||
<p><b>By NinjaCheetah</b></p>
|
||||
<p><b>Platform(s): </b>Windows, macOS, Linux</p>
|
||||
<div class="dropdown pb-3">
|
||||
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Project Links
|
||||
</button>
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/theVault">View Source</a></li>
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/theVault/actions">Nightly Builds</a></li>
|
||||
|
||||
</ul>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<h3>Description</h3>
|
||||
<p>theVault is a collection of cross-platform (compatible with Windows, some versions of macOS, and Linux) .NET 5 console apps written in C#. They are a combination of simple games, utilites, and example/demo programs. </p>
|
||||
<h3>Whats included?</h3>
|
||||
<p>There are currently 3 programs.</p>
|
||||
<div class="prg-list">
|
||||
<ul>
|
||||
<li>graphicStuff</li>
|
||||
<li>guessmynumber</li>
|
||||
<li>helloWorld</li>
|
||||
</ul>
|
||||
</div>
|
||||
<h3>Running</h3>
|
||||
<p>For help running the programs, look <a href="https://github.com/NCX-Programming/theVault/#windows-linux-and-macos">here</a>.
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,180 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Programs | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="Programs">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="Programs | rmc's site">
|
||||
<meta property="og:description" content="Programs | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<img class="img-fluid" src="https://cdn.ncxprogramming.com/file/image/banner/banner3.svg" alt="A banner that says 'Software'.">
|
||||
<h1 class="text-center pt-3">Explore Our Software</h1>
|
||||
<p class="text-center text-muted pb-3">Use the tabs to switch between maintained and archived programs.</p>
|
||||
<nav>
|
||||
<div class="nav nav-tabs justify-content-center" id="nav-tab" role="tablist">
|
||||
<button class="nav-link active" id="nav-home-tab" data-bs-toggle="tab" data-bs-target="#nav-home" type="button" role="tab" aria-controls="nav-home" aria-selected="true">Maintained</button>
|
||||
<button class="nav-link" id="nav-profile-tab" data-bs-toggle="tab" data-bs-target="#nav-profile" type="button" role="tab" aria-controls="nav-profile" aria-selected="false">Archived</button>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="tab-content pb-3" id="nav-tabContent">
|
||||
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
|
||||
<h3 class="text-center pt-3">Maintained</h3>
|
||||
<p class="text-center text-muted pb-1">Software that's still being worked on and recieving updates.</p>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="card">
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/ncxcore.png" class="card-img-top" alt="The app's icon.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">NCX-Core</h5>
|
||||
<p class="card-text">Our program to install more programs.</p>
|
||||
<a href="/programs/ncxcore" class="btn btn-primary">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="card">
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/rngtool.png" class="card-img-top" alt="The app's icon.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">RNGTool</h5>
|
||||
<p class="card-text">A macOS/iOS app that generates random numbers.</p>
|
||||
<a href="/programs/rngtool" class="btn btn-primary">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="card">
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/thevaultbasic.png" class="card-img-top" alt="The app's icon.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">theVaultBasic2.0</h5>
|
||||
<p class="card-text">A collection of C64 apps, similar to theVaultC.</p>
|
||||
<a href="/programs/thevaultbasic" class="btn btn-primary">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="card">
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/thevaultc.png" class="card-img-top" alt="The app's icon.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">theVaultC</h5>
|
||||
<p class="card-text">A collection of cross-platform C console apps.</p>
|
||||
<a href="/programs/thevaultc" class="btn btn-primary">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="card">
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/xware.png" class="card-img-top" alt="The app's icon.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">XWare</h5>
|
||||
<p class="card-text">Our small programs that can be downloaded in NCX-Core.</p>
|
||||
<a href="/programs/xware" class="btn btn-primary">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">
|
||||
<h3 class="text-center pt-3 pb-1">Archived</h3>
|
||||
<p class="text-center text-muted pb-1">Software that is no longer being worked on and does not recieve updates.</p>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="card">
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/csharpcollection.png" class="card-img-top" alt="The app's icon.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">CSharpCollection</h5>
|
||||
<p class="card-text">A collection of C# things made with WPF.</p>
|
||||
<a href="/programs/archived/csharpcollection" class="btn btn-primary">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="card">
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/ncxcore.png" class="card-img-top" alt="The app's icon.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">NCX-Core-Lite</h5>
|
||||
<p class="card-text">The start of a cross-platform CLI/GUI program to install more programs.</p>
|
||||
<a href="/programs/archived/ncxcorelite" class="btn btn-primary">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-3">
|
||||
<div class="card">
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/placeholder.svg" class="card-img-top" alt="The app's icon.">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">theVault</h5>
|
||||
<p class="card-text">A collection of cross-platform C# console apps.</p>
|
||||
<a href="/programs/archived/thevault" class="btn btn-primary">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,106 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>NCX-Core | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="NCX-Core">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="NCX-Core | rmc's site">
|
||||
<meta property="og:description" content="NCX-Core | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="container text-center">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/ncxcore.png" class="projectimg" style="width:256px;height:256px;padding-top:8px;" alt="The program's icon.">
|
||||
<div class="text-center pb-3">
|
||||
<h1>NCX-Core</h1>
|
||||
<p><b>By NinjaCheetah</b></p>
|
||||
<p><b>Platform(s): </b>Windows</p>
|
||||
<div class="dropdown pb-3">
|
||||
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Project Links
|
||||
</button>
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NinjaCheetah/AhCounter">View Source</a></li>
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/NCX-Core/releases/latest/download/NCXCore-Setup.msi">Download Installer</a></li>
|
||||
|
||||
</ul>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="container">
|
||||
<div class="accordion pb-3" id="accordionExample">
|
||||
<div class="accordion-item">
|
||||
<h2 class="accordion-header" id="headingOne">
|
||||
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
|
||||
Requirements
|
||||
</button>
|
||||
</h2>
|
||||
<div id="collapseOne" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
|
||||
<div class="accordion-body">
|
||||
You will need a 64-bit version of Windows 10 or later with the .NET 6.0 Runtime installed. (You can download that from <a href="https://dotnet.microsoft.com/download/dotnet-core/">here</a>.)
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h3>About</h3>
|
||||
<p>NCX-Core is an application that allows you to quickly download and update software by <a href="https://github.com/NinjaCheetah">NinjaCheetah</a> and other small developers. It now has features such as NCX-News, which will tell you news about new programs that have been added or updated. It was the first major app I made and was the first program to be rewritten with a WPF GUI on top of .NET Core, and then later .NET 5.</p>
|
||||
<h3>Applications</h3>
|
||||
<p>NCX-Core gets its applications from our store JSON file, simply named "XStore". That file is hosted <a href="https://github.com/NinjaCheetah/ncx-core-files">here</a>, and if you'd like to request an addition or change, feel free to open an issue there.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,114 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>RNGTool | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="RNGTool">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="RNGTool | rmc's site">
|
||||
<meta property="og:description" content="RNGTool | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://cdn.ncxprogramming.com/file/icon/rngtool.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="container text-center">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/rngtool.png" class="projectimg" style="width:256px;height:256px;padding-top:8px;" alt="The program's icon.">
|
||||
<div class="text-center pb-3">
|
||||
<h1>RNGTool</h1>
|
||||
<p><b>By NinjaCheetah</b></p>
|
||||
<p><b>Platform(s): </b>macOS, iOS, watchOS</p>
|
||||
<div class="dropdown pb-3">
|
||||
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Project Links
|
||||
</button>
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/RNGTool">View Source</a></li>
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/RNGTool/releases/latest/download/RNGTool-macOS.dmg">Download (macOS)</a></li>
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/RNGTool/releases/latest/download/RNGTool-iOS.ipa">Download (iOS)</a></li>
|
||||
|
||||
</ul>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="container">
|
||||
<div class="accordion pb-3" id="accordionExample">
|
||||
<div class="accordion-item">
|
||||
<h2 class="accordion-header" id="headingOne">
|
||||
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
|
||||
Requirements
|
||||
</button>
|
||||
</h2>
|
||||
<div id="collapseOne" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
|
||||
<div class="accordion-body">
|
||||
<p><b>macOS:</b> At least macOS 11.3</p>
|
||||
<p><b>iOS:</b> At least iOS 15 and a sideloading tool</p>
|
||||
<p><b>watchOS:</b> An up-to-date watch with an iPhone on at least iOS 15</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h3>About</h3>
|
||||
<p>RNGTool is a macOS, iOS and watchOS app used to generate random numbers through various customizable modes.</p>
|
||||
<p><b>Modes currently included:</b></p>
|
||||
<p>Number Mode: Generate a single random number using only a minimum and maximum number. The simplest way to generate numbers.</p>
|
||||
<p>Dice Mode: Roll up to 6 (2 on Apple Watch) 6-sided dice. Now featuring dice icons showing your rolls when using 6-sided dice.</p>
|
||||
<p>Card Mode: Draw 7 playing cards. You can optionally have the point values of each card displayed, with the Ace being either 1 or 11 points.</p>
|
||||
<p>Marble Mode: Generate up to 5 random letters using marbles.</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,91 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>theVaultBASIC2.0 | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="theVaultBASIC2.0">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="theVaultBASIC2.0 | rmc's site">
|
||||
<meta property="og:description" content="theVaultBASIC2.0 | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="container text-center">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/thevaultbasic.png" class="projectimg" style="width:256px;height:256px;padding-top:8px;" alt="The program's icon.">
|
||||
<div class="text-center pb-3">
|
||||
<h1>theVaultBASIC2.0</h1>
|
||||
<p><b>By IanSkinner1982</b></p>
|
||||
<p><b>Platform(s): </b>Commodore 64, and potentially other Commodore computers.</p>
|
||||
<div class="dropdown pb-3">
|
||||
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Project Links
|
||||
</button>
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/theVaultBASIC2.0">View Source</a></li>
|
||||
|
||||
</ul>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<h3>What is it?</h3>
|
||||
<p>theVaultBASIC2.0 is a collection of C64 apps written in BASIC ( possibly compatible with multiple other Commodore computers). They are a combination of simple games, utilites, and example/demo programs, all of which are stolen from theVaultC. </p>
|
||||
<h3>What's included?</h3>
|
||||
<p>There are currently 6 programs:</p>
|
||||
<p>GraphicStuffC, GuessMyNumberC, UnixTime, RainbowType, RNGTool, and WordGenerator</p>
|
||||
<h3>Running</h3>
|
||||
<p>I'm too lazy to copy and paste the instructions, so look <a href="https://github.com/NCX-Programming/theVaultBASIC2.0#running">here</a>.
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,97 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>theVaultC | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="theVaultC">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="theVaultC | rmc's site">
|
||||
<meta property="og:description" content="theVaultC | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="container text-center">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/thevaultc.png" class="projectimg" style="width:256px;height:256px;padding-top:8px;" alt="The program's icon.">
|
||||
<div class="text-center pb-3">
|
||||
<h1>theVaultC</h1>
|
||||
<p><b>By NinjaCheetah</b></p>
|
||||
<p><b>Platform(s): </b>Windows (partial), macOS, Linux</p>
|
||||
<div class="dropdown pb-3">
|
||||
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Project Links
|
||||
</button>
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/theVaultC">View Source</a></li>
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/theVaultC/releases">Releases</a></li>
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NCX-Programming/theVaultC/actions">Nightly Builds</a></li>
|
||||
|
||||
</ul>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<p>Download latest build for:</p>
|
||||
<p><a href="https://nightly.link/NCX-Programming/theVaultC/workflows/main/main/theVaultC-linux.zip">Linux</a> | <a href="https://nightly.link/NCX-Programming/theVaultC/workflows/main/main/theVaultC-macOS.zip">macOS</a> | <a href="https://nightly.link/NCX-Programming/theVaultC/workflows/main/main/theVaultC-windows.zip">Windows</a></p>
|
||||
<h3>What is it?</h3>
|
||||
<p>theVaultC is a collection of cross-platform (compatible with 32 and 64 bit Windows, Intel and ARM Macs, and Linux) console apps written in C. They are a combination of simple games, utilites, and example/demo programs. </p>
|
||||
<h3>What's included?</h3>
|
||||
<p>There are currently 6 programs:</p>
|
||||
<p>GraphicStuffC, GuessMyNumberC, UnixTime, RainbowType, RNGTool, and WordGenerator</p>
|
||||
<h3>Running</h3>
|
||||
<p>The instructions are larger than we'd like to include here, so for help running or compiling the programs, look <a href="https://github.com/NCX-Programming/theVaultC/#compiling-and-running">here</a>.
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -1,99 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>XWare | rmc's site</title>
|
||||
<link rel="icon" type="image/png" href="/icon.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
||||
<link rel="alternate" type="application/atom+xml" href="https://ianskinner1982.github.io/feed.xml">
|
||||
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<meta property="og:title" content="XWare">
|
||||
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta name="description" content="XWare | rmc's site">
|
||||
<meta property="og:description" content="XWare | rmc's site">
|
||||
<link rel="canonical" href="https://ianskinner1982.github.io">
|
||||
<meta property="og:url" content="https://ianskinner1982.github.io">
|
||||
<meta property="og:site_name" content="rmc's site">
|
||||
|
||||
<meta property="og:image" content="https://ianskinner1982.github.io/icon.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
|
||||
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">rmc's site</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarText">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<!--<li class="nav-item">
|
||||
<a class="nav-link" href="/programs/">Programs</a>
|
||||
</li>-->
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/dsidev">DS Stuff</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<div class="container text-center">
|
||||
|
||||
<img src="https://cdn.ncxprogramming.com/file/icon/xware.png" class="projectimg" style="width:256px;height:256px;padding-top:8px;" alt="The program's icon.">
|
||||
<div class="text-center pb-3">
|
||||
<h1>XWare</h1>
|
||||
<p><b>By NinjaCheetah</b></p>
|
||||
<p><b>Platform(s): </b>Windows</p>
|
||||
<div class="dropdown pb-3">
|
||||
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Project Links
|
||||
</button>
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NinjaCheetah/NCX-XWare">View Source</a></li>
|
||||
|
||||
<li><a class="dropdown-item" href="https://github.com/NinjaCheetah/NCX-XWare/releases">Releases</a></li>
|
||||
|
||||
</ul>
|
||||
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
||||
<h3>About</h3>
|
||||
<p>XWare is our small programs that can be downloaded in NCX-Core and are meant to interact with it in some way.</p>
|
||||
<h3>How do I install XWare programs?</h3>
|
||||
<p><u>Method 1 (Recommended)</u></p>
|
||||
<p>Go to the XWare page in NCX-Core, choose a program, and click the download button. It will be automatically installed by NCX-Core.</p>
|
||||
<p><u>Method 2</u></p>
|
||||
<p>You can also download the .zip archive for a given program (either from the top of the page or from GitHub) and extract it.</p>
|
||||
<h3>Available Programs</h3>
|
||||
<p>The current XWare programs are:</p>
|
||||
<p>NCX-News+, an app to read full news updates about NCX software, all written by <a href="/members/ianskinner1982">IanSkinner1982</a>.</p>
|
||||
<p>NCX-Core Updater, an app to update NCX-Core to the newest release or beta version.</p>
|
||||
<h3>Requirements</h3>
|
||||
<p>You will need a 64-bit version of Windows 10 or newer with the .NET 5.0 Runtime installed. (You can download that from <a href="https://dotnet.microsoft.com/download/dotnet-core/">here</a>.)</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<footer>
|
||||
<footer class="bg-light text-lg-start border-top align-items-center text-center" style="text-align:center;">
|
||||
<div class="text-center p-3 align-items-center" style="background-color: rgba(0, 0, 0, 0.25);">
|
||||
Copyright © 2021-<span id="footerDate"></span> Ian M. Skinner <a href="/contactus" class="text-reset fw-bold">Contact me.</a>
|
||||
<br>
|
||||
<span class="nav col-md-4 list-unstyled d-inline"><a href="https://github.com/IanSkinner1982"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/github-dark.svg" alt=""></a> <a href="https://discord.gg/XZxxZngwDQ"><img class="bi" width="24" height="24" src="https://cdn.ncxprogramming.com/file/image/navbar/discord-dark.svg" alt=""></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</footer>
|
||||
</html>
|
||||
@ -25,15 +25,9 @@
|
||||
<lastmod>2023-02-05T00:00:00-05:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/programs/ahcounter.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/contactus.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/programs/archived/csharpcollection.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/dsidev/guide/ds-prototype-firmware.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
@ -73,10 +67,7 @@
|
||||
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_04_index.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/members/ianskinner1982.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/members/</loc>
|
||||
<loc>http://localhost:4000/dsidev/fwriter.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/</loc>
|
||||
@ -91,9 +82,6 @@
|
||||
<loc>http://localhost:4000/dsidev/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/programs/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/</loc>
|
||||
</url>
|
||||
<url>
|
||||
@ -106,15 +94,6 @@
|
||||
<loc>http://localhost:4000/dsidev/nandsweeper.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/programs/ncxcore.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/programs/archived/ncxcorelite.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/members/ninjacheetah.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/dsidev/nitroeva.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
@ -127,9 +106,6 @@
|
||||
<loc>http://localhost:4000/dsidev/pictochat.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/programs/rngtool.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/dsidev/sd2photo.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
@ -148,24 +124,12 @@
|
||||
<loc>http://localhost:4000/dsidev/tcl-2.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/programs/archived/thevault.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/programs/thevaultbasic.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/programs/thevaultc.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/dsidev/twlnmenu.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/dsidev/wifiicon.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/programs/xware.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/counter.html</loc>
|
||||
<lastmod>2023-02-15T19:16:50-05:00</lastmod>
|
||||
</url>
|
||||
@ -191,7 +155,7 @@
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_u.html</loc>
|
||||
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
|
||||
<lastmod>2023-02-17T16:51:34-05:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/dsidev/dsishop/NCL/index_d.html</loc>
|
||||
@ -298,6 +262,10 @@
|
||||
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/googlecff76619519c1862.html</loc>
|
||||
<lastmod>2023-02-17T15:53:46-05:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/index1.html</loc>
|
||||
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
|
||||
</url>
|
||||
@ -321,20 +289,4 @@
|
||||
<loc>http://localhost:4000/pages/misc/studentportal_v2.html</loc>
|
||||
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/pages/programs/cc64.html</loc>
|
||||
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/pages/programs/</loc>
|
||||
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/vice.js_files/tl64-nightly.html</loc>
|
||||
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/vice.js_files/tl64.html</loc>
|
||||
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
|
||||
</url>
|
||||
</urlset>
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,5 +1,12 @@
|
||||
<head>
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
body {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
@ -1,4 +1,11 @@
|
||||
/* Common CSS */
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
h1
|
||||
{
|
||||
font-size: 16px;
|
||||
@ -29,4 +36,4 @@ ul
|
||||
#up_url, #down_url
|
||||
{
|
||||
width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
/* ---- common style ------------------------------- */
|
||||
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
body {
|
||||
margin : 0 0 0 0;
|
||||
padding : 0;
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
/* ---- common style ------------------------------- */
|
||||
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
body {
|
||||
font-size : 12px;
|
||||
color : #555555;
|
||||
|
||||
@ -1,4 +1,11 @@
|
||||
/* Common CSS */
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
h1
|
||||
{
|
||||
font-size: 16px;
|
||||
@ -35,4 +42,4 @@ ul
|
||||
{
|
||||
text-align: right;
|
||||
background-color: #CCC;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,4 +1,11 @@
|
||||
/* Common CSS */
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
h1
|
||||
{
|
||||
font-size: 16px;
|
||||
|
||||
@ -1,4 +1,11 @@
|
||||
/* Common CSS */
|
||||
@font-face {
|
||||
font-family: dsifont;
|
||||
src: url(/assets/dsi/nintendo_NTLGDB_001.ttf);
|
||||
}
|
||||
html * {
|
||||
font-family: dsifont;
|
||||
}
|
||||
h1
|
||||
{
|
||||
font-size: 16px;
|
||||
|
||||
108
dsidev/fwriter.html
Normal file
108
dsidev/fwriter.html
Normal file
@ -0,0 +1,108 @@
|
||||
---
|
||||
title: F-WRITER
|
||||
layout: dsiware
|
||||
---
|
||||
<style>
|
||||
.float-container {
|
||||
border: 0px solid #fff;
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
.float-child1 {
|
||||
width: 40%;
|
||||
height: 40%;
|
||||
float: left;
|
||||
padding: 1vw;
|
||||
}
|
||||
|
||||
.float-child2 {
|
||||
width: 20%;
|
||||
height: 40%;
|
||||
float: right;
|
||||
padding: 1vw;
|
||||
}
|
||||
</style>
|
||||
<div class="float-container">
|
||||
<div class="float-child1">
|
||||
<div class="container">
|
||||
<div class="imageOne image">
|
||||
<img src="/assets/dsi/widebarnoprompt_u.png" style="width:75vw;">
|
||||
<img src="/assets/dsi/widepromptnobar.png" style="width:75vw;height:240vw;">
|
||||
<img src="/assets/dsi/widebarnoprompt_d.png" style="width:75vw;">
|
||||
</div>
|
||||
<div class="othertext" style="width:73.5vw;">
|
||||
<h1>F-WRITER</h1>
|
||||
F-WRITER is used to flash Korean firmware onto NDS lites in the factories. This program features a UI similar to that of <a href="/dsidev/nitroeva.html">NTR Aging/Nitro EVA</a>. It comes with 4 major tests:
|
||||
<br><code> - SOUND</code>, Plays some simple sound effects and music to test the speakers
|
||||
<br><code> - NVRAM</code>, Reads and writes system settings
|
||||
<br><code> - PMIC</code>, Tests power and backlight controls
|
||||
<br><code> - IPL2 REWRITE</code>, Flashes Korean firmware to the DS lite
|
||||
<br><code> - USER INFO SET</code>, Sets the system settings to factory
|
||||
<br><code> - NTR CONFIG</code>, Displays the current system settings
|
||||
<br><br>This also comes with the standard NTR Aging tests like:
|
||||
<br><code> - Reception</code>
|
||||
<br><code> - COMM TEST</code>
|
||||
<br><code> - Port Checker</code>
|
||||
<br><code> - ROM HEADER</code>, Display cartridge header info
|
||||
|
||||
<h2>2008/12/01:</h2>
|
||||
This later version has had nearly feature stripped, with the exception of <code>SPEAKER TESTER</code>. It does not have the NTR Aging styled menu or any of the tests mentioned above.
|
||||
|
||||
<div style="text-align:center;"><h1>Screenshots:</h1>
|
||||
<div style="float: left;width: 35vw;"><img src="/assets/dsi/screenshots/Mic Tester/Mic Tester 20081201 - Speaker Checker.png" style="width:30vw;filter:drop-shadow(0.25rem 0.25rem 0.5rem #000000);padding-bottom:2vw;"></div>
|
||||
<div style="float: left;width: 35vw;"><img src="/assets/dsi/screenshots/Mic Tester/Mic Tester 20070507_v4.0 - Speaker Checker.png" style="width:30vw;filter:drop-shadow(0.25rem 0.25rem 0.5rem #000000);padding-bottom:2vw;"></div>
|
||||
<div style="float: left;width: 35vw;"><img src="/assets/dsi/screenshots/Mic Tester/Mic Tester 20070507_v4.0 - Speaker Checker START.png" style="width:30vw;filter:drop-shadow(0.25rem 0.25rem 0.5rem #000000);padding-bottom:2vw;"></div>
|
||||
<div style="float: left;width: 35vw;"><img src="/assets/dsi/screenshots/Mic Tester/Mic Tester 20070507_v4.0 - Speaker Checker OK.png" style="width:30vw;filter:drop-shadow(0.25rem 0.25rem 0.5rem #000000);padding-bottom:2vw;"></div>
|
||||
<div style="float: left;width: 35vw;"><img src="/assets/dsi/screenshots/Mic Tester/Mic Tester 20070507_v4.0 - Mic Test SWITCH PROMPT.png" style="width:30vw;filter:drop-shadow(0.25rem 0.25rem 0.5rem #000000);padding-bottom:2vw;"></div>
|
||||
<div style="float: left;width: 35vw;"><img src="/assets/dsi/screenshots/Mic Tester/Mic Tester 20070507_v4.0 - Sound Test.png" style="width:30vw;filter:drop-shadow(0.25rem 0.25rem 0.5rem #000000);padding-bottom:2vw;"></div>
|
||||
<div style="float: left;width: 35vw;"><img src="/assets/dsi/screenshots/Mic Tester/Mic Tester 20070507_v4.0 - Mic Test NG.png" style="width:30vw;filter:drop-shadow(0.25rem 0.25rem 0.5rem #000000);padding-bottom:2vw;"></div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="float-child2">
|
||||
<div class="container">
|
||||
<div class="imageOne image">
|
||||
<img src="/assets/dsi/thinbarnoprompt_u.png" style="width:20vw;">
|
||||
<img src="/assets/dsi/thinpromptnobar.png" style="width:20vw;height:240vw;">
|
||||
<img src="/assets/dsi/thinbarnoprompt_d.png" style="width:20vw;">
|
||||
</div>
|
||||
<div class="imageTwo">
|
||||
<ul class="homeimg">
|
||||
<div class="container">
|
||||
<div class="imageTwo image2">
|
||||
<img src="/assets/dsi/homemenu.png" class="homeimg">
|
||||
</div>
|
||||
<div class="imageThree image3">
|
||||
<div class="hometext" style="padding-top: 2vw;padding-left: 2.9vw;">NINTENDO DS™<br>Demonstration</div>
|
||||
<!--padding-top 2vw and 2.7vw for two and one line banners, respectively-->
|
||||
<div class="imageThree image3 homeicon">
|
||||
<img src="/assets/dsi/icon/default.png" width="13%" height="13%">
|
||||
</div>
|
||||
</div>
|
||||
<div class="othertext" style="text-align:left;padding-top:25%;margin-left:-15%;">
|
||||
<p>
|
||||
<b>Source:</b><div style="font-size: 40px;font-size: 1vw;">Unknown: Retrieved from forestofillusion website. No information on origin was released.</div><br>
|
||||
<b>Downloads:</b>
|
||||
<table class="othertexts" style="solid; width: 100%;font-size: 3px;font-size: 1vw;">
|
||||
<tr>
|
||||
<th><br>SRL</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="https://archive.org/download/rmc-dsi/Mic%20Tester/Mic%20Tester%20v4.0.nds">2007/05/07 (v4)</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="https://archive.org/download/rmc-dsi/Mic%20Tester/Mic%20Tester%2020081201.nds">2008/12/01</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</p>
|
||||
</div>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -43,7 +43,7 @@ layout: dsiware
|
||||
<br><code> - Reception</code>
|
||||
<br><code> - COMM TEST</code>
|
||||
<br><code> - Port Checker</code>
|
||||
<br><code> - ROM HEADER</code>
|
||||
<br><code> - ROM HEADER</code>, Display cartridge header info
|
||||
|
||||
<h2>2008/12/01:</h2>
|
||||
This later version has had nearly feature stripped, with the exception of <code>SPEAKER TESTER</code>. It does not have the NTR Aging styled menu or any of the tests mentioned above.
|
||||
@ -84,7 +84,7 @@ layout: dsiware
|
||||
</div>
|
||||
<div class="othertext" style="text-align:left;padding-top:25%;margin-left:-15%;">
|
||||
<p>
|
||||
<b>Source:</b><div style="font-size: 40px;font-size: 1vw;">Unknown: Retrieved from forestofillusion website as unlisted upload. No proper information was released.</div><br>
|
||||
<b>Source:</b><div style="font-size: 40px;font-size: 1vw;">Unknown: Retrieved from forestofillusion website. No information on origin was released.</div><br>
|
||||
<b>Downloads:</b>
|
||||
<table class="othertexts" style="solid; width: 100%;font-size: 3px;font-size: 1vw;">
|
||||
<tr>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user