Added Mic Tester

This commit is contained in:
IanSkinner1982 2023-02-12 23:11:03 -05:00
parent 7922dd3a6a
commit d9a15fb1b1
15 changed files with 225 additions and 70 deletions

View File

@ -1,68 +1,75 @@
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
addressable (2.8.0) addressable (2.8.1)
public_suffix (>= 2.0.2, < 5.0) public_suffix (>= 2.0.2, < 6.0)
colorator (1.1.0) colorator (1.1.0)
concurrent-ruby (1.1.9) concurrent-ruby (1.2.0)
em-websocket (0.5.3) em-websocket (0.5.3)
eventmachine (>= 0.12.9) eventmachine (>= 0.12.9)
http_parser.rb (~> 0) http_parser.rb (~> 0)
eventmachine (1.2.7) eventmachine (1.2.7)
ffi (1.15.5) ffi (1.15.5)
forwardable-extended (2.6.0) forwardable-extended (2.6.0)
google-protobuf (3.21.12-x86_64-darwin)
google-protobuf (3.21.12-x86_64-linux)
http_parser.rb (0.8.0) http_parser.rb (0.8.0)
i18n (1.9.1) i18n (1.12.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
jekyll (4.2.1) jekyll (4.3.2)
addressable (~> 2.4) addressable (~> 2.4)
colorator (~> 1.0) colorator (~> 1.0)
em-websocket (~> 0.5) em-websocket (~> 0.5)
i18n (~> 1.0) i18n (~> 1.0)
jekyll-sass-converter (~> 2.0) jekyll-sass-converter (>= 2.0, < 4.0)
jekyll-watch (~> 2.0) jekyll-watch (~> 2.0)
kramdown (~> 2.3) kramdown (~> 2.3, >= 2.3.1)
kramdown-parser-gfm (~> 1.0) kramdown-parser-gfm (~> 1.0)
liquid (~> 4.0) liquid (~> 4.0)
mercenary (~> 0.4.0) mercenary (>= 0.3.6, < 0.5)
pathutil (~> 0.9) pathutil (~> 0.9)
rouge (~> 3.0) rouge (>= 3.0, < 5.0)
safe_yaml (~> 1.0) safe_yaml (~> 1.0)
terminal-table (~> 2.0) terminal-table (>= 1.8, < 4.0)
jekyll-feed (0.16.0) webrick (~> 1.7)
jekyll-feed (0.17.0)
jekyll (>= 3.7, < 5.0) jekyll (>= 3.7, < 5.0)
jekyll-sass-converter (2.1.0) jekyll-sass-converter (3.0.0)
sassc (> 2.0.1, < 3.0) sass-embedded (~> 1.54)
jekyll-seo-tag (2.7.1) jekyll-seo-tag (2.8.0)
jekyll (>= 3.8, < 5.0) jekyll (>= 3.8, < 5.0)
jekyll-sitemap (1.4.0) jekyll-sitemap (1.4.0)
jekyll (>= 3.7, < 5.0) jekyll (>= 3.7, < 5.0)
jekyll-watch (2.2.1) jekyll-watch (2.2.1)
listen (~> 3.0) listen (~> 3.0)
kramdown (2.3.1) kramdown (2.4.0)
rexml rexml
kramdown-parser-gfm (1.1.0) kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0) kramdown (~> 2.0)
liquid (4.0.3) liquid (4.0.4)
listen (3.7.1) listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3) rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10) rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.4.0) mercenary (0.4.0)
pathutil (0.16.2) pathutil (0.16.2)
forwardable-extended (~> 2.6) forwardable-extended (~> 2.6)
public_suffix (4.0.6) public_suffix (5.0.1)
rb-fsevent (0.11.0) rb-fsevent (0.11.2)
rb-inotify (0.10.1) rb-inotify (0.10.1)
ffi (~> 1.0) ffi (~> 1.0)
rexml (3.2.5) rexml (3.2.5)
rouge (3.27.0) rouge (4.1.0)
safe_yaml (1.0.5) safe_yaml (1.0.5)
sassc (2.4.0) sass-embedded (1.58.0-arm64-darwin)
ffi (~> 1.9) google-protobuf (~> 3.21)
terminal-table (2.0.0) sass-embedded (1.58.0-x86_64-darwin)
unicode-display_width (~> 1.1, >= 1.1.1) google-protobuf (~> 3.21)
unicode-display_width (1.8.0) sass-embedded (1.58.0-x86_64-linux-gnu)
webrick (1.7.0) google-protobuf (~> 3.21)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
unicode-display_width (2.4.2)
webrick (1.8.1)
PLATFORMS PLATFORMS
universal-darwin-21 universal-darwin-21

View File

@ -6,6 +6,10 @@
font-family: dsifont-bios; font-family: dsifont-bios;
src: url(/assets/dsi/nintendo-DS-BIOS.ttf); src: url(/assets/dsi/nintendo-DS-BIOS.ttf);
} }
@font-face {
font-family: dsifont-special;
src: url(/assets/dsi/NITROIPL_Gaiji.ttf);
}
body { body {
font-family: dsifont; font-family: dsifont;
} }
@ -13,3 +17,7 @@ code {
font-family: dsifont-bios; font-family: dsifont-bios;
font-size: 1.5vw; font-size: 1.5vw;
} }
special {
font-family: dsifont-special;
font-size: 1.5vw;
}

View File

@ -320,6 +320,8 @@ body {
<a href="/dsidev/photochecker.html">PhotoChecker</a><br> <a href="/dsidev/photochecker.html">PhotoChecker</a><br>
<a href="/dsidev/soundplayer.html">NAND SoundPlayer</a><br> <a href="/dsidev/soundplayer.html">NAND SoundPlayer</a><br>
<a href="/dsidev/nandsweeper.html">Nand Sweeper</a><br> <a href="/dsidev/nandsweeper.html">Nand Sweeper</a><br>
<a href="/dsidev/softkeyboard.html">Soft Keyboard</a><br>
<a href="/dsidev/mictester.html">Mic Tester</a><br>
<div align='center'><a href='https://www.free-website-hit-counter.com'><img src='https://www.free-website-hit-counter.com/c.php?d=9&id=141120&s=39' border='0' alt='Free Website Hit Counter'></a><br / ><small><a href='https://www.free-website-hit-counter.com' title="Free Website Hit Counter">(page hits)</a></small></div> <div align='center'><a href='https://www.free-website-hit-counter.com'><img src='https://www.free-website-hit-counter.com/c.php?d=9&id=141120&s=39' border='0' alt='Free Website Hit Counter'></a><br / ><small><a href='https://www.free-website-hit-counter.com' title="Free Website Hit Counter">(page hits)</a></small></div>

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.2.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2022-11-20T16:19:06-05:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">rmcs site</title><entry><title type="html">101 Mini Golf World - Another bland DSiWare</title><link href="http://localhost:4000/2022/08/26/101-minigolf-world.html" rel="alternate" type="text/html" title="101 Mini Golf World - Another bland DSiWare" /><published>2022-08-26T00:00:00-04:00</published><updated>2022-08-26T00:00:00-04:00</updated><id>http://localhost:4000/2022/08/26/101-minigolf-world</id><content type="html" xml:base="http://localhost:4000/2022/08/26/101-minigolf-world.html"><![CDATA[<p>101 MiniGolf World by Teyon is a golf game for the DSi. It's nothing special as far as DSiWare goes. <?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-12T23:09:15-05:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">rmcs site</title><entry><title type="html">101 Mini Golf World - Another bland DSiWare</title><link href="http://localhost:4000/2022/08/26/101-minigolf-world.html" rel="alternate" type="text/html" title="101 Mini Golf World - Another bland DSiWare" /><published>2022-08-26T00:00:00-04:00</published><updated>2022-08-26T00:00:00-04:00</updated><id>http://localhost:4000/2022/08/26/101-minigolf-world</id><content type="html" xml:base="http://localhost:4000/2022/08/26/101-minigolf-world.html"><![CDATA[<p>101 MiniGolf World by Teyon is a golf game for the DSi. It's nothing special as far as DSiWare goes.
<br><br> <br><br>
The game starts up with a nice tutorial on how to play. It goes over all the controls in about 20 seconds and doesn't leave you confused. The game starts up with a nice tutorial on how to play. It goes over all the controls in about 20 seconds and doesn't leave you confused.
<br> <br>

View File

@ -181,7 +181,7 @@ function over_image(parm_name)
<tbody><tr> <tbody><tr>
<td colspan="3"> <td colspan="3">
<map name="IMapEXIT"> <map name="IMapEXIT">
<area href="https://schoolapps2.tvdsb.ca/students/portal_secondary/exit.asp" shape="polygon" coords="748, 50, 708, 53, 680, 58, 655, 68, 648, 75, 748, 75" onmouseover="over_image(&#39;img0&#39;);" onmouseout="off_image(&#39;img0&#39;)"></map> <area href="/pages/misc/studentportal_login.html " shape="polygon" coords="748, 50, 708, 53, 680, 58, 655, 68, 648, 75, 748, 75" onmouseover="over_image(&#39;img0&#39;);" onmouseout="off_image(&#39;img0&#39;)"></map>
<img border="0" src="/assets/studentportal/studentportal2.jpg" usemap="#IMapEXIT" width="750" height="75" name="img0"> <img border="0" src="/assets/studentportal/studentportal2.jpg" usemap="#IMapEXIT" width="750" height="75" name="img0">
</td> </td>
@ -248,7 +248,7 @@ function over_image(parm_name)
Requests</a><br> Requests</a><br>
<!-- <!--
<A href="https://apps2.tvdsb.on.ca/employees/teacher_evaluation/srvt_std_welcome.asp?student_no=339542524&code=2170&k=fbddb23ee6358e6ec4cf87askinian524">Evaluate My Teachers</a><br> <A href="https://apps2.tvdsb.on.ca/employees/teacher_evaluation/srvt_std_welcome.asp">Evaluate My Teachers</a><br>
--> -->
</td> </td>
@ -261,7 +261,7 @@ function over_image(parm_name)
/* /*
Pausing updown message scroller- Pausing updown message scroller-
Last updated: 99/07/05 (Bugs fixed, ability to specify background image for scroller) Last updated: 99/07/05 (Bugs fixed, ability to specify background image for scroller)
© Dynamic Drive (www.dynamicdrive.com) © Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions, For full source code, installation instructions,
100's more DHTML scripts, and Terms Of 100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com Use, visit dynamicdrive.com
@ -571,4 +571,4 @@ if (document.all) {
</span> </span>
</body></html> </body></html>

View File

@ -22,6 +22,9 @@
<loc>http://localhost:4000/programs/archived/csharpcollection.html</loc> <loc>http://localhost:4000/programs/archived/csharpcollection.html</loc>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/guide/ds-prototype-firmware.html</loc>
</url>
<url>
<loc>http://localhost:4000/dsidev/dsgamecardtosd.html</loc> <loc>http://localhost:4000/dsidev/dsgamecardtosd.html</loc>
</url> </url>
<url> <url>
@ -61,6 +64,9 @@
<loc>http://localhost:4000/members/ianskinner1982.html</loc> <loc>http://localhost:4000/members/ianskinner1982.html</loc>
</url> </url>
<url> <url>
<loc>http://localhost:4000/members/</loc>
</url>
<url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/</loc>
</url> </url>
<url> <url>
@ -76,10 +82,10 @@
<loc>http://localhost:4000/programs/</loc> <loc>http://localhost:4000/programs/</loc>
</url> </url>
<url> <url>
<loc>http://localhost:4000/members/</loc> <loc>http://localhost:4000/</loc>
</url> </url>
<url> <url>
<loc>http://localhost:4000/</loc> <loc>http://localhost:4000/dsidev/mictester.html</loc>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/nandfiler.html</loc> <loc>http://localhost:4000/dsidev/nandfiler.html</loc>
@ -115,6 +121,9 @@
<loc>http://localhost:4000/dsidev/settings.html</loc> <loc>http://localhost:4000/dsidev/settings.html</loc>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/softkeyboard.html</loc>
</url>
<url>
<loc>http://localhost:4000/dsidev/soundplayer.html</loc> <loc>http://localhost:4000/dsidev/soundplayer.html</loc>
</url> </url>
<url> <url>
@ -143,150 +152,170 @@
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_deviceInfo_d.html</loc> <loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_deviceInfo_d.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_deviceInfo_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_deviceInfo_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_download.html</loc> <loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_download.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_example.html</loc> <loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_example.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_point.html</loc> <loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_point.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/NCL/ec/ec_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/NCL/index_d.html</loc> <loc>http://localhost:4000/dsidev/dsishop/NCL/index_d.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/NCL/index_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/NCL/index_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/NCL/tools/ShowErrorPage.html</loc> <loc>http://localhost:4000/dsidev/dsishop/NCL/tools/ShowErrorPage.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/ec/ec_deviceInfo_d.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/ec/ec_deviceInfo_d.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/ec/ec_deviceInfo_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/ec/ec_deviceInfo_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/ec/ec_example.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/ec/ec_example.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/ec/ec_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/ec/ec_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_01_d.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_01_d.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_01_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_01_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_02_d.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_02_d.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_02_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_02_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_03_d.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_03_d.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_03_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_03_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_04_d.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_04_d.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_04_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/fontlist_04_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/index_d.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/index_d.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/index_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/font_check/shopmock/index_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/index_d.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/index_d.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/index_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/index_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/SMC/tools/ShowErrorPage.html</loc> <loc>http://localhost:4000/dsidev/dsishop/SMC/tools/ShowErrorPage.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/startup_d.html</loc> <loc>http://localhost:4000/dsidev/dsishop/startup_d.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/dsishop/startup_u.html</loc> <loc>http://localhost:4000/dsidev/dsishop/startup_u.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/dsidev/nsfw.html</loc>
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/dsidev/tad_ds-homebrew.html</loc>
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/dsidev/twljumpchecker.html</loc> <loc>http://localhost:4000/dsidev/twljumpchecker.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/gaming/htmls/DEBUG/startup.html</loc> <loc>http://localhost:4000/gaming/htmls/DEBUG/startup.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/index1.html</loc> <loc>http://localhost:4000/index1.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/pages/dsiware/</loc> <loc>http://localhost:4000/pages/dsiware/</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/pages/misc/studentportal.html</loc> <loc>http://localhost:4000/pages/misc/studentportal.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/pages/misc/studentportal_login.html</loc>
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/pages/misc/studentportal_login_v2.html</loc>
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/pages/misc/studentportal_v2.html</loc>
<lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/pages/programs/cc64.html</loc> <loc>http://localhost:4000/pages/programs/cc64.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/pages/programs/</loc> <loc>http://localhost:4000/pages/programs/</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/vice.js_files/tl64-nightly.html</loc> <loc>http://localhost:4000/vice.js_files/tl64-nightly.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
<url> <url>
<loc>http://localhost:4000/vice.js_files/tl64.html</loc> <loc>http://localhost:4000/vice.js_files/tl64.html</loc>
<lastmod>2022-11-16T18:03:55-05:00</lastmod> <lastmod>2023-02-12T19:00:15-05:00</lastmod>
</url> </url>
</urlset> </urlset>

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -38,6 +38,7 @@ layout: dsiware
<a href="/dsidev/soundplayer.html">NAND SoundPlayer</a><br> <a href="/dsidev/soundplayer.html">NAND SoundPlayer</a><br>
<a href="/dsidev/nandsweeper.html">Nand Sweeper</a><br> <a href="/dsidev/nandsweeper.html">Nand Sweeper</a><br>
<a href="/dsidev/softkeyboard.html">Soft Keyboard</a><br> <a href="/dsidev/softkeyboard.html">Soft Keyboard</a><br>
<a href="/dsidev/mictester.html">Mic Tester</a><br>
<div align='center'><a href='https://www.free-website-hit-counter.com'><img src='https://www.free-website-hit-counter.com/c.php?d=9&id=141120&s=39' border='0' alt='Free Website Hit Counter'></a><br / ><small><a href='https://www.free-website-hit-counter.com' title="Free Website Hit Counter">(page hits)</a></small></div> <div align='center'><a href='https://www.free-website-hit-counter.com'><img src='https://www.free-website-hit-counter.com/c.php?d=9&id=141120&s=39' border='0' alt='Free Website Hit Counter'></a><br / ><small><a href='https://www.free-website-hit-counter.com' title="Free Website Hit Counter">(page hits)</a></small></div>

108
dsidev/mictester.html Normal file
View File

@ -0,0 +1,108 @@
---
title: Mic Tester
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>Mic Tester</h1>
Mic Tester appears to be a factory testing app for the DS microphone and speakers. As of 2023/02/06, there are two known versions of Mic Tester.
<h2>2007/05/07 (v4):</h2>
This version uses a UI similar to that of NTR Aging. It comes with 4 major tests:
<br><code> - SOUND</code>, Plays some simple sound effects and music to test the speakers
<br><code> - MIC</code>, A few microphone tests. One is the <code>SAMPLING DATA GRAPH</code>, which displays a real time graph of the mic input.
<br><code> - MIC CHECKER</code>, Appears to be another microphone test, though it's impossible to use as it requires special factory hardware
<br><code> - SPEAKER TESTER</code>, Plays a tone in the left and right speakers to make sure they're working
<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>
<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 as unlisted upload. No proper information 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>