pyramides papyrium
All checks were successful
/ build (push) Successful in 44s

This commit is contained in:
Nycki 2025-03-12 15:26:23 -07:00
parent f1454b8fdc
commit 657b6378f6
15 changed files with 37 additions and 1 deletions

View file

@ -44,6 +44,10 @@ Sticker by [djuan](https://linktr.ee/mkiiisystem)!
Stuff I've made!
### Pyramides Papyrium
2025\. homeworlds pyramids, made from die-cut paper! [link](/pyramids/)
### Braceless Javascript
2018\. a couple of short programs written in browser JavaScript, with the special restriction that I can't use any instructions that require curly braces, like 'if' or 'for'. instead, I replace these instructions with ternaries and lambdas, which makes this a functional programming exercise!

32
content/pyramids/index.md Normal file
View file

@ -0,0 +1,32 @@
---
layout: base.njk
title: Pyramides Papyrium
description: it's pronounced PEER-a-mid-es pa-PEER-ium.
permalink: /pyramids/
---
# {{ title }}
*{{ description }}*
I designed a bunch of origami pyramids and I might write about the process later but im tired so for now heres pictures of how to fold them
{% css %}
img {
max-width: 40ch;
}
{% endcss %}
![](pyramides-papyrium-01.jpg)
![](pyramides-papyrium-02.jpg)
![](pyramides-papyrium-03.jpg)
![](pyramides-papyrium-04.jpg)
![](pyramides-papyrium-05.jpg)
![](pyramides-papyrium-06.jpg)
![](pyramides-papyrium-07.jpg)
![](pyramides-papyrium-08.jpg)
![](pyramides-papyrium-09.jpg)
![](pyramides-papyrium-10.jpg)
![](pyramides-papyrium-box-01.jpg)
![](pyramides-papyrium-box-02.jpg)
ok thanks bye

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

View file

@ -4,7 +4,7 @@ import sharp from 'sharp';
const dirIn = 'tools/in';
const dirOut = 'tools/out';
const thresholdBytes = 2 * 1024 * 1024;
const thresholdBytes = 400 * 1024;
const quality = [100, 99, 97, 95, 90, 80, 75, 70, 60, 50, 40];
async function makedir(dir) {