flatten the file structure for easier access

This commit is contained in:
Greg Gauthier 2025-01-20 11:19:22 +00:00
parent 77fb1690e0
commit 439136f757
26 changed files with 15 additions and 10 deletions

View File

@ -6,9 +6,9 @@
<p></p> <p></p>
</div> </div>
<div class="column-tabular full-right"> <div class="column-tabular full-right">
<p><a href="./entries/various-atari-basic.md">Various Atari Basic Projects</a></p> <p><a href="entries/various-atari-basic.md">Various Atari Basic Projects</a></p>
<p><a href="./entries/assembler-for-beginners.md">Atari 130XE Assembler For Beginners Series</a></p> <p><a href="entries/assembler-for-beginners.md">Atari 130XE Assembler For Beginners Series</a></p>
<p><a href="./entries/Action-language-walkthrough.md">Atari Action! Language Walk-Through</a></p> <p><a href="entries/Action-language-walkthrough.md">Atari Action! Language Walk-Through</a></p>
</div> </div>
</div> </div>

View File

@ -1,7 +1,7 @@
# A Linux Update # A Linux Update
**25 June 2022** **25 June 2022**
Back in November, I made [a blog post](../entries/the-linux-alternative.md) explaining that I would be moving to a linux-only "lifestyle", as it were, for both liesure and independent creative work in my personal life (though, for my "official" job, I am yet chained to a Mac laptop). It's been a little over six months now, and so I figure it's time for an update. Back in November, I made [a blog post](the-linux-alternative.md) explaining that I would be moving to a linux-only "lifestyle", as it were, for both liesure and independent creative work in my personal life (though, for my "official" job, I am yet chained to a Mac laptop). It's been a little over six months now, and so I figure it's time for an update.
While I am indeed now 100% linux on both my desktop and my laptop, I have diverged quite a bit from the plan of my original post. Sometimes, out of necessity, and sometimes because of interesting discoveries that have made life quite a bit more entertaining on linux than I thought it would be at first. I'll break down the main differences here, and discuss them as we proceed. While I am indeed now 100% linux on both my desktop and my laptop, I have diverged quite a bit from the plan of my original post. Sometimes, out of necessity, and sometimes because of interesting discoveries that have made life quite a bit more entertaining on linux than I thought it would be at first. I'll break down the main differences here, and discuss them as we proceed.

View File

@ -12,7 +12,12 @@ echo "Rsync content files"
echo "-------------------" echo "-------------------"
rsync --super -ahr -e ssh ./txt/* gmgauthier@plato:/var/www/oldcomputernerd.com/txt/ rsync --super -ahr -e ssh ./txt/* gmgauthier@plato:/var/www/oldcomputernerd.com/txt/
rsync --super -ahr -e ssh ./htm/* gmgauthier@plato:/var/www/oldcomputernerd.com/htm/ rsync --super -ahr -e ssh ./htm/* gmgauthier@plato:/var/www/oldcomputernerd.com/htm/
rsync --super -ahr -e ssh ./md/* gmgauthier@plato:/var/www/oldcomputernerd.com/md/ rsync --super -ahr -e ssh ./Atari/* gmgauthier@plato:/var/www/oldcomputernerd.com/Atari/
rsync --super -ahr -e ssh ./MVS/* gmgauthier@plato:/var/www/oldcomputernerd.com/MVS/
rsync --super -ahr -e ssh ./DOS/* gmgauthier@plato:/var/www/oldcomputernerd.com/DOS/
rsync --super -ahr -e ssh ./Linux/* gmgauthier@plato:/var/www/oldcomputernerd.com/Linux/
rsync --super -ahr -e ssh ./Blog/* gmgauthier@plato:/var/www/oldcomputernerd.com/Blog/
rsync --super -ahr -e ssh ./JUNK/* gmgauthier@plato:/var/www/oldcomputernerd.com/JUNK/
echo "-------------------" echo "-------------------"
echo "Rsync root files" echo "Rsync root files"

View File

@ -11,19 +11,19 @@
<nav style="color:#fdd461;left:70%;text-align:center;float:none;position:relative;top:20%;transform:translate(-50%, -50%);"> <nav style="color:#fdd461;left:70%;text-align:center;float:none;position:relative;top:20%;transform:translate(-50%, -50%);">
<div class="row"> <div class="row">
<div class="box"> <div class="box">
<a href="/md/Linux/">Linux</a> <a href="/Linux/">Linux</a>
</div> </div>
<div class="box"> <div class="box">
<a href="/md/Atari/">Atari</a> <a href="/Atari/">Atari</a>
</div> </div>
<div class="box"> <div class="box">
<a href="/md/MVS/">MVS</a> <a href="/MVS/">MVS</a>
</div> </div>
<div class="box"> <div class="box">
<a href="/md/DOS/">DOS</a> <a href="/DOS/">DOS</a>
</div> </div>
<div class="box"> <div class="box">
<a href="/md/Blog/">Blog</a> <a href="/Blog/">Blog</a>
</div> </div>
</div> </div>
</nav> </nav>