1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-20 20:21:18 -04:00

next-mdx-remote v4 (#737)

This commit is contained in:
2022-01-18 09:25:09 -05:00
committed by GitHub
parent 2ef5d06c38
commit a406010bd2
110 changed files with 1009 additions and 1490 deletions

View File

@@ -11,18 +11,20 @@ tags:
image: "/static/images/notes/my-first-code/jbb-screen1.png"
---
import Image from "../components/media/Image";
import Figure from "../components/media/Figure";
<Image
src="/static/images/notes/my-first-code/netscape.png"
src="/public/static/images/notes/my-first-code/netscape.png"
width="865"
height="155"
alt="Awesome First Code on GitHub"
priority
/>
<Image src="/static/images/notes/my-first-code/badges.png" width="537" height="36" alt="Code Quality: A for effort" />
<Image
src="/public/static/images/notes/my-first-code/badges.png"
width="537"
height="36"
alt="Code Quality: A for effort"
/>
I recently published my terrible, horrible, no good, very bad [first HTML site](https://jakejarvis.github.io/my-first-website/) and [first PHP project](https://github.com/jakejarvis/jbb#readme) ever and developed a new addiction to Web 1.0 nostalgia, fed by others who were brave enough to do the same.
@@ -32,7 +34,7 @@ Hopefully we can all look back at our first projects and be proud of how far we'
---
<Figure src="/static/images/notes/my-first-code/jbb-logo.png" width="640" height="80">
<Figure src="/public/static/images/notes/my-first-code/jbb-logo.png" width="640" height="80">
[Jake's Bulletin Board](https://github.com/jakejarvis/jbb)
</Figure>
@@ -163,16 +165,16 @@ while ($topic = mysql_fetch_object($result30)) {
The installation "wizard" (that's the joke, I presume...) ([sql_submit.php](https://github.com/jakejarvis/jbb/blob/87b606797414b2fe563af85e269566fc5e076cc5/setup/sql_submit.php))
<Figure src="/static/images/notes/my-first-code/jbb-screen1.png" width="865" height="458">
<Figure src="/public/static/images/notes/my-first-code/jbb-screen1.png" width="865" height="458">
JBB Installation Wizard
</Figure>
And finally, JBB's actual interface... or literally as much of it as I could get to function in 2019. ([index.php](https://github.com/jakejarvis/jbb/blob/87b606797414b2fe563af85e269566fc5e076cc5/index.php))
<Figure src="/static/images/notes/my-first-code/jbb-screen3.png" width="865" height="561">
<Figure src="/public/static/images/notes/my-first-code/jbb-screen3.png" width="865" height="561">
JBB Homepage
</Figure>
<Figure src="/static/images/notes/my-first-code/jbb-screen4.png" width="865" height="493">
<Figure src="/public/static/images/notes/my-first-code/jbb-screen4.png" width="865" height="493">
JBB Post
</Figure>