Added a page for my Game Boy Camera photography and a script to help build the gallery.
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 4.1 KiB |
|
@ -0,0 +1,18 @@
|
|||
#!/bin/sh
|
||||
|
||||
cat ./html_header
|
||||
|
||||
for image_dir in $(find -type d | egrep -v "^\.\$" | sort); do
|
||||
date=$(echo "$image_dir" | xargs basename)
|
||||
|
||||
echo "<h3>$date</h3>"
|
||||
echo "<ul>"
|
||||
|
||||
for image_file in $(find $image_dir -type f | sort); do
|
||||
echo "<li><img src='$image_file'></li>"
|
||||
done
|
||||
|
||||
echo "</ul>"
|
||||
done
|
||||
|
||||
cat ./html_footer
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,26 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Game Boy Camera Pictures</title>
|
||||
<style>
|
||||
ul {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
}
|
||||
li {
|
||||
margin: 1em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Game Boy Camera</h1>
|
||||
|
||||
<p>
|
||||
There's just something wonderful about the Game Boy Camera. The image quality is terrible. The dynamic range is anything but dynamic. The screen is impossible to see in low-light conditions or in open sunlight. The picture-taking experience is awful, and it's a pain in the ass to get the pictures onto my computer. But I love them.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
I wrote more about my experience with the Game Boy Camera <a href='https://gamerdonkey.com/posts/2020/game-boy-camera-adventures/'>over here</a>.
|
||||
</p>
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Game Boy Camera Pictures</title>
|
||||
<style>
|
||||
ul {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
}
|
||||
li {
|
||||
margin: 1em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Game Boy Camera</h1>
|
||||
|
||||
<p>
|
||||
There's just something wonderful about the Game Boy Camera. The image quality is terrible. The dynamic range is anything but dynamic. The screen is impossible to see in low-light conditions or in open sunlight. The picture-taking experience is awful, and it's a pain in the ass to get the pictures onto my computer. But I love them.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
I wrote more about my experience with the Game Boy Camera <a href='https://gamerdonkey.com/posts/2020/game-boy-camera-adventures/'>over here</a>.
|
||||
</p>
|
||||
|
||||
<h3>2020.07.10</h3>
|
||||
<ul>
|
||||
<li><img src='./2020.07.10/20200710-214001.png'></li>
|
||||
<li><img src='./2020.07.10/20200710-214009.png'></li>
|
||||
<li><img src='./2020.07.10/20200710-214018.png'></li>
|
||||
</ul>
|
||||
<h3>2020.07.24</h3>
|
||||
<ul>
|
||||
<li><img src='./2020.07.24/20200724-001401-0000.png'></li>
|
||||
<li><img src='./2020.07.24/20200724-001401-0002.png'></li>
|
||||
<li><img src='./2020.07.24/20200724-001401-0006.png'></li>
|
||||
</ul>
|
||||
<h3>2020.07.27</h3>
|
||||
<ul>
|
||||
<li><img src='./2020.07.27/20200727-170019-0021.png'></li>
|
||||
<li><img src='./2020.07.27/20200727-170019-0023.png'></li>
|
||||
</ul>
|
||||
<h3>2020.08.03</h3>
|
||||
<ul>
|
||||
<li><img src='./2020.08.03/20200803-011627-0004.png'></li>
|
||||
<li><img src='./2020.08.03/20200803-011627-0005.png'></li>
|
||||
<li><img src='./2020.08.03/20200803-011627-0006.png'></li>
|
||||
<li><img src='./2020.08.03/20200803-011627-0008.png'></li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -53,6 +53,12 @@
|
|||
<li>You can learn more about me at <a href='https://gamerdonkey.com' target='_blank'>my primary website</a>.</li>
|
||||
</ul>
|
||||
|
||||
<h3> My Things </h3>
|
||||
|
||||
<ul>
|
||||
<li><a href='./gbcamera'>Game Boy Camera Photography</a></li>
|
||||
</ul>
|
||||
|
||||
<h3> Things I Enjoy </h3>
|
||||
|
||||
<ul>
|
||||
|
|