rocketcal.cc (pronounced "rocket calc") is a tool I made for fun.
It costs about $5 per month, so I don't plan to ever use ads or logins or tracking or any of that crap.
If you encounter a bug (or have a suggestion), please post in this factorio.com forum thread. The forum will send me an email.
TL;DR you can POST
a blueprint string directly to /paste
.
GET /
The text/html
landing page, with a
webform which accepts a space platform blueprint
by sending a POST
to /paste
.
POST /paste
This endpoint accepts pasted blueprints strings.
The body can be one of two forms:
blueprint=:encoded-bp
where :encoded-bp
is the percent-encoded blueprint string.
It will respond with a
302
with a Location
of /:md5
, where :md5
is the
MD5 sum of the blueprint string.
GET /:md5
The text/html
page with the rocket plan for a blueprint.
GET /:md5/:md5.txt
A blueprint, returned as text/plain
.
GET /:md5/:md5.md
A Markdown version of a rocket plan,
returned as text/plain
.
GET /icons-32/:slug.png
A 32x32px icon for a given item slug (e.g. fast-inserter
),
returned as image/png
.
GET /recent
A text/html
page which lists all of the blueprints, sorted by submission date.
GET /about
This page.
GET /weights.json
An application/json
table of item slugs and weights (in kg).
GET /200
Returns the text/plain
response "OK", which verifies the site is still up.
2024/11/11 mon
Accept-Encoding: gzip
.2024/11/10 sun