🕷️ Crawler Inspector

URL Lookup

Direct Parameter Lookup

Raw Queries and Responses

1. Shard Calculation

Query:
Response:
Calculated Shard: 103 (from laksa047)

2. Crawled Status Check

Query:
Response:

3. Robots.txt Check

Query:
Response:

4. Spam/Ban Check

Query:
Response:

5. Seen Status Check

ℹ️ Skipped - page is already crawled

📄
INDEXABLE
✅
CRAWLED
5 days ago
🤖
ROBOTS ALLOWED

Page Info Filters

FilterStatusConditionDetails
HTTP statusPASSdownload_http_code = 200HTTP 200
Age cutoffPASSdownload_stamp > now() - 6 MONTH0.2 months ago
History dropPASSisNull(history_drop_reason)No drop reason
Spam/banPASSfh_dont_index != 1 AND ml_spam_score = 0ml_spam_score=0
CanonicalPASSmeta_canonical IS NULL OR = '' OR = src_unparsedNot set

Page Details

PropertyValue
URLhttps://www.dra27.uk/blog/platform/2025/07/17/fireworks.html
Last Crawled2026-04-04 22:23:18 (5 days ago)
First Indexed2025-07-18 15:34:53 (8 months ago)
HTTP Status Code200
Meta TitleFireworks and things | Notes from the Windows corner
Meta DescriptionThanks to some targetted optimisations in the script which manages Relocatable OCaml’s various branches, I’d vastly improved the turn-around time when making changes to the patch-set and propagating them through the various tests and backports. On Tuesday night, the entire set of branches was green in CI (they’re sat here with green check marks and everything). All that was to be needed on Wednesday was to quickly update the opam packaging to take advantage of Relocatable-awesomeness and plumb it all together. The 2022 version of the packages for Ljubljana I knew contained a hack for searching a previous switch, but I’d already investigated a more principled approach using opam’s build-id variable, so it would just be a matter of plumbing that in and using the cloning mechanism already in that script.
Meta Canonicalnull
Boilerpipe Text
Thanks to some targetted optimisations in the script which manages Relocatable OCaml’s various branches , I’d vastly improved the turn-around time when making changes to the patch-set and propagating them through the various tests and backports. On Tuesday night, the entire set of branches was green in CI (they’re sat here with green check marks and everything). All that was to be needed on Wednesday was to quickly update the opam packaging to take advantage of Relocatable-awesomeness and plumb it all together. The 2022 version of the packages for Ljubljana I knew contained a hack for searching a previous switch, but I’d already investigated a more principled approach using opam’s build-id variable, so it would just be a matter of plumbing that in and using the cloning mechanism already in that script. And then I opened that scripts which I’d hacked together ready for the talk in 2022 in Ljubljana. I vaguely remember getting that all working at some ungodly hour of the morning. The final clone is an unsightly: # Cloning SOURCE = " $( cat clone-from ) " cp " $SOURCE /share/ocaml/config.cache" . mkdir -p " $1 /man/man1" cp " $SOURCE /man/man1/" ocaml * " $1 /man/man1/" mkdir -p " $1 /bin" cp " $SOURCE /bin/" ocaml * " $1 /bin/" rm -rf " $1 /lib/ocaml" cp -a " $SOURCE /lib/ocaml" " $1 /lib/" with no attempt to check the file lists 😭 Sorting out the installation targets in OCaml’s build system is on my radar, but was not on my “Relocatable OCaml blockers” TODO list. Alas, the things which you can get away for a demo in a conference talk aren’t quite the same as for actually maintained software. Ho hum - on the plus side, Wednesday and Thursday’s hacking now yields a version of OCaml which can generate opam install files properly, and which can therefore be co-opted to produce the cloning script actually required. Onwards and upwards, apparently now with memes…
Markdown
[Notes from the Windows corner](https://www.dra27.uk/) [About](https://www.dra27.uk/about/) # Fireworks and things Jul 17, 2025 Thanks to some targetted optimisations in the [script which manages Relocatable OCaml’s various branches](https://github.com/dra27/relocatable/commits/main/stack), I’d vastly improved the turn-around time when making changes to the patch-set and propagating them through the various tests and backports. On Tuesday night, the *entire* set of branches was green in CI (they’re sat [here](https://github.com/dra27/ocaml/pulls?q=is%3Apr+is%3Aopen+label%3Arelocatable+combined) with green check marks and everything). All that was to be needed on Wednesday was to quickly update the opam packaging to take advantage of Relocatable-awesomeness and plumb it all together. The 2022 version of the packages for Ljubljana I knew contained a hack for searching a previous switch, but I’d already investigated a more principled approach using opam’s `build-id` variable, so it would just be a matter of plumbing that in and using the cloning mechanism already in that script. And then I opened that scripts which I’d hacked together ready for the talk in 2022 in Ljubljana. I vaguely remember getting that all working at some ungodly hour of the morning. The final clone is an unsightly: ``` # Cloning SOURCE="$(cat clone-from)" cp "$SOURCE/share/ocaml/config.cache" . mkdir -p "$1/man/man1" cp "$SOURCE/man/man1/"ocaml* "$1/man/man1/" mkdir -p "$1/bin" cp "$SOURCE/bin/"ocaml* "$1/bin/" rm -rf "$1/lib/ocaml" cp -a "$SOURCE/lib/ocaml" "$1/lib/" ``` with no attempt to check the file lists 😭 Sorting out the installation targets in OCaml’s build system is on my radar, but was not on my “Relocatable OCaml blockers” TODO list. Alas, the things which you can get away for a demo in a conference talk aren’t quite the same as for actually maintained software. Ho hum - on the plus side, Wednesday and Thursday’s hacking now yields a version of OCaml which can generate opam install files properly, and which can therefore be co-opted to produce the cloning script actually required. Onwards and upwards, apparently now with memes… ## Notes from the Windows corner - Notes from the Windows corner - [David.Allsopp@cl.cam.ac.uk](mailto:David.Allsopp@cl.cam.ac.uk) - [dra27](https://github.com/dra27) David Allsopp’s blog featuring musings on O(x)Caml, Windows and other vaguely-related things. Views expressed are my own, rather than my employer’s.
Readable Markdown
Thanks to some targetted optimisations in the [script which manages Relocatable OCaml’s various branches](https://github.com/dra27/relocatable/commits/main/stack), I’d vastly improved the turn-around time when making changes to the patch-set and propagating them through the various tests and backports. On Tuesday night, the *entire* set of branches was green in CI (they’re sat [here](https://github.com/dra27/ocaml/pulls?q=is%3Apr+is%3Aopen+label%3Arelocatable+combined) with green check marks and everything). All that was to be needed on Wednesday was to quickly update the opam packaging to take advantage of Relocatable-awesomeness and plumb it all together. The 2022 version of the packages for Ljubljana I knew contained a hack for searching a previous switch, but I’d already investigated a more principled approach using opam’s `build-id` variable, so it would just be a matter of plumbing that in and using the cloning mechanism already in that script. And then I opened that scripts which I’d hacked together ready for the talk in 2022 in Ljubljana. I vaguely remember getting that all working at some ungodly hour of the morning. The final clone is an unsightly: ``` # Cloning SOURCE="$(cat clone-from)" cp "$SOURCE/share/ocaml/config.cache" . mkdir -p "$1/man/man1" cp "$SOURCE/man/man1/"ocaml* "$1/man/man1/" mkdir -p "$1/bin" cp "$SOURCE/bin/"ocaml* "$1/bin/" rm -rf "$1/lib/ocaml" cp -a "$SOURCE/lib/ocaml" "$1/lib/" ``` with no attempt to check the file lists 😭 Sorting out the installation targets in OCaml’s build system is on my radar, but was not on my “Relocatable OCaml blockers” TODO list. Alas, the things which you can get away for a demo in a conference talk aren’t quite the same as for actually maintained software. Ho hum - on the plus side, Wednesday and Thursday’s hacking now yields a version of OCaml which can generate opam install files properly, and which can therefore be co-opted to produce the cloning script actually required. Onwards and upwards, apparently now with memes…
Shard103 (laksa)
Root Hash5825453635728510303
Unparsed URLuk,dra27!www,/blog/platform/2025/07/17/fireworks.html s443