Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add empty C program for scale #58

Merged
merged 7 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- run: |
sudo apt install qrencode nasm python3 -y
nasm snake.asm -o snake.com
gcc -Os -w -xc - <<< "main;"
xxd -p snake.com | python3 docs/update.py
qrencode -r snake.com -8 -o demo/qr.png
zip demo/snake.zip snake.com
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
snake.com
snake.com
a.out
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ How little is 60 bytes? Well, this line of text weighs more than 70 bytes.

And so does this arbitrary sequence of emojis: 👩🏼‍❤️‍💋‍👨🏼🧔🏽‍♀️👩🏼‍❤️‍💋‍👨🏼

An **empty** C program generated with `gcc -Os -w -xc - <<< "main;"` on linux-x86_64 is 15776 bytes.

<details>
<summary>Hex</summary>
<br/>
Expand Down
Binary file modified demo/snake.zip
Binary file not shown.
2 changes: 2 additions & 0 deletions docs/template.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ How little is {size} bytes? Well, this line of text weighs more than 70 bytes.

And so does this arbitrary sequence of emojis: 👩🏼‍❤️‍💋‍👨🏼🧔🏽‍♀️👩🏼‍❤️‍💋‍👨🏼

An **empty** C program generated with `gcc -Os -w -xc - <<< "main;"` on {platform} is {empty_size} bytes.

<details>
<summary>Hex</summary>
<br/>
Expand Down
5 changes: 3 additions & 2 deletions docs/update.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
from pathlib import Path
from re import findall
from pathlib import Path
from sysconfig import get_platform

hexdata = open(0).read().replace("\n", "")

length = len(hexdata) // 2

div = next(filter(lambda x: not length % x, range(int(length ** .5), length)))

open("README.md", "w").write(open(Path(__file__).parent.resolve() / 'template.md').read().format(size = length, hex = "\n".join(findall('..' * div, hexdata))))
open("README.md", "w").write(open(Path(__file__).parent.resolve() / 'template.md').read().format(size = length, hex = "\n".join(findall('..' * div, hexdata)), platform = get_platform(), empty_size = Path("a.out").stat().st_size))